Searched refs:allKeypoints (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/features2d/src/ |
D | orb.cpp | 774 std::vector<KeyPoint>& allKeypoints, in computeKeyPoints() argument 816 allKeypoints.clear(); in computeKeyPoints() 849 std::copy(keypoints.begin(), keypoints.end(), std::back_inserter(allKeypoints)); in computeKeyPoints() 854 nkeypoints = (int)allKeypoints.size(); in computeKeyPoints() 867 uploadORBKeypoints(allKeypoints, ukeypoints_buf, ukeypoints); in computeKeyPoints() 875 allKeypoints[i].response = responses.at<float>(i); in computeKeyPoints() 880 HarrisResponses(imagePyramid, layerInfo, allKeypoints, 7, HARRIS_K); in computeKeyPoints() 891 std::copy(allKeypoints.begin() + offset, in computeKeyPoints() 892 allKeypoints.begin() + offset + nkeypoints, in computeKeyPoints() 901 std::swap(allKeypoints, newAllKeypoints); in computeKeyPoints() [all …]
|