我正在尝试学习 Aforge.net。我写了代码,它工作正常,但我想在我的图像上检测到紫色,但我不知道它是怎么回事。所以任何人都可以帮助我吗?这是我的代码
Bitmap resim = new Bitmap(pictureBox1.Image);
EuclideanColorFiltering filter = new EuclideanColorFiltering();
// set center color and radius
filter.CenterColor = new RGB(80,90,120);
filter.Radius = 40;
// apply the filter
filter.ApplyInPlace(resim);
pictureBox1.Image = resim;
还有我的源图片
在我的过滤器之后是这个
那么在这张图片中,我可以做些什么来选择没有其他东西的紫色数字或只选择紫色的东西?