mirror of
https://github.com/opencv/opencv.git
synced 2024-11-27 20:50:25 +08:00
fixed compiler error for win32
This commit is contained in:
parent
fff2160d1f
commit
54081f262e
@ -308,7 +308,7 @@ Mat createCompressionMatrix( int rows, int cols, int distrType )
|
||||
}
|
||||
else if( distrType == CalonderClassifier::COMPRESS_DISTR_BERNOULLI )
|
||||
{
|
||||
float par = (float)(1./sqrt(rows));
|
||||
float par = (float)(1./sqrt((float)rows));
|
||||
for( int y = 0; y < rows; y++ )
|
||||
for( int x = 0; x < cols; x++ )
|
||||
mtr.at<float>(y,x) = rng(2)==0 ? par : -par;
|
||||
|
Loading…
Reference in New Issue
Block a user