remove the blank area surrounding the figure

4 ビュー (過去 30 日間)
Jimmy Liang
Jimmy Liang 2019 年 5 月 23 日
コメント済み: Adam Danz 2019 年 5 月 28 日
My objective is to creat checkerboard and assign different values to white and black squares, the code is showed below. How can I I remove the blank area surrounding the figure, which means to enable the figure to fill the whole window. Thank you!!
K = checkerboard(500,1,1);
K(K>0)=1;
figure
imshow(K)
mask = K > 0;
K(mask) = 10;
K(~mask) = 100;

採用された回答

Adam Danz
Adam Danz 2019 年 5 月 23 日
編集済み: Adam Danz 2019 年 5 月 24 日
"How can I I remove the blank area surrounding the figure, which means to enable the figure to fill the whole window"
If you're refering to the figure window, here's a solution.
fh = figure();
fh.Position(3) = fh.Position(4); %make figure square
ax = axes('Units','Normalize','Position',[0 0 1 1]); %set axes to fill figure
K = checkerboard(500,1,1);
K(K>0)=1;
imshow(K,'Parent', ax) %specify axes
  3 件のコメント
Jimmy Liang
Jimmy Liang 2019 年 5 月 25 日
thank you very much guys.
one more little question, because I have assigned values in the checkerboard, if I want to save these values when I save the checkerboard image, do I need particular code or command? or just save the image and the values will be inside?
Adam Danz
Adam Danz 2019 年 5 月 28 日
How are you assigning values in the checkerboard? Where are those values stored? Whatever values are stored in the figure (or axes) properties will be retrievable if you save the figure and reopen it.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGraphics Object Properties についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by