Ask Your Question

kalyanramu's profile - activity

2014-04-14 23:37:46 -0600 commented answer Tracking of Non-Rigid Object (Skater) using OpenCV

Thank you very much!

2014-04-14 23:37:14 -0600 received badge  Scholar (source)
2014-04-03 16:53:53 -0600 commented answer imread always return empty matrix

I am running to same error. How did you figure out that your libs were x86 and project was x64? Can you please comment

2014-03-24 11:31:18 -0600 received badge  Editor (source)
2014-03-24 11:23:20 -0600 asked a question Tracking of Non-Rigid Object (Skater) using OpenCV

Hi all,

I am working on a project where I need to track non-rigid object (in this case a skater) using OpenCV. The skater will be skating along the ramp and the goal is to track his speed along the trajectory. There is also gap between two ramps where he will jump and I need to track his path during the jump also. We will observing the skater along side view. The skater changes his stance differently along the track. Since, the skater is skating on the ramp in a stadium, there is lot of noise/unwanted objects in the background

What would be a good approach to solve the problem in hand using OpenCV? Any suggestions are welcome.

2014-01-25 00:11:38 -0600 commented question using cout with Mat object

I have pointed the path variable to vc10 currently. Should I make a build of OpenCV 2.4.7 (version I am using) for VS2012 and point the path to it. I am curious as how you figured out what was causing the problem.

2013-12-13 16:08:35 -0600 asked a question opencv imread, does it perform a deep copy?

Hi all,

I am new to OpenCV. I am using the following syntax in my code Mat image = imread(filename);

I wanted to understand how image is loaded into matrix and dug into source code of imread. Mat imread( const string& filename, int flags ) { Mat img; imread_( filename, flags, LOAD_MAT, &img ); return img; }

In this context, it seems that image from file is loaded into img, then to image.

Is the copy from img to image a shallow copy or deep copy? Any information in understanding details is greatly appreciated.

2013-02-21 12:37:02 -0600 commented answer Is there a way to perform JPEG-LS compression in OpenCV?

Thanks for quick response. I appreciate it. Can you please refer me to document which explains about the compression formats are supported by OpenCV?

2013-02-21 11:50:16 -0600 asked a question Is there a way to perform JPEG-LS compression in OpenCV?

Hi all,

I was some data which I acquired using TIFF files. I was wondering if there is a way to perform JPEG-LS compression and save them to file.

Thanks, Kalyan