mirror of
https://github.com/opencv/opencv.git
synced 2025-06-11 11:45:30 +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 )
|
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 y = 0; y < rows; y++ )
|
||||||
for( int x = 0; x < cols; x++ )
|
for( int x = 0; x < cols; x++ )
|
||||||
mtr.at<float>(y,x) = rng(2)==0 ? par : -par;
|
mtr.at<float>(y,x) = rng(2)==0 ? par : -par;
|
||||||
|
Loading…
Reference in New Issue
Block a user