Ask Your Question

Julien's profile - activity

2013-04-08 16:56:51 -0600 commented question jpg does not show
2013-04-08 16:46:12 -0600 commented question jpg does not show

ok, I will find something else. Stay tuned !

2013-04-08 16:16:59 -0600 commented question jpg does not show

Hum, sorry, I did not put the whole code, it was obvious to me that there was a waitkey at the end. Sorry for that... In fact, a window appears but it does not contain something that looks like the original image. See "capture" here : http://dl.free.fr/nAe3YDU0W

2013-04-08 14:39:54 -0600 asked a question jpg does not show

Hello

The following code does not work with this image : http://dl.free.fr/vahKqrTqs while it works successfully with the cow image from this page : http://docs.opencv.org/doc/tutorials/imgproc/imgtrans/laplace_operator/laplace_operator.html?highlight=laplacian

Any idea ?

cv::Mat img = cv::imread("R0010054.JPG");

if(img.empty())
{
    return -1;
}

cv::imshow("image", img);

Thanks Julien