imshow 一个灰度图像和一个二进制图像 python

Sai*_*chi 3 numpy matplotlib computer-vision python-2.7

我有一个灰度图像和一个二值图像,我想使用 hstack 并排绘制它们。看起来已经进行了某种调整以使二进制变暗。有人遇到过这个问题吗?

在此处输入图片说明

这是我的代码

O = (self.img >= t) * 1
I = img
both = np.hstack((I, O))
imshow(both, cmap='gray')
show() 
Run Code Online (Sandbox Code Playgroud)

swa*_*hai 8

这是为了证明与您的案例有些不同,我不知道其数据。我怀疑数组 'O' 中的所有值都为零,因此,该图以黑色窗格的形式出现。

import numpy as np
import matplotlib.pyplot as plt

fig=plt.figure(figsize=(8, 4))

# make up some data for demo purposes
raw = np.random.randint(10, size=(6,6))
# apply some logic operatioin to the data
O = (raw >= 5) * 1   # get either 0 or 1 in the array
I = np.random.randint(10, size=(6,6))  # get 0-9 in the array

# plot each image ...
# ... side by side
fig.add_subplot(1, 2, 1)   # subplot one
plt.imshow(I, cmap=plt.cm.gray)

fig.add_subplot(1, 2, 2)   # subplot two
# my data is OK to use gray colormap (0:black, 1:white)
plt.imshow(O, cmap=plt.cm.gray)  # use appropriate colormap here
plt.show()
Run Code Online (Sandbox Code Playgroud)

结果图像:

在此处输入图片说明