Searched refs:templFeatures_ (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudaimgproc/src/ |
D | generalized_hough.cpp | 677 Feature templFeatures_; member in __anon161a480f0311::GeneralizedHoughGuilImpl 734 buildFeatureList(templEdges_, templDx_, templDy_, templFeatures_, in processTempl() 738 h_buf_.resize(templFeatures_.sizes.cols); in processTempl() 739 …cudaSafeCall( cudaMemcpy(&h_buf_[0], templFeatures_.sizes.data, h_buf_.size() * sizeof(int), cudaM… in processTempl() 740 templFeatures_.maxSize = *std::max_element(h_buf_.begin(), h_buf_.end()); in processTempl() 748 CV_Assert( templFeatures_.sizes.cols == levels_ + 1 ); in processImage() 847 …Guil_Full_calcOHist_gpu(templFeatures_.sizes.ptr<int>(), imageFeatures_.sizes.ptr<int>(0), hist_.p… in calcOrientation() 848 …float)minAngle_, (float)maxAngle_, (float)angleStep_, angleRange, levels_, templFeatures_.maxSize); in calcOrientation() 871 …Guil_Full_calcSHist_gpu(templFeatures_.sizes.ptr<int>(), imageFeatures_.sizes.ptr<int>(0), hist_.p… in calcScale() 873 (float)iScaleStep, scaleRange, levels_, templFeatures_.maxSize); in calcScale() [all …]
|
/external/opencv3/modules/imgproc/src/ |
D | generalized_hough.cpp | 609 std::vector< std::vector<Feature> > templFeatures_; member in __anon1ec0d8f20311::GeneralizedHoughGuilImpl 655 buildFeatureList(templEdges_, templDx_, templDy_, templFeatures_, templCenter_); in processTempl() 764 CV_Assert( templFeatures_.size() == static_cast<size_t>(levels_ + 1) ); in calcOrientation() 765 CV_Assert( imageFeatures_.size() == templFeatures_.size() ); in calcOrientation() 776 const std::vector<Feature>& templRow = templFeatures_[i]; in calcOrientation() 812 CV_Assert( templFeatures_.size() == static_cast<size_t>(levels_ + 1) ); in calcScale() 813 CV_Assert( imageFeatures_.size() == templFeatures_.size() ); in calcScale() 825 const std::vector<Feature>& templRow = templFeatures_[i]; in calcScale() 866 CV_Assert( templFeatures_.size() == static_cast<size_t>(levels_ + 1) ); in calcPosition() 867 CV_Assert( imageFeatures_.size() == templFeatures_.size() ); in calcPosition() [all …]
|