Merge pull request #647 from XPila/MK3-V3_2

XYZ cal fix (better histogram processing)
This commit is contained in:
PavelSindler 2018-04-23 14:54:23 +02:00 committed by GitHub
commit 2467b19dd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -384,8 +384,12 @@ void xyzcal_adjust_pixels(uint8_t* pixels, uint16_t* histo)
for (l = 14; l > 8; l--)
if (histo[l] >= 10)
break;
uint8_t pix_min = (max_l << 4) / 2;
uint8_t pix_min = 0;
uint8_t pix_max = l << 4;
if (histo[0] < (32*32 - 144))
{
pix_min = (max_l << 4) / 2;
}
uint8_t pix_dif = pix_max - pix_min;
DBG(_n(" min=%d max=%d dif=%d\n"), pix_min, pix_max, pix_dif);
for (int16_t i = 0; i < 32*32; i++)