Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为我的图像处理项目设计带有 Visual c# 的界面。我需要在图像上选择点并对这些点进行分类,以便在 vhdl 的图像处理代码中使用。
原始图像将保留在一个图片框中,我将在另一个图片框中使用选定的图像。
如何在图像上选择点?
如果您需要在鼠标悬停在图片框上时获取像素颜色和坐标,您可以使用
private void pictureBox1_MouseDown(object sender, MouseEventArgs e) { PictureBox pb = (PictureBox)sender; Bitmap bmp = (Bitmap)pb.Image; Color col = bmp.GetPixel(e.X, e.Y); // Do what you please with pixel coord and color }