Ask Your Question

x555x's profile - activity

2013-04-26 06:28:44 -0600 asked a question Error while installing opencv in visual studio 2012

Hi everyone, Im new to opencv and am trying to install it in visual studio 2012. Im getting the following error while building the code :

error C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS.

The code I used is :

#include "stdafx.h"
#include cv.h
#include highgui.h
#define _CRT_SECURE_NO_WARNINGS
int main()
{
          IplImage* img = cvLoadImage("C:/Users/Shyama Panolth/Pictures/Images/Hardeep Singh.jpg");
          cvNamedWindow("MyWindow");
          cvShowImage("MyWindow", img);
          cvWaitKey(0);
          cvDestroyWindow("MyWindow");
          cvReleaseImage(&img);
          return 0;
}

Please help