bob.ip.draw_cross_plus¶
-
bob.ip.draw_cross_plus((object)image, (int)x, (int)y, (int)radius, (object)color) → None :¶ Draws a cross with a given radius and color at the image. Uses the draw_line() primitive above. The cross will look like an ‘+’ and not like a ‘x’. To get a ‘x’ sign, use the draw_cross() variant. This method supports both grayscale (2D) or color RGB (3D) images. Depending on your image type, select an appropriate color value: a single gray value for 2D grayscale images or a 3-tuple containing the RGB color to set during drawing.