Я пытаюсь настроить Visual C ++ для использования библиотек openCV. Я следовал инструкциям на сайте OpenCV http://opencv.willowgarage.com/wiki/VisualC%2B%2B...
// OpenCV_Helloworld.cpp : Defines the entry point for the console application.
// Created for build/install tutorial, Microsoft Visual Studio and OpenCV 2.2.0
#include "stdafx.h"
#include <cv.h>
#include <cxcore.h>
#include <highgui.h>
int _tmain(int argc, _TCHAR* argv[])
{
// Open the file.
IplImage *img = cvLoadImage("photo.jpg");
if (!img) {
printf("Error: Couldn't open the image file.\n");
return 1;
}
// Display the image.
cvNamedWindow("Image:", CV_WINDOW_AUTOSIZE);
cvShowImage("Image:", img);
// Wait for the user to press a key in the GUI window.
cvWaitKey(0);
// Free the resources.
cvDestroyWindow("Image:");
cvReleaseImage(&img);
return 0;
}
Я изменил каталоги include и library в каталогах VC ++ на страницах свойств и добавил дополнительные зависимости. Однако, когда я пытаюсь загрузить изображение с теми же заголовочными файлами, что и в примере кода, он говорит, что cvLoadImage не определен, как и cvNamedWindow
IplImage *img = cvLoadImage("JellyFish.jpg");
Есть предложения, где у меня может быть проблема?