Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
关于文档页面imopen上显示的以下 MATLAB 语句:
imopen
figure, imshow(I_opened, [])
figure声明中的含义和[]含义是什么?
figure
[]
figure()创建一个新窗口。
figure()
关于您的其他问题 - 取自手册:
imshow(I,[low high]) 显示灰度图像 I,... 如果使用空矩阵 ([]) 表示 [low high],imshow 使用 [min(I(:)) max(I(:) )]; 即I中的最小值显示为黑色,最大值显示为白色