Ask Your Question

Haris's profile - activity

2019-07-10 18:04:38 -0600 received badge  Famous Question (source)
2019-07-02 09:31:36 -0600 commented answer Is there an openCV method/function to detect unsevered blobs?

@StevenPuttemans I was also thinking that, hope you can help me to doing this.

2019-07-02 09:29:43 -0600 edited answer Detect Closed loop through from the image

You can refer below method which also doing the same. Just use findContours() in your image, then decide whether the

2019-07-02 09:27:47 -0600 answered a question Detect Closed loop through from the image

You can refer below method which also doing the same. Just use findContours() in your image, then decide whether the

2019-05-17 10:11:00 -0600 edited answer Finding subpixel position of fiducial shapes (Plus, Dot, Square)

You can use OpenCV contour processing to achieve the result. You may need to do the following on the input image.   S

2019-05-17 10:10:39 -0600 edited answer Finding subpixel position of fiducial shapes (Plus, Dot, Square)

You can use OpenCV contour processing to achieve the result. You may need to do the following on the input image.   S

2019-05-17 10:08:00 -0600 edited answer Finding subpixel position of fiducial shapes (Plus, Dot, Square)

You can use OpenCV contour processing to achieve the result. You may need to do the following on the input image.   S

2019-05-10 02:03:00 -0600 received badge  Good Answer (source)
2019-03-15 04:19:33 -0600 received badge  Notable Question (source)
2018-12-29 12:45:24 -0600 received badge  Good Answer (source)
2018-12-13 05:30:06 -0600 received badge  Good Answer (source)
2017-08-29 17:56:53 -0600 received badge  Nice Answer (source)
2017-05-29 09:57:15 -0600 received badge  Nice Answer (source)
2017-05-04 15:32:49 -0600 received badge  Good Answer (source)
2016-12-29 01:46:41 -0600 received badge  Nice Answer (source)
2016-12-20 09:02:16 -0600 received badge  Nice Answer (source)
2016-10-19 02:28:54 -0600 received badge  Good Answer (source)
2016-10-18 01:20:26 -0600 received badge  Nice Answer (source)
2016-07-25 03:58:18 -0600 received badge  Nice Answer (source)
2016-07-18 06:57:45 -0600 marked best answer Why OpenCV Using BGR Colour Space Instead of RGB

Hi all. Can any one explain why OpenCV using BGR colour space instead of RGB. We all know that RGB is the convenient colour model for most of the computer graphics and also the human visual system works in a way that is similar to an RGB colour space. Is there any reason behind OpenCV BGR colour space ?.

Thanks in advance.......

2016-06-11 00:09:31 -0600 commented question C++ IDE for Ubuntu compatible with OpenCV

I recommend to use Qt , you can find lot of tutorial in net.

2016-05-30 07:23:41 -0600 received badge  Popular Question (source)
2016-05-28 08:14:43 -0600 received badge  Popular Question (source)
2016-04-22 23:38:18 -0600 edited answer how do I separate the channels of an RGB image and save each one, using the 2.4.9 version of OpenCV?

Use Mat::split, which splits multi-channel image into several single-channel arrays.

Example:

Mat src = imread("img.png",CV_LOAD_IMAGE_COLOR); //load  image

Mat bgr[3];   //destination array
split(src,bgr);//split source  

//Note: OpenCV uses BGR color order
imwrite("blue.png",bgr[0]); //blue channel
imwrite("green.png",bgr[1]); //green channel
imwrite("red.png",bgr[2]); //red channel
2016-04-22 23:37:29 -0600 commented answer how do I separate the channels of an RGB image and save each one, using the 2.4.9 version of OpenCV?

You are right, thanks for noticing :). I will edit it.

2016-04-04 13:31:45 -0600 received badge  Nice Answer (source)
2016-03-21 15:58:17 -0600 received badge  Nice Answer (source)
2016-02-08 22:57:56 -0600 received badge  Notable Question (source)
2016-02-02 08:44:26 -0600 received badge  Good Answer (source)
2016-01-17 17:32:49 -0600 received badge  Nice Answer (source)
2016-01-10 13:42:57 -0600 received badge  Nice Answer (source)
2015-12-28 17:50:42 -0600 received badge  Nice Answer (source)
2015-12-26 04:08:58 -0600 received badge  Good Answer (source)
2015-11-02 07:23:31 -0600 commented question Crop image after stitching

Also check out the answer here might be helpful.

2015-10-06 20:44:21 -0600 received badge  Nice Answer (source)
2015-10-01 00:55:35 -0600 edited question Boundary detection-What function will be the best for this?

image descriptionC:\fakepath\goal.jpg

Hi guys, My goal is to draw a line on the boundary between the grass and concrete as in the image. However, I am having difficulty cuz the grass is too jagged. What function should I use in this case?

2015-09-30 12:37:16 -0600 received badge  Good Answer (source)
2015-09-30 03:27:09 -0600 received badge  Guru (source)
2015-09-30 03:27:09 -0600 received badge  Great Answer (source)
2015-09-23 04:20:36 -0600 commented question HSV value of a RGB pixel

Check out the answer here, which will display BGR value and corresponding HSV value http://answers.opencv.org/question/30...

And if you want to segment the object then the answer here might be helpful http://answers.opencv.org/question/28...

2015-09-15 00:48:28 -0600 commented question Most Efficient Alpha Blending
2015-09-09 00:17:03 -0600 commented question How to Extract track information with OpenCV?

Glad to know it helped you :).

2015-09-06 23:03:50 -0600 commented question How to Extract track information with OpenCV?

You can check the answer here How do I detect the centerline of an object might be helpful.

2015-08-31 21:02:54 -0600 marked best answer opencv_highgui functions on Android

Hi all I am a beginner in Android but familiar with OpenCV. My question is does Android support all the functions we normally used in our PC like VideoCapture, createTrackbar, cvNamedWindow, CvShowImage, etc. If Android doesn't support all those functions and classes, where should I refer to learn more about supported function and class. Where should I get a good documentation about all these things.

Thanks

2015-08-21 13:36:04 -0600 received badge  Good Answer (source)