Continue to refeactor the dynamic stuff - may have broken build on last commit.

Fairly certain that it builds now.
This commit is contained in:
Ethan Rublee
2010-11-23 22:45:49 +00:00
parent f6b0818996
commit 6a689d82a3
2 changed files with 30 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ void pixelTests64(const Mat& sum, const std::vector<KeyPoint>& keypoints, Mat& d
namespace cv
{
ResultType HammingLUT::operator()( const unsigned char* a, const unsigned char* b, int size ) const
HammingLUT::ResultType HammingLUT::operator()( const unsigned char* a, const unsigned char* b, int size ) const
{
ResultType result = 0;
for (int i = 0; i < size; i++)
@@ -101,7 +101,7 @@ ResultType HammingLUT::operator()( const unsigned char* a, const unsigned char*
}
return result;
}
ResultType Hamming::operator()(const unsigned char* a, const unsigned char* b, int size) const
Hamming::ResultType Hamming::operator()(const unsigned char* a, const unsigned char* b, int size) const
{
#if __GNUC__
ResultType result = 0;