I am currently trying to make an application in Android that will detect this colors.
Left circle with RGB Values of (167,103,103). Middle Circle: (163,98,94). Right Circle: (134,62,66)
What I've done is convert the image into HSV then use
Core.inRange(HSV, new Scalar(0,0,0),new Scalar(0,0,0),ColorDetection );
How can i detect left circle, middle circle and the right circle and eventually all of them? What values should i put inside Scalar()
?