gpt4 book ai didi

qt - Opencv2 cvtColor() 不起作用

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

我在 Ubuntu 12.04 上使用 OpenCV2。我可以成功运行图像读取显示代码。但是我无法运行带有内置函数的代码,例如。 cvt颜色()

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>

#include <stdio.h>

int main(int argc, char *argv[])
{
cv::Mat image = cv::imread("img.jpg");

if( image.data == NULL )
{
printf( "file cannot be loaded\n");
return 1;
}

cv::namedWindow("My");
cv::imshow("My", image);

cv::Mat result;
cv::cvtColor(image, result, CV_BGR2Luv);

cv::imwrite("outImg.jpg", result);

cv::waitKey(0);

return 0;
}

我正在为我的 OpenCV 使用 Qt-creator使用 --libs, --cflags 编译后出现以下编译器错误:

make: Entering directory `/home/swaroop/Work/ai-junkies/cuda/uc_davis/opencv2.x/OpenCV2Test'
g++ -g -c -pipe -O2 -Wall -W -D_REENTRANT -DQT_WEBKIT -DQT_NO_DEBUG -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4 -I/usr/include/opencv -I. -o main.o main.cpp
main.cpp: In function 'int main(int, char**)':
main.cpp:22:29: error: 'CV_BGR2Luv' was not declared in this scope
main.cpp:22:39: error: 'cvtColor' was not declared in this scope

请帮我解决这个问题。

最佳答案

cvtColoropencv2/imgproc/imgproc.hpp

中声明

记住它是#include而不是#import

#include <opencv2/imgproc/imgproc.hpp>

关于qt - Opencv2 cvtColor() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16032845/

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