登录
首页 >  Golang >  Go问答

go 运行 ./cmd/version/main.go 时 golang gocv 错误

来源:stackoverflow

时间:2024-04-25 17:36:38 491浏览 收藏

IT行业相对于一般传统行业,发展更新速度更快,一旦停止了学习,很快就会被行业所淘汰。所以我们需要踏踏实实的不断学习,精进自己的技术,尤其是初学者。今天golang学习网给大家整理了《go 运行 ./cmd/version/main.go 时 golang gocv 错误》,聊聊,我们一起来看看吧!

问题内容

我是 golang 新手,安装 gocv 时遇到一些问题。 我不知道天气,但无能为力 我使用 manjaro linux 版本 5.19.3,当前 go- 版本是 1.14.2,最后但并非最不重要的 gccgo 版本 10.1.0 (amd64)。

我按照 https://gocv.io/getting-started/linux/ 上的描述安装了 gocv

go get -u -d gocv.io/x/gocv
cd $gopath/pkg/mod/gocv.io/
make install

如果工作正常,应显示以下消息:

gocv version: 0.24.0
opencv lib version: 4.4.0
# gocv.io/x/gocv
In file included from features2d.cpp:1:
features2d.h:22:21: error: 'SIFT' is not a member of 'cv'
   22 | typedef cv::Ptr<cv::SIFT>* SIFT;
      |                     ^~~~
features2d.h:22:21: error: 'SIFT' is not a member of 'cv'
features2d.h:22:25: error: template argument 1 is invalid
   22 | typedef cv::Ptr<cv::SIFT>* SIFT;
      |                         ^
features2d.cpp: In function 'int* SIFT_Create()':
features2d.cpp:434:28: error: 'SIFT' is not a member of 'cv'; did you mean 'SIFT'?
  434 |     return new cv::Ptr<cv::SIFT>(cv::SIFT::create());
      |                            ^~~~
In file included from features2d.cpp:1:
features2d.h:22:28: note: 'SIFT' declared here
   22 | typedef cv::Ptr<cv::SIFT>* SIFT;
      |                            ^~~~
features2d.cpp:434:28: error: 'SIFT' is not a member of 'cv'; did you mean 'SIFT'?
  434 |     return new cv::Ptr<cv::SIFT>(cv::SIFT::create());
      |                            ^~~~
In file included from features2d.cpp:1:
features2d.h:22:28: note: 'SIFT' declared here
   22 | typedef cv::Ptr<cv::SIFT>* SIFT;
      |                            ^~~~
features2d.cpp:434:32: error: template argument 1 is invalid
  434 |     return new cv::Ptr<cv::SIFT>(cv::SIFT::create());
      |                                ^
features2d.cpp:434:38: error: 'cv::SIFT' has not been declared
  434 |     return new cv::Ptr<cv::SIFT>(cv::SIFT::create());
      |                                      ^~~~
features2d.cpp: In function 'KeyPoints SIFT_Detect(SIFT, Mat)':
features2d.cpp:443:9: error: base operand of '->' is not a pointer
  443 |     (*d)->detect(*src, detected);
      |         ^~
features2d.cpp: In function 'KeyPoints SIFT_DetectAndCompute(SIFT, Mat, Mat, Mat)':
features2d.cpp:460:9: error: base operand of '->' is not a pointer
  460 |     (*d)->detectAndCompute(*src, *mask, detected, *desc);
      |         ^~
Fehler: Prozess beendet mit Rückgabewert 2.

我试图在互联网上找到解决方案,但我什至不明白这个问题。 我希望有一个人可以帮助我。 此致 菲利克斯


解决方案


sift(尺度不变特征变换)算法是一种专利算法,如果需要使用它,则需要用户导入非自由头文件,如下所示:

#include <opencv2/nonfree/nonfree.hpp>

但是,该专利目前已经过期。 (opencv 4.4.0)因此这个包被移动到opencv的主存储库(检查版本亮点https://opencv.org/opencv-4-4-0/

因此,使用 sift 的 gocv 存储库已更新为从 opencv 主存储库获取该算法,如下所示(在 gocv v0.24.0 更改日志中:https://github.com/hybridgroup/gocv/commit/04b71cbb6d82e8c396ccbbf0d65b446a80a0e8fa

typedef cv::Ptr<cv::SIFT>* SIFT;

这是更新的代码行,导致您无法构建。(如果您不使用opencv 4.4.0,您只会收到此错误,您可以检查您正在使用的makefile)

要解决这个问题,您现在可以再次尝试获取/更新 gocv 存储库,因为他们已经更新了所有 makefile 以使用 opencv 4.4.0。或者您可以手动更新 makefile 将 opencv 版本更改为 4.4.0

理论要掌握,实操不能落!以上关于《go 运行 ./cmd/version/main.go 时 golang gocv 错误》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>