Ask Your Question

leRoss's profile - activity

2013-10-21 15:05:46 -0600 commented answer background substraction with CV_16UC1

I will loose some precision that way.

Someone told me that if I remove the ASSERT that validate if the CV_U8 images it worked for them before. ( I have to recompile OpenCV)

I will try it and post my results here

2013-10-21 13:22:53 -0600 answered a question filled circle detection

I recommend to stick with your previous link to find contours of OpenCV. the moment helps you to find the center only.

simpler tutorial for contours : http://docs.opencv.org/doc/tutorials/imgproc/shapedescriptors/find_contours/find_contours.html

Use the FindContours method with CV_RETR_TREE option that option with give you a tree of contours inside a contours. if there's a contour within a contour. it seems to be a non-filled circle.

2013-10-21 13:15:38 -0600 received badge  Editor (source)
2013-10-04 15:04:50 -0600 asked a question background substraction with CV_16UC1

With Openni I want to use the Depthmap who is in CV_16UC1 and apply the background substracter to find the background pixels.

The background cv::BackgroundSubtractorMOG seems to accept only CV_8U images.

Is there a way to make it work with CV_16U images ?