Interpolation method of IMAGE
7 ビュー (過去 30 日間)
古いコメントを表示
When the size of the data displayed by the image command differs from the number of pixels used on the screen, the data must be interpolated.
- Which method is used for this interpolation?
- A user-defined property to control this would be fine.
- If I want to create a user-defined interpolation, it would be convenient to let it be triggered automatically, when the image is resized - e.g. be resizing the figure or modifying the axes positions. What is a secure way to catch all methods of resizing? Can we attach a callback? Maybe in the Java level? (Hi Yair!)
0 件のコメント
回答 (2 件)
Jan
2021 年 12 月 23 日
1 件のコメント
Andreas Westlund
2022 年 5 月 2 日
Did you succeed in creating your own resize function? And would you mind sharing a code example?
yanqi liu
2021 年 12 月 24 日
yes,sir,may be default display size confused,such as
clc; clear all; close all;
x = zeros(640, 480, 3);
x(:, 1:2:end, :) = 1;
figure;
h=image(x);truesize
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Read, Write, and Modify Image についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


