I am trying to mark pixels in an image that have been found to be keypoints so I can visualize where the keypoints are. If I mark a pixel like this:<br><br>  //set the pixel (10,10) to red<br>  image-&gt;SetScalarComponentFromDouble(10, 10, 0, 0, 255.0);<br>
  image-&gt;SetScalarComponentFromDouble(10, 10, 0, 1, 0.0);<br>  image-&gt;SetScalarComponentFromDouble(10, 10, 0, 2, 0.0);<br><br>the red mark is often too small to even see (since it is only one pixel!). Are there any functions to draw a filled circle/square of a specified color in an image centered at a specified pixel?<br>
<br clear="all">Thanks,<br><br>David<br>