Ask Your Question

m3rt's profile - activity

2019-09-14 14:26:34 -0600 received badge  Famous Question (source)
2019-01-21 07:59:50 -0600 received badge  Notable Question (source)
2018-11-06 12:01:40 -0600 received badge  Popular Question (source)
2017-08-21 13:46:42 -0600 asked a question Thresholding multiple RGB values in Python

Trying to extract three RGB values

  • (255, 255, 0)
  • (0, 0, 255)
  • (255, 0, 0)

via thresholding in a live video, but couldn't make it work by using inRange. How can it be done? Not asking for code (samples would be great), but some direction to search for.

Thanks in advance.

2017-08-21 13:08:44 -0600 received badge  Student (source)
2017-08-21 11:43:36 -0600 received badge  Editor (source)
2017-08-21 11:43:07 -0600 commented answer Detecting 16 squares in a live video in Python

Forgot to mention that I'm using Python 3. Your answer can provide a map for the solution, teşekkürler ilginize.

2017-08-21 06:53:31 -0600 asked a question Detecting 16 squares in a live video in Python

Hi; I am trying to detect all squares colors in a picture below -but in a live video-. By using simple blob detector, the program can get 16 squares most of the time and gets color values mostly correct, but it finds blobs other than this area for now. How can I prevent finding other blobs that are not needed?

1-Can it be done like this; When program sees 16 squares in a certain area, it would focus on that area and ignore other blobs.

I am kinda new to OpenCV and I am still learning stuff. Thanks in advance.

example image

2017-08-15 01:43:23 -0600 received badge  Enthusiast
2017-08-14 17:05:52 -0600 asked a question Finding white circles only

Hi everyone;

I am trying to detect white circle (yes, just one) on video capture. I have converted the frame to HSV and by using inRange, the program can detect white pixels now in Python 3. But, I need to detect pixels if they are a circle. How can I do that? With Hough circle transform?

Thanks in advance.

2017-08-09 09:37:15 -0600 asked a question Better way to detect 4x4 Matrix

Hi; I need to detect colors of 4x4 matrices. I was doing it with simpleBlobDetector for now, finding blobs, getting coordinates and recognizing color at last in Python. So my question: is there a better way of doing this?

Thanks in advance.

2017-08-09 04:49:12 -0600 received badge  Supporter (source)
2017-08-09 04:49:04 -0600 commented answer How to find pixel's (with coordinates specified) color values?

Thanks for your response. I think your answer is valid for C language, I was looking for Python.

2017-08-09 04:47:24 -0600 commented answer How to find pixel's (with coordinates specified) color values?

It's really easy than my thought. Thank you, it works!

2017-08-09 04:46:03 -0600 received badge  Scholar (source)
2017-08-09 01:52:10 -0600 commented question How to find pixel's (with coordinates specified) color values?

Not by clicking, coordinates come from blob detector as keypoints for x and y axis.

2017-08-08 15:02:30 -0600 asked a question How to find pixel's (with coordinates specified) color values?

Hello, everyone!

I need to get color values(HEX) of specific pixels from live video capture. I have used simpleBlobDetector to get coordinates with Python. How can I do it?

Thanks in advance.

Note: I am kinda new to opencv and forum. If I had ask question in not a proper way, please warn.