def plot_images(self):
"""
Plot cover and steganographic RGB images side by side.
"""
io.imshow(np.concatenate((self.I, self.S), axis=1))
plt.title('Left: original cover image. Right: steganographic image.')
plt.grid(False)
plt.show()
评论列表
文章目录