How to detect blue color object using opencv
i'm using that guide to detect blobs of a certain color. On that guide, it check for orange's blob and it use this values: int orange[3] = {200, 250, 10}; On the guide it says that this values represents the orange in HSV. I don't know how they calculate this values but i try to check for blue value converting from rgb to hsv but it doesn't work. What i have to detect is this color: Any ideas on how to determinate HSV values to detect colors? thanks!! For blue , it can be used as HSV values : [120,255,255] I calculated it from GIMP , an open-source image processing tool like Photoshop.