mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-19 11:21:39 +08:00
The function pow(2,i) has been replaced by pow(2.0,i)
modified: modules/line_descriptor/perf/perf_matching.cpp modified: modules/line_descriptor/test/test_matcher_regression.cpp
This commit is contained in:
@@ -101,7 +101,7 @@ uchar invertSingleBits( uchar dividend_char, int numBits )
|
||||
/* reconvert to decimal */
|
||||
uchar result = 0;
|
||||
for ( int i = (int) bin_vector.size() - 1; i >= 0; i-- )
|
||||
result += (uchar) ( bin_vector[i] * pow( 2, i ) );
|
||||
result += (uchar) ( bin_vector[i] * pow( 2.0, i ) );
|
||||
|
||||
return result;
|
||||
}
|
||||
|
@@ -123,7 +123,7 @@ uchar CV_BinaryDescriptorMatcherTest::invertSingleBits( uchar dividend_char, int
|
||||
/* reconvert to decimal */
|
||||
uchar result = 0;
|
||||
for ( int i = (int) bin_vector.size() - 1; i >= 0; i-- )
|
||||
result += (uchar) ( bin_vector[i] * pow( 2, i ) );
|
||||
result += (uchar) ( bin_vector[i] * pow( 2.0, i ) );
|
||||
|
||||
return result;
|
||||
}
|
||||
|
Reference in New Issue
Block a user