I'm new to image processing and video processing and I tried to get the orange color space for use in my color detecting python file. But unfortunately it doesn't work. It works when I give the blue color space define range in HSV colorspace.
I tried giving the color space for orange but then system doesn't show any output
Define 'orange' range in HSV colorspace
upper = np.array([32,255,255])
lower = np.array([110, 50, 50])
mask = cv2.inRange(hsv, lower, upper)
I want the proper 'orange' range in HSV colorspace