Searched refs:_descriptors (Results 1 - 14 of 14) sorted by relevance

/external/opencv3/modules/features2d/src/
H A Dbagofwords.cpp53 void BOWTrainer::add( const Mat& _descriptors )
55 CV_Assert( !_descriptors.empty() );
58 CV_Assert( descriptors[0].cols == _descriptors.cols );
59 CV_Assert( descriptors[0].type() == _descriptors.type() );
60 size += _descriptors.rows;
64 size = _descriptors.rows;
67 descriptors.push_back(_descriptors);
111 Mat BOWKMeansTrainer::cluster( const Mat& _descriptors ) const
114 kmeans( _descriptors, clusterCount, labels, termcrit, attempts, flags, vocabulary );
152 Mat _descriptors;
[all...]
H A Dfeature2d.cpp115 OutputArrayOfArrays _descriptors )
117 if( !_descriptors.needed() )
126 CV_Assert( _descriptors.kind() == _InputArray::STD_VECTOR_MAT );
128 vector<Mat>& descriptors = *(vector<Mat>*)_descriptors.getObj();
H A Dmatchers.cpp516 void DescriptorMatcher::add( InputArrayOfArrays _descriptors )
518 if(_descriptors.isUMatVector())
521 _descriptors.getUMatVector(descriptors);
524 else if(_descriptors.isUMat())
526 std::vector<UMat> descriptors = std::vector<UMat>(1, _descriptors.getUMat());
529 else if(_descriptors.isMatVector())
532 _descriptors.getMatVector(descriptors);
535 else if(_descriptors.isMat())
537 std::vector<Mat> descriptors = std::vector<Mat>(1, _descriptors.getMat());
541 CV_Assert( _descriptors
[all...]
H A Dorb.cpp947 OutputArray _descriptors, bool useProvidedKeypoints )
952 bool do_descriptors = _descriptors.needed();
1114 _descriptors.release();
1118 _descriptors.create(nkeypoints, dsize, CV_8U);
1158 UMat udescriptors = _descriptors.getUMat();
1170 Mat descriptors = _descriptors.getMat();
H A Dbrisk.cpp618 OutputArray _descriptors, bool useProvidedKeypoints)
623 bool doDescriptors = _descriptors.needed();
625 computeDescriptorsAndOrOrientation(_image, _mask, keypoints, _descriptors, doDescriptors, doOrientation,
631 OutputArray _descriptors, bool doDescriptors, bool doOrientation,
689 _descriptors.create((int)ksize, strings_, CV_8U);
690 descriptors = _descriptors.getMat();
/external/opencv3/modules/ts/src/
H A Dcuda_perf.cpp289 void sortKeyPoints(std::vector<cv::KeyPoint>& keypoints, cv::InputOutputArray _descriptors) argument
303 if (_descriptors.needed())
305 descriptors = _descriptors.getMat();
318 if (_descriptors.needed())
319 new_descriptors.copyTo(_descriptors);
/external/opencv3/modules/cudafeatures2d/src/
H A Dorb.cpp352 virtual void detectAndCompute(InputArray _image, InputArray _mask, std::vector<KeyPoint>& keypoints, OutputArray _descriptors, bool useProvidedKeypoints);
353 virtual void detectAndComputeAsync(InputArray _image, InputArray _mask, OutputArray _keypoints, OutputArray _descriptors, bool useProvidedKeypoints, Stream& stream);
406 void computeDescriptors(OutputArray _descriptors);
573 void ORB_Impl::detectAndCompute(InputArray _image, InputArray _mask, std::vector<KeyPoint>& keypoints, OutputArray _descriptors, bool useProvidedKeypoints)
577 detectAndComputeAsync(_image, _mask, d_keypoints_, _descriptors, false, Stream::Null());
581 void ORB_Impl::detectAndComputeAsync(InputArray _image, InputArray _mask, OutputArray _keypoints, OutputArray _descriptors, bool useProvidedKeypoints, Stream& stream)
587 if (_descriptors.needed())
589 computeDescriptors(_descriptors);
722 void ORB_Impl::computeDescriptors(OutputArray _descriptors)
733 _descriptors
[all...]
/external/protobuf/python/google/protobuf/
H A Ddescriptor_pool.py100 self._descriptors = {}
126 self._descriptors[desc.full_name] = desc
203 return self._descriptors[symbol].file
235 if full_name not in self._descriptors:
237 return self._descriptors[full_name]
398 self._descriptors[desc_name] = desc
/external/nanopb-c/generator/google/protobuf/
H A Ddescriptor_pool.py79 self._descriptors = {}
151 if full_name not in self._descriptors:
153 return self._descriptors[full_name]
293 self._descriptors[desc_name] = desc
/external/opencv3/modules/ts/include/opencv2/ts/
H A Dcuda_perf.hpp109 CV_EXPORTS void sortKeyPoints(std::vector<cv::KeyPoint>& keypoints, cv::InputOutputArray _descriptors = cv::noArray());
/external/opencv/cv/src/
H A Dcvsurf.cpp254 CvSeq** _keypoints, CvSeq** _descriptors,
261 if( _descriptors )
262 *_descriptors = 0;
304 if( _descriptors )
411 if( !_descriptors )
554 if( _descriptors )
555 *_descriptors = descriptors;
253 cvExtractSURF( const CvArr* _img, const CvArr* _mask, CvSeq** _keypoints, CvSeq** _descriptors, CvMemStorage* storage, CvSURFParams params ) argument
/external/opencv3/modules/stitching/src/
H A Dmatchers.cpp416 Mat _descriptors; local
448 _descriptors.push_back(descriptors.getMat(ACCESS_READ));
452 //features.descriptors = _descriptors.getUMat(ACCESS_READ);
453 _descriptors.copyTo(features.descriptors);
/external/opencv3/modules/cudaobjdetect/src/
H A Dhog.cpp439 OutputArray _descriptors,
457 _descriptors.create(wins_per_img.area(), static_cast<int>(blocks_per_win.area() * block_hist_size), CV_32FC1);
458 GpuMat descriptors = _descriptors.getGpuMat();
/external/opencv3/modules/objdetect/src/
H A Dhog.cpp1326 static bool ocl_compute(InputArray _img, Size win_stride, std::vector<float>& _descriptors, int descr_format, Size blockSize, argument
1390 descriptors.reshape(1, (int)descriptors.total()).getMat(ACCESS_READ).copyTo(_descriptors);

Completed in 213 milliseconds