简体   繁体   English

使用倍频程显示 2 个带有 2 个 windows 的图像

[英]Displaying 2 images with 2 windows using octave

I want to display the images with the independent windows.我想用独立的 windows 显示图像。

The below code doesn't satisfy the requirement.下面的代码不满足要求。

green = imread("green.bmp");

blue = imread("blue.bmp");

imshow(green);

pause(10);

imshow(blue);

pause(10);

Is it able to do that?它能够做到吗?

Add figure to achieve it.添加figure来实现它。

green = imread("green.bmp");

blue = imread("blue.bmp");

imshow(green);

figure();

imshow(blue);

pause(10);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM