gpt4 book ai didi

opencv - 使用 OpenCV 2.2 筛选实现

转载 作者:太空宇宙 更新时间:2023-11-03 20:36:48 24 4
gpt4 key购买 nike

有人知道 SIFT 实现示例与 OpenCV 2.2 的链接吗?问候,

最佳答案

下面是一个最小的例子:

#include <opencv/cv.h>
#include <opencv/highgui.h>

int main(int argc, const char* argv[])
{
const cv::Mat input = cv::imread("input.jpg", 0); //Load as grayscale

cv::SiftFeatureDetector detector;
std::vector<cv::KeyPoint> keypoints;
detector.detect(input, keypoints);

// Add results to image and save.
cv::Mat output;
cv::drawKeypoints(input, keypoints, output);
cv::imwrite("sift_result.jpg", output);

return 0;
}

在 OpenCV 2.3 上测试

关于opencv - 使用 OpenCV 2.2 筛选实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5461148/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com