我在 PictureBoxcontrol 中的图像上绘制了一个矩形。
对于绘图,我使用此功能:
Rectangle rect = contourDetected.BoundingRectangle;
Bitmap bmpOriginalImage = new Bitmap(pbxOriginalImage.Image);
img.Draw(rect, new Bgr(Color.Aquamarine), 2);
pbxOriginalImage.Image = img.ToBitmap();
是否有任何功能可以擦除最后绘制的曲线?