如何去除图像中物体边缘附近的噪声
我有这样的图像:
我想删除边缘附近的背景(A 部分)物体。我计划使用颜色检测,因为物体和噪声的颜色有点不同。但也许这不是一个好主意。
如果您能为我提供任何想法,我将不胜感激。 谢谢
我有这样的图像:
我想删除边缘附近的背景(A 部分)物体。我计划使用颜色检测,因为物体和噪声的颜色有点不同。但也许这不是一个好主意。
如果您能为我提供任何想法,我将不胜感激。 谢谢
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
如果您要对图像执行任何类型的基于颜色的分割,您可能会发现转换为 HSV 会更容易颜色空间首先选择特定的颜色范围。我在 我对类似问题的回答。您可能想要遵循的步骤如下:
我无法给出如何将这种分析应用于数据的准确示例,因为您在问题中提供的图像实际上比它显示的数据具有更高的分辨率,但这里有一个通用解决方案使用函数RGB2HSV,IMERODE 和 "="" rel="nofollow noreferrer">IMDILATE (最后两个来自 图像处理工具箱):
下面是一些代码,用于可视化上述分析创建的边缘:
If you're performing any sort of color-based segmentation of images, you may find it easier to convert to HSV color space first to select specific color ranges. I outline how you can do this sort of thing in an answer I gave to a similar question. The steps you would likely want to follow would be the following:
I can't give an exact example of how you would apply this analysis to your data since the image you provide in the question actually has a higher resolution than the data it displays, but here's a general solution that uses the functions RGB2HSV, IMERODE, and IMDILATE (the last two are from the Image Processing Toolbox):
And here's some code to visualize the edges created by the above analysis: