我正在尝试从图像中提取黑屏,因此我使用了canny
过滤器。然后我发现我需要提取第二大轮廓来检测我想要的部分。这里是要过滤的代码:
private void cannyToolStripMenuItem_Click(object sender, EventArgs e)
{
if ( imageInput == null)
{
return;
}
Image<Gray, byte> imageCanny = new Image<Gray, byte>(imageInput.Width, imageInput.Height, new Gray(1));
imageCanny = imageInput.Canny(80, 20);
imageBox2.Image = imageCanny; }
现在我不知道如何从图像中提取出我想要的部分!需要帮助,谢谢。