问题标签 [imshow]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
226 浏览

matlab - 用线条覆盖时图像逐渐消失

除了存在绘制矢量场的特殊函数这一事实之外,我还遇到了一个奇怪的 Matlab 行为:绘制图像(使用imagescor )并用彩色线条(使用or )imshow覆盖它会在某些时候导致背景图像的擦除。plotline

结果:100 行

100 行之后

结果:200 行

200行后

结果:900 行

900行之后

好的一面是将图像保存为 PNG 可以恢复图像(但会破坏线条分辨率)。

0 投票
4 回答
21820 浏览

python - 出现错误 - 在给出 imshow、imwrite 命令 opencv 时“找不到作家”

我是opencv和python的初学者。我刚刚安装了opencv2.4.9并考虑了canopy-32bit。我收到以下错误:

这就是我得到的:

0 投票
1 回答
378 浏览

python - 使用 python imshow 出现“阴霾”或“雾” - 为什么黑色区域看起来是灰色的?

我希望这将是一个非常直截了当的问题。我正在处理一些从 FITS 文件中读入的图像到 numpy 数组中。我想制作一个RGB图像。问题是当我制作 RGB 图像时,似乎出现了这种“白雾”。或者,我知道这张图片中的黑色区域应该是黑色的,但它们看起来是灰色的。G 图像中的果岭效果非常好。看起来整个图像上有一层白雾。我想也许这是设置 alpha 的问题?请注意,将 RBGA 中的 A 设置为 0 和 255 并没有解决问题。

这是一个图像示例——我会展示它,除非我没有足够的声望点。不幸的是,在这种情况下,一张图片值一千字……

这是我用来进行图像处理的代码:

任何帮助,将不胜感激。谢谢你。

0 投票
1 回答
9447 浏览

python - Log labels on colorbar matplotlib

I have a logarithmic imshow figure, and when the colorbar is created, its axis labels and ticks are logarithmic, but because of the short range (0-50) of the values, the colorbar looks like this:

enter image description here

and I would like it to instead show as 0, 5, 10, 20, 50 spaced along the axis (logarithmic spacing).

I can't seem to get this to work.

Thanks for any help.

0 投票
2 回答
294 浏览

image - 在Matlab中将图像颜色图更改为deuteranopia

很长一段时间以来,我一直在尝试使用自定义 256x3 颜色图来更改图像的颜色图,以将“正常视力”的人的印象切换到具有近视(红-绿-盲)的人可以看到的印象。

颜色图已经创建,但我无法将其应用于原始图像。

编码

效果不佳

没有。

有谁知道如何正确更改自定义颜色图?

非常感谢您的帮助!

0 投票
0 回答
508 浏览

python - 当我调用 imshow 时 Python 挂起

这段代码在我的 Windows 机器上运行得很好,但在 MacOSX 上,每当我调用 imshow 时它就会挂起(即使是在一个简单的数组上),图像窗口会弹出但它挂起。我正在使用pycharm。

有人知道这是为什么吗?难道我做错了什么?

0 投票
1 回答
1393 浏览

python - How to overlay an RGBA image on an RGB image in matplotlib

I have a set of RGB images (size (400,200,3)) that I'm animating using matplotlib.animation and I want to overlay an RGBA image (size (400,200,4)) on top of them. It seems that FFMPEG is choking on the alpha data that gets added when I overlay the second image using axes.add_image() (it works fine without the overlay). I was wondering if there is a way to overlay the second image and eliminate the alpha data before I pass it along to matplotlib.animation as I think this will solve the problem.

I'm using python 2.7.9 and matplotlib 1.4.2.

0 投票
1 回答
1261 浏览

matlab - Matlab GUI 轴从数据游标中提取位置

希望任何人都可以帮助我。

我尝试在我的 GUI 中加载和显示图像。之后我激活datacursormode。现在我想从我的数据游标对象中提取位置并将信息保存到全局变量中以处理这些数据。

这是我的代码:

在一个额外的 .m 文件中,我有像这样的“myupdatefcn”

谁能解释我如何做到这一点?

谢谢

0 投票
1 回答
180 浏览

matlab - 从情节和子情节中获取矩阵

我已经有一些我以前保存的图,像这样:

在此处输入图像描述

几天后,我需要这些图像的原始尺寸,以便将它们复制到我的论文中。我想提取这三个图像的主矩阵,以便用imwrite函数再次保存它们。

我在互联网上搜索了这个问题,但人们说我必须使用getframeframe2im功能。但是怎么做?我想要原始矩阵。谁能告诉我如何从matlab中的图形图像中提取主矩阵?

0 投票
2 回答
8732 浏览

python - 如何使用 OpenCV imshow 在没有键盘反馈的情况下循环显示最新图像

我正在 Python 中使用 OpenCV 运行图像处理循环,我想在我的imshow窗口中显示最新的图像掩码。因此,每当循环计算新掩码时,它都会更新imshow窗口(大约 6Hz)。imshow但是,如果不等待键盘中断,我就无法返回控制权。有什么建议么?有没有更好的库可以用来做这个?