错误c2039&#39; ctor&#39;不是&#39; cv :: flann :: Index_ <t>&#39; </t>的成员

时间:2014-04-17 23:32:14

标签: c++ opencv

我使用Visual Studio 2013和OpenCV 2.3.1。我试着执行这段代码:

#include<opencv2\imgproc\imgproc.hpp>
#include<opencv2\highgui\highgui.hpp>
#include<opencv\cv.h>
#include<opencv\highgui.h>
#include<iostream>
#define _CRT_SECURE_NO_DEPRECATE
int main()
{
    cv::Mat im_rgb = cv::imread("1.jpg", 1);
    cv::Mat im_gray;
    cv::cvtColor(im_rgb, im_gray, CV_RGB2GRAY);
    cv::namedWindow("image RGB", CV_WINDOW_NORMAL);
    cv::namedWindow("image GRAY", CV_WINDOW_NORMAL);
    cv::imshow("image RGB", im_rgb);
    cv::imshow("image gray", im_gray);
    cvWaitKey();
    return 0;
}

我有这个错误:

error c2039 ' ctor ' is not a member of  'cv::flann::Index_<T>'

0 个答案:

没有答案