在图像上使用 Skimage 自适应阈值并获取输出
Using Skimage adaptive thresholding on an image and getting the output
我正在尝试在我的图像上使用 scikit-image 的自适应阈值。我从 HERE
测试了他们的示例代码
import matplotlib.pyplot as plt
from skimage import data
from skimage.filters import threshold_otsu, threshold_adaptive
image = data.page()
global_thresh = threshold_otsu(image)
binary_global = image > global_thresh
block_size = 35
binary_adaptive = threshold_adaptive(image, block_size, offset=10)
fig, axes = plt.subplots(nrows=3, figsize=(7, 8))
ax0, ax1, ax2 = axes
plt.gray()
ax0.imshow(image)
ax0.set_title('Image')
ax1.imshow(binary_global)
ax1.set_title('Global thresholding')
ax2.imshow(binary_adaptive)
ax2.set_title('Adaptive thresholding')
for ax in axes:
ax.axis('off')
plt.show()
代码接收样本图像,对其进行阈值处理并使用 plt 显示它。但是,我正在尝试检索阈值图像的 numpy 数组。当我尝试在变量 binary_global
上使用 cv2.imwrite
时,它不起作用。打印出来的时候binary_global
--其实是一个由False和True值组成的数组,而不是数字。我不确定 plt 如何使用它并生成图像。无论如何,我如何对图像进行阈值处理并使用 RGB 值检索新的阈值图像数组?
您首先需要将 scikit 图像转换为 opencv 才能使用 cv2.imwrite()
。
添加以下更改-
from skimage import img_as_ubyte
import matplotlib.pyplot as plt
from skimage import data
from skimage.filters import threshold_otsu, threshold_adaptive
import cv2
image = data.page()
global_thresh = threshold_otsu(image)
binary_global = image > global_thresh
block_size = 35
binary_adaptive = threshold_adaptive(image, block_size, offset=10)
fig, axes = plt.subplots(nrows=3, figsize=(7, 8))
ax0, ax1, ax2 = axes
plt.gray()
ax0.imshow(image)
ax0.set_title('Image')
ax1.imshow(binary_global)
ax1.set_title('Global thresholding')
ax2.imshow(binary_adaptive)
ax2.set_title('Adaptive thresholding')
for ax in axes:
ax.axis('off')
plt.show()
img = img_as_ubyte(binary_global)
cv2.imshow("image", img)
cv2.waitKey(0)
然后您可以使用 img
进行书写等
我正在尝试在我的图像上使用 scikit-image 的自适应阈值。我从 HERE
测试了他们的示例代码import matplotlib.pyplot as plt
from skimage import data
from skimage.filters import threshold_otsu, threshold_adaptive
image = data.page()
global_thresh = threshold_otsu(image)
binary_global = image > global_thresh
block_size = 35
binary_adaptive = threshold_adaptive(image, block_size, offset=10)
fig, axes = plt.subplots(nrows=3, figsize=(7, 8))
ax0, ax1, ax2 = axes
plt.gray()
ax0.imshow(image)
ax0.set_title('Image')
ax1.imshow(binary_global)
ax1.set_title('Global thresholding')
ax2.imshow(binary_adaptive)
ax2.set_title('Adaptive thresholding')
for ax in axes:
ax.axis('off')
plt.show()
代码接收样本图像,对其进行阈值处理并使用 plt 显示它。但是,我正在尝试检索阈值图像的 numpy 数组。当我尝试在变量 binary_global
上使用 cv2.imwrite
时,它不起作用。打印出来的时候binary_global
--其实是一个由False和True值组成的数组,而不是数字。我不确定 plt 如何使用它并生成图像。无论如何,我如何对图像进行阈值处理并使用 RGB 值检索新的阈值图像数组?
您首先需要将 scikit 图像转换为 opencv 才能使用 cv2.imwrite()
。
添加以下更改-
from skimage import img_as_ubyte
import matplotlib.pyplot as plt
from skimage import data
from skimage.filters import threshold_otsu, threshold_adaptive
import cv2
image = data.page()
global_thresh = threshold_otsu(image)
binary_global = image > global_thresh
block_size = 35
binary_adaptive = threshold_adaptive(image, block_size, offset=10)
fig, axes = plt.subplots(nrows=3, figsize=(7, 8))
ax0, ax1, ax2 = axes
plt.gray()
ax0.imshow(image)
ax0.set_title('Image')
ax1.imshow(binary_global)
ax1.set_title('Global thresholding')
ax2.imshow(binary_adaptive)
ax2.set_title('Adaptive thresholding')
for ax in axes:
ax.axis('off')
plt.show()
img = img_as_ubyte(binary_global)
cv2.imshow("image", img)
cv2.waitKey(0)
然后您可以使用 img
进行书写等