3

imshow別の によって更新されると、図 ( によってプロットされた) の画像のサイズが変わるのはなぜimshowですか?

デモコード:

img = rand(100,100);
figure(1);
hold on;
imshow(img); % plot an image
pause(1);    % pause for demonstrational reasons
imshow(img); % update the image

これは、最初の更新時にのみ発生します。

4

2 に答える 2

-2

画像はサイズを変更していません。これは、次のように入力して確認できます。

img = rand(100,100);
figure(1);
hold on;
whos img
pause(5);   
whos img

以下が結果になります。

Name        Size             Bytes  Class     Attributes

  img       100x100            80000  double              

  Name        Size             Bytes  Class     Attributes

  img       100x100            80000  double  
于 2013-08-14T17:05:36.200 に答える