Ask Your Question

Prak's profile - activity

2020-04-21 00:32:54 -0600 received badge  Popular Question (source)
2014-01-08 22:28:50 -0600 commented question GLib-GObject-CRITICAL error in code Saving specific (matching) frames from a whole video

The cvtColor is not getting any image because the VideoCapture is not able to read the .ts video . The code is as follows: VideoCapture cap("video.ts"); if(!cap.isOpened())
{
cout << "Didnt Find Video File..." << endl; } namedWindow("videoImage",1); Mat queryImage,videoImage;int nImages=1; for (int i =1; i <=nImages; i++) { for (;;) { Mat frame; cap >> frame; // get a new frame from video cvtColor(frame, videoImage, CV_BGR2GRAY);

2014-01-08 05:11:02 -0600 asked a question GLib-GObject-CRITICAL error in code Saving specific (matching) frames from a whole video

I want to continuously compare a video with a set of frames I have and save the sae frames occuring in that long video. I have tried using SURF and FLANN matching , but the video is not getting captured in the first place and i am getting following error :

(<unknown>:14784): GLib-GObject-CRITICAL **: g_object_set: assertion `G_IS_OBJECT (object)' failed Didnt Find Video File... OpenCV Error: Assertion failed (scn == 3 || scn == 4) in cvtColor, file /home/vuadmin/OpenCV-2.3.1/modules/imgproc/src/color.cpp, line 2834 terminate called after throwing an instance of 'cv::Exception' what(): /home/vuadmin/OpenCV-2.3.1/modules/imgproc/src/color.cpp:2834: error: (-215) scn == 3 || scn == 4 in function cvtColor

And i also get the GLib-GObject-CRITICAL error while trying out the starter_video.cpp in the Opencv/samples/cpp folder.

Please help me to figure out the issue.