This section has all my projects across all domains.

Taking input from camera

By |2018-11-11T11:43:56+00:00April 6th, 2016|Blog, Programming, Projects|

Today I am trying to get input from default camera, with OpenCV. OpenCV hasa great library called "videoio" which can handle video input/output from filesystem or imaging devices. This library has a class cv::VideoCapture which [...]

OpenCV Data Types

By |2018-11-11T11:44:21+00:00April 6th, 2016|Blog, Programming, Projects|

Earlier when OpenCV was in its childhood stage - it used Iplimage as the structure to capture image data. The problem with this structure was this that one had to manage memory manually with it. [...]

Rendering AVI video in OpenCV

By |2018-11-11T11:44:15+00:00March 30th, 2016|Blog, Programming, Projects|

Got following code online: #include “highgui.h” int main( int argc, char** argv ) { cvNamedWindow( “Example2”, CV_WINDOW_AUTOSIZE ); CvCapture* capture = cvCreateFileCapture( argv[1] ); IplImage* frame; while(1) { frame = cvQueryFrame( capture ); if( !frame [...]

Go to Top