フィルターのクリア

High-level Application Use a for loop to generate successive images that make peppers.png appear to be glowing green. You may use the imsharpen() function.

2 ビュー (過去 30 日間)
High-level Application Use a for loop to generate successive images that make peppers.png appear to be glowing green. You may use the imsharpen() function

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 8 月 14 日
編集済み: KALYAN ACHARJYA 2019 年 8 月 14 日
"Use a for loop to generate successive images that make peppers.png appear to be glowing green."
Is this one?
image_test=imread('peppers.png');
green_panel=image_test(:,:,2);
max_i=4; % Decide as per your requiremnets
for i=1:0.25:max_i
green_panel=1.5*image_test(:,:,2);
image_result=cat(3,image_test(:,:,1)./i,max_i*image_test(:,:,2),image_test(:,:,3)./i);
figure, imshow(image_result);
end
Use of imsharpen() function, and see the differences, you can easily incorporate this too.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by