Home
last modified time | relevance | path

Searched refs:globalDescIdx (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/features2d/src/
Dmatchers.cpp478 const Mat DescriptorMatcher::DescriptorCollection::getDescriptor( int globalDescIdx ) const in getDescriptor()
480 CV_Assert( globalDescIdx < size() ); in getDescriptor()
481 return mergedDescriptors.row( globalDescIdx ); in getDescriptor()
484 void DescriptorMatcher::DescriptorCollection::getLocalIdx( int globalDescIdx, int& imgIdx, int& loc… in getLocalIdx() argument
486 CV_Assert( (globalDescIdx>=0) && (globalDescIdx < size()) ); in getLocalIdx()
487 …<int>::const_iterator img_it = std::upper_bound(startIdxs.begin(), startIdxs.end(), globalDescIdx); in getLocalIdx()
490 localDescIdx = globalDescIdx - (*img_it); in getLocalIdx()
/external/opencv3/modules/features2d/include/opencv2/
Dfeatures2d.hpp929 const Mat getDescriptor( int globalDescIdx ) const;
930 void getLocalIdx( int globalDescIdx, int& imgIdx, int& localDescIdx ) const;