Ask Your Question

kusan's profile - activity

2018-02-20 10:58:50 -0600 received badge  Famous Question (source)
2017-05-14 02:38:47 -0600 received badge  Notable Question (source)
2016-01-22 00:40:46 -0600 received badge  Popular Question (source)
2014-11-14 01:35:28 -0600 commented answer 2D line fitting using RANSAC

FooBar, I have considered HoughLines. Unfortunately it was not giving me what I wanted. Later I attacked my original problem in a different approach which does not require either Hough fitting or RANSAC. But I plan to write a RANSAC line fitting function later in my free time.

2014-11-14 01:30:59 -0600 commented question 2D line fitting using RANSAC

Thank you Doombot :) btw, I am using C++

2014-11-14 01:29:10 -0600 received badge  Supporter (source)
2014-10-31 14:25:15 -0600 received badge  Editor (source)
2014-10-31 14:23:43 -0600 asked a question 2D line fitting using RANSAC

I have a very simple Mat object which is a binary image. All the pixels are 0 except a few which are 1(some of which are inliers and some are outliers). I want to fit a line on these 1 pixels using RANSAC. Is there any built in method to do that or I have to write one?

I am using OpenCV v2.4.8 on Fedora 20 GNU/Linux.