English 中文(简体)
OpenCV:Ubuntu:Netbeans:cvSubdiv2DEdgeOrg “未申报”
原标题:OpenCV:Ubuntu:NetBeans:cvSubdiv2DEdgeOrg "undeclared"

我使用OpenCV 2. 4和NetBeans 7.0.1在Ubuntu 11. 10上。

当我试图编译包含以下内容的代码时

CvSubdiv2DPoint* pt = cvSubdiv2DEdgeOrg( t );

我得到以下编译错误

error: there are no arguments to ‘cvSubdiv2DEdgeOrg’ that depend on a template parameter, so a declaration of ‘cvSubdiv2DEdgeOrg’ must be available [-fpermissive]
note: (if you use ‘-fpermissive’, G++ will accept your code, but allowing the use of an undeclared name is deprecated)

当我右键点击 CvSubdiv2DPoint 并选择 Navigate: 获得声明/定义时, 它的定义是类型_ c.h. 。 我不知道如果它被指称为“ 未申报”, 我如何得到定义。 另外, 如果我包括的话, 我也不理解它是如何得到定义的。

#include "types_c.h"

并且确保类型_c.h 在包含路径中, 我仍然收到上面的错误信息 。

Any assistance in resolving this problem would be greatly appreciated,
Peter.

最佳回答

它被移到遗产。 您需要包含它的页眉 :

#include "opencv2/legacy/legacy.hpp"
问题回答

暂无回答




相关问题
Python/OpenCV: Converting images taken from capture

I m trying to convert images taken from a capture (webcam) and do some processing on them with OpenCV, but I m having a difficult time.. When trying to convert the image to grayscale, the program ...

How to smooth a histogram?

I want to smooth a histogram. Therefore I tried to smooth the internal matrix of cvHistogram. typedef struct CvHistogram { int type; CvArr* bins; float thresh[CV_MAX_DIM][2]; /* ...

Testing complex datatypes?

What s are some ways of testing complex data types such as video, images, music, etc. I m using TDD and wonder are there alternatives to "gold file" testing for rendering algorithms. I understand that ...

Displaying OpenCV iplimage data structures with wxPython

Here is my current code (language is Python): newFrameImage = cv.QueryFrame(webcam) newFrameImageFile = cv.SaveImage("temp.jpg",newFrameImage) wxImage = wx.Image("temp.jpg", wx.BITMAP_TYPE_ANY)....

What is the memory structure of OpenCV s cvMat?

Imagine I have the following: CvMat* mat = cvCreateMat(3,3,CV_16SC3) This is a 3x3 matrix of integers of channel 3. Now if you look at OpenCV documentation you will find the following as the ...

Face detection and comparison

I m running a small research on face detection and comparison for my article. Currently, I m using rapid face detection based on haar like features based on OpenCV cascade (I ll implement learning ...

热门标签