python中image对象_如何使用python计算图像中的对象?

我正在尝试计算此图像中的墨滴数量以及这些墨滴所覆盖区域的覆盖率.

我试图将这个图像转换为黑白图像,但这些图像的中心颜色看起来与背景太相似了.所以我只得到第二张图片.

有没有办法解决这个问题或任何更好的想法?

非常感谢.

解决方法:

您可以使用scipy.ndimage.binary_fill_holes填充二进制图像的孔.我还建议使用自动阈值处理方法,如Otsu(可用于scikit-image).nE1fZ.jpg

from skimage import io, filters

from scipy import ndimage

import matplotlib.pyplot as plt

im = io.imread('ba3g0.jpg', as_grey=True)

val = filters.threshold_otsu(im)

drops = ndimage.binary_fill_holes(im < val)

plt.imshow(drops, cmap='gray')

plt.show()

对于丢弃的数量,您可以使用scikit-image的另一个功能

from skimage import measure

labels = measure.label(drops)

print(labels.max())

并为覆盖范围

print('coverage is %f' %(drops.mean()))

标签:python,image-processing

来源: https://codeday.me/bug/20190930/1837155.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值