gpt4 book ai didi

image - Matlab - 在 imagesc 中自动设置比例

转载 作者:行者123 更新时间:2023-12-02 02:09:05 25 4
gpt4 key购买 nike

我正在尝试比较我通过 matlab imagesc 创建的绘图,因此需要颜色限制与较高的颜色限制相同。

我尝试挖掘,但找不到简单的方法来做到这一点,或者至少在不打开颜色图编辑器的情况下找出限制。

非常感谢您的帮助!

阿隆。

最佳答案

您可以使用 caxis

设置色标的限制
img1 = randn(100);
img2 = rand(100);

%# find global min/max
clim(1) = min(min(img1(:)),min(img2(:)));
clim(2) = max(max(img1(:)),max(img2(:)));

figure
ah1 = axes;
imagesc(img1)
caxis(ah1,clim)

%# show the other figure set the same limits to colormap
figure
ah2 = axes
imagesc(img2);
caxis(ah2,clim)

关于image - Matlab - 在 imagesc 中自动设置比例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13690127/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com