Ask Your Question

bharath95's profile - activity

2019-06-18 12:33:36 -0600 received badge  Famous Question (source)
2018-10-03 01:47:27 -0600 received badge  Notable Question (source)
2018-06-06 05:53:27 -0600 received badge  Popular Question (source)
2016-07-27 10:13:09 -0600 commented answer how to retrieve all coordinates of pixels of specific colour in an image.

Thanks, that did help. I'm looking for java code though. :)

2016-07-26 05:28:18 -0600 asked a question how to retrieve all coordinates of pixels of specific colour in an image.

Hello, I'm new to OpenCV and I'm trying to retrieve the coordinates (preferably in numpy array) of specific colour in my image. I have four different colours in the image and want extract all the four colour points separately in four different array's.

2016-01-18 07:31:26 -0600 received badge  Editor (source)
2016-01-18 07:30:33 -0600 answered a question cv2.VideoCapture(1) error.

did you try your code by changing to cv2.videocapture(0) instead of 1. You might want to look at the parameter section in http://docs.opencv.org/2.4/modules/hi...

2016-01-10 04:47:35 -0600 received badge  Supporter (source)
2016-01-10 04:43:20 -0600 commented question How to verify if two images have the same object/content?

I have done similar kind of work with cascades. You can try this using lbph algorithm. You can get the confidence value which will clearly state how close the image is to the original one. Hope this helps.