Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a new method to convert from RGB to HSV #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Add a new method to convert from RGB to HSV #1

wants to merge 1 commit into from

Conversation

sugus-labs
Copy link

Create a method to convert from RGB to HSV easily in Python.
The main purpose is to call the function "inRange" of cv2.
Example with the GOLD one:
hsv_image = cv2.cvtColor(blur_image, cv.CV_BGR2HSV)
threshold_image = cv2.inRange(hsv_image, np.array((23., 100., 100.)), np.array((27., 255., 255.)))

Create a method to convert from RGB to HSV easily in Python.
The main purpose is to call the function "inRange" of cv2.
Example with the GOLD one:
hsv_image = cv2.cvtColor(blur_image, cv.CV_BGR2HSV)
threshold_image = cv2.inRange(hsv_image, np.array((23., 100., 100.)), np.array((27., 255., 255.)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant