Displaying 1 result from an estimated 1 matches for "threshicc".
Did you mean:
threshi
2001 Feb 01
1
minor psy.c modifications
...&& (b[lo]<=bil);lo++){
int bin=BIN(f[lo]);
if(bin>LASTBIN)
bin=LASTBIN;
if(bin<0)
bin=0;
if(bin<median)
countabove--;
else
countbelow--;
radix[bin]--;
}
}
// move the median if needed
if(countabove+countbelow){
const float threshicc=(float)(countabove+countbelow)*thresh[i];
long *radixp=&radix[median],cora;
while((median>0) && (threshicc>(float)countbelow)){
median--;
radixp--;
countabove - =*radixp;
countbelow + =*radixp;
}
while((median<LASTBIN)
&& (threshicc<...