Commit a0bb74a0 authored by Roman Donchenko's avatar Roman Donchenko Committed by OpenCV Buildbot

Merge pull request #2337 from pmoulon:master

parents cfcf07ac 8829e9f6
...@@ -829,7 +829,7 @@ CV_EXPORTS Mat windowedMatchingMask( const std::vector<KeyPoint>& keypoints1, co ...@@ -829,7 +829,7 @@ CV_EXPORTS Mat windowedMatchingMask( const std::vector<KeyPoint>& keypoints1, co
/* /*
* OpponentColorDescriptorExtractor * OpponentColorDescriptorExtractor
* *
* Adapts a descriptor extractor to compute descripors in Opponent Color Space * Adapts a descriptor extractor to compute descriptors in Opponent Color Space
* (refer to van de Sande et al., CGIV 2008 "Color Descriptors for Object Category Recognition"). * (refer to van de Sande et al., CGIV 2008 "Color Descriptors for Object Category Recognition").
* Input RGB image is transformed in Opponent Color Space. Then unadapted descriptor extractor * Input RGB image is transformed in Opponent Color Space. Then unadapted descriptor extractor
* (set in constructor) computes descriptors on each of the three channel and concatenate * (set in constructor) computes descriptors on each of the three channel and concatenate
......
...@@ -87,7 +87,7 @@ int main( int argc, char** argv ) { ...@@ -87,7 +87,7 @@ int main( int argc, char** argv ) {
// DESCRIPTOR // DESCRIPTOR
// Our proposed FREAK descriptor // Our proposed FREAK descriptor
// (roation invariance, scale invariance, pattern radius corresponding to SMALLEST_KP_SIZE, // (rotation invariance, scale invariance, pattern radius corresponding to SMALLEST_KP_SIZE,
// number of octaves, optional vector containing the selected pairs) // number of octaves, optional vector containing the selected pairs)
// FREAK extractor(true, true, 22, 4, std::vector<int>()); // FREAK extractor(true, true, 22, 4, std::vector<int>());
FREAK extractor; FREAK extractor;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment