I am trying to run a script written using opencv in python which uses webcam to track colored objects (here the object is blue colored), which is also mentioned in opencv\'s doc
The range of blue color in HSV should be given as :
lower_blue = np.array([110, 50, 50], dtype=np.uint8) upper_blue = np.array([130,255,255], dtype=np.uint8)