簡體   English   中英

如何在opencv 2.4.9中修改ORB源代碼?

[英]how to modify ORB source in opencv 2.4.9?

我已經建立了openCV版本2.4.9。 我想修改用於檢測和計算功能的ORB庫。

orb.detect(img_object, keypoints_object)
orb.compute(img_object, keypoints_object, descriptors_object)

我試圖在\\opencv\\sources\\modules\\features2d\\src orb.cpp中搜索它,但沒有找到這些功能。 有人知道如何找到這些功能嗎?

基本界面應該在

opencv/sources/modules/features2d/src/detectors.cppvoid FeatureDetector::detect( const Mat& image, vector<KeyPoint>& keypoints, const Mat& mask )

opencv\\sources\\modules\\features2d\\src\\descriptors.cppvoid DescriptorExtractor::compute( const Mat& image, vector<KeyPoint>& keypoints, Mat& descriptors )

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM