Please,How can i programming this in matlab i meane texture masking thank you.Sorry about my English

1 回表示 (過去 30 日間)

採用された回答

Image Analyst
Image Analyst 2015 年 4 月 15 日
Yes, that is a bad question. It's ambiguous - it says that a sliding 3x3 window is used but then it also says a window that is (2*L+1) by (2*L+1) is used. That can't be unless L = exactly 1. It's contradictory for any other value of L. In general, assign your L, assign your kernel, then call conv2()
L = 1; % or any odd number.
windowWidth = 2 * L + 1;
kernel = ones(windowWidth)/windowWidth^2;
iBar = conv2(double(grayImage), kernel, 'same');
TM = abs(double(grayImage) - iBar);
imshow(TM, []);

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by