opencv中如何去除二值图像噪声?

发布于 2025-01-03 01:16:27 字数 249 浏览 0 评论 0原文

将图像转换为二值图像(黑白)后如果有任何噪音怎么办 我消除了不需要的噪音,

您可以看到下图的黑色区域内有一些白噪音,我怎样才能消除噪音 使用opencv

http://img857.imageshack.us/img857/999/blacknoise.jpg

after convert image to binary image (black and white ) if there is any noise how can
i remove that unwanted noise

you can see below image have some white noise inside the black area how can i remove noise
using opencv

http://img857.imageshack.us/img857/999/blacknoise.jpg

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮云壑 2025-01-10 01:16:27

您可以通过 Erode 和 < a href="http://docs.opencv.org/modules/imgproc/doc/filtering.html?highlight=dilate#dilate" rel="nofollow noreferrer">扩张。

cvErode( in, eroded, NULL, 4) 后的图像
eroded

cvDilate( eroded, dilated, NULL, 4) 之后:
扩张

You can achieve it with Erode and Dilate.

Your image after cvErode( in, eroded, NULL, 4):
eroded

And after cvDilate( eroded, dilated, NULL, 4):
dilated

别低头,皇冠会掉 2025-01-10 01:16:27

您还可以使用 floodFill,传递角像素作为种子 (或您知道不是对象的其他一些像素)。

您可以在此处查看使用腐蚀、膨胀和洪水填充的示例。

You could also use floodFill, passing a corner pixel as seed (or some other pixel that you know to be non-object).

You can see here an example of using erode, dilate and flood fill.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文