你能帮我吗???在下面执行编码时出错。我是使用OpenCV的新手。我的老师是谷歌先生,你们是这个领域的专家。
IntelliSense:标识符“cvPyrSegmentation”未定义
错误错误C3861:'cvPyrSegmentation':找不到标识符
#include "opencv2/imgproc/imgproc.hpp"
#include "opencv2/highgui/highgui.hpp"
#include <stdlib.h>
#include <stdio.h>
static void help(void)
{
printf("\nThis program present the function of pyramid segmentation which is
cvcvPyrSegmentation()\n""we can controlled the value of threshold by creating
the taskbar\n""Usage :\n");
}
IplImage* image[2] = { 0, 0 }, *image0 = 0, *image1 = 0;
CvSize size;
int w0, h0,i;
int threshold1, threshold2;
int l,level = 4;
int sthreshold1, sthreshold2;
int l_comp;
int block_size = 1000;
float parameter;
double threshold;
double rezult, min_rezult;
int filter = CV_GAUSSIAN_5x5;
CvConnectedComp *cur_comp, min_comp;
CvSeq *comp;
CvMemStorage *storage;
CvPoint pt1, pt2;
static void START_SEGMENT(int a)
{
(void) a;
cvPyrSegmentation (image0, image1, storage, &comp, level, threshold1+1,
threshold2+1);
cvShowImage("Segmentation", image1);
}
int main( int argc, char** argv )
{
char* filename;
help();
filename = argc == 2 ? argv[1] : (char*)"C:/Users/acer/Documents/Visual Studio
2012/Projects/me2.jpg";
if( (image[0] = cvLoadImage( filename, 1)) == 0 )
{
help();
printf("Cannot load fileimage - %s\n", filename);
return -1;
}
cvNamedWindow("Source", 0);
cvShowImage("Source", image[0]);
cvNamedWindow("Segmentation", 0);
storage = cvCreateMemStorage ( block_size );
image[0]->width &= -(1<<level);
image[0]->height &= -(1<<level);
image0 = cvCloneImage( image[0] );
image1 = cvCloneImage( image[0] );
// segmentation of the color image
l = 1;
threshold1 =255;
threshold2 =30;
START_SEGMENT(1);
sthreshold1 = cvCreateTrackbar("Threshold1", "Segmentation", &threshold1, 255,
START_SEGMENT);
sthreshold2 = cvCreateTrackbar("Threshold2", "Segmentation", &threshold2, 255,
START_SEGMENT);
cvShowImage("Segmentation", image1);
cvWaitKey(0);
cvDestroyWindow("Segmentation");
cvDestroyWindow("Source");
cvReleaseMemStorage(&storage );
cvReleaseImage(&image[0]);
cvReleaseImage(&image0);
cvReleaseImage(&image1);
return 0;
}
#ifdef _EiC
main(1,"pyramid_segmentation.c");
#endif
答案 0 :(得分:1)
根据事物的不同,你没有包括正确的标题。
#include <opencv2/imgproc/imgproc_c.hpp>
答案 1 :(得分:0)
您的编译器无法理解命令cvPyrSegmentation
的含义。您的解决方案是:
该特定功能实际上并不存在,而您正在阅读错误的文档(我在官方API中找不到该功能)。
您可能缺少一个头文件。回到您所关注的任何示例,并在演示时完全重做它。如果您没有关注一个例子,请找一个;这几乎总是解决问题的最佳方式。
您可能缺少必须传递给编译器的许多标志。如果您熟悉使用库,您就会明白我的意思。如果您不熟悉在C中使用库,请首先查看如何使用库。我建议GMP。
如果找不到例子,请留言,我会在找到一个时编辑一个。
答案 2 :(得分:0)
将#include<cvaux.h>
添加到函数cvPyrSegmentation所在的位置。
PS:要包含所有文件以保证...
#include<cv.h>
#include <cvaux.h>
#include <opencv\cxcore.hpp>
#include <opencv.hpp>
#include <nonfree.hpp>
#include <core/core.hpp>
#include <imgproc/imgproc.hpp>
#include <imgproc/imgproc_c.h>
#include <highgui.h>
答案 3 :(得分:0)
你需要: 1)首先包括legacy.hpp(通常在opencv2 / legacy / legacy.hpp上)
2)确保legacy.hpp位于链接器输入的“附加依赖项”中(假设您使用的是Visual C ++)