Home
last modified time | relevance | path

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

/external/opencv3/modules/cudaimgproc/src/
Dgeneralized_hough.cpp684 std::vector<int> h_buf_; member in __anon161a480f0311::GeneralizedHoughGuilImpl
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()
769 h_buf_.resize(std::max(angleRange + 1, scaleRange + 1)); in processImage()
849 …cudaSafeCall( cudaMemcpy(&h_buf_[0], hist_.data, h_buf_.size() * sizeof(int), cudaMemcpyDeviceToHo… in calcOrientation()
855 if (h_buf_[n] >= angleThresh_) in calcOrientation()
858 angles_.push_back(std::make_pair(angle, h_buf_[n])); in calcOrientation()
874 …cudaSafeCall( cudaMemcpy(&h_buf_[0], hist_.data, h_buf_.size() * sizeof(int), cudaMemcpyDeviceToHo… in calcScale()
880 if (h_buf_[s] >= scaleThresh_) in calcScale()
[all …]