This code below will draw a red circle at x,y coordinates
>>cv2.circle(frame,(x, y), 10, (0,0,255), -1)
But the right rbg code for red color should be (255,0,0). When I printed out the color name, it showed blue.
>>print webcolors.rgb_to_name((0,0,255))
>>blue