【发布时间】:2018-03-22 13:32:39
【问题描述】:
我使用 graphics_toolkit('gnuplot') 表示 Octave。
但是,当我使用imshow 时,图像似乎更暗:
image = imread('Lenna.png')
imshow(image)
灰色版本运行良好:
pkg load image
gray = rgb2gray(image)
imshow(gray)
如何解决imshow 问题?
【问题讨论】:
-
我无法重现您的错误。使用
gnuplot图形包,下载原始图像,在 Octave 中读取并显示相同的图像,而不会降低照明。我也在使用 Octave 4.0.0。 -
我使用的是 Arch Linux,所有的包都是从
pacman安装的。我正在使用 Octave 4.2.1
标签: image image-processing computer-vision octave imshow