2018-06-04 11:34:56 -0600 | received badge | ● Popular Question (source) |
2014-11-18 01:51:01 -0600 | answered a question | how can I make imwrite work with a Mat video frame? this code works fine. The issue was in the version of visual studio I was using and dynamically linking the dll lib files. It would of helped to put a version number when it was said the new open cv only works with the latest visual studio version. 2.49 will only work well with visual studio 2010 and up. if your having trouble linking lib files and installing open cv 2.49 or higher check out this link. https://www.youtube.com/watch?v=cgo0UitHfp8&list=PLvwB65U8V0HHCEyW2UTyOJym5FsdqfbHQ |
2014-11-14 11:05:24 -0600 | received badge | ● Editor (source) |
2014-11-13 13:07:33 -0600 | commented question | how can I make imwrite work with a Mat video frame? this is the error OpenCV Error: Unspecified error (could not find a writer for the specified exten sion) in cv::imwrite_, file ........\opencv\modules\highgui\src\loadsave.cpp, line 275 |
2014-11-13 12:24:48 -0600 | commented question | how can I make imwrite work with a Mat video frame? in if (c == 's') I tried bool bSuccess = imwrite("C:/TestImage.jpg", imgH); and it crashed. I don't know how to convert imgH to a savable image. |
2014-11-12 15:43:24 -0600 | asked a question | how can I make imwrite work with a Mat video frame? In my code where I state if (c == 's') how do I save Mat imgH = frame + Scalar(0.299bright, 0.587bright, 0.114*bright); to a index-able image to my hard drive? I tried imwrite and it just crashes any ideas what I'm missing? |