Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
19
Task/Bitmap-Histogram/C/bitmap-histogram-3.c
Normal file
19
Task/Bitmap-Histogram/C/bitmap-histogram-3.c
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
luminance histogram_median(histogram h)
|
||||
{
|
||||
luminance From, To;
|
||||
unsigned int Left, Right;
|
||||
|
||||
From = 0; To = (1 << (8*sizeof(luminance)))-1;
|
||||
Left = h[From]; Right = h[To];
|
||||
|
||||
while( From != To )
|
||||
{
|
||||
if ( Left < Right )
|
||||
{
|
||||
From++; Left += h[From];
|
||||
} else {
|
||||
To--; Right += h[To];
|
||||
}
|
||||
}
|
||||
return From;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue