I am having so much trouble installing openCV 2.3 with visual studio 2010. Crash after crash, installation after installation and after several weeks I\'ve had no luck. Unfo
You should try making a cycle structure:
#include #include #include using namespace cv; int main(){ Mat image; namedWindow( "Gray image", 2 ); while(1){ image = imread( "d://Gaa6P.png", 1 ); imshow( "Gray image", image ); waitKey(0); } return 0; }