トリム画像へ外枠を追加した場合に枠がずれることを回避する
2 views (last 30 days)
Show older comments
トリムした画像にinsertShapeで外枠を追加すると、画像の外周と追加した枠がずれるのですが、解決方法はないでしょうか? insertShape以外の描画方法でもよいです。
0 Comments
Accepted Answer
交感神経優位なあかべぇ
on 30 Jun 2023
InsertShapeのヘルプにある例の画像で、ピーマンのヘタ部分の画像をトリムして、画像の外周を追加してみました。
imshow("peppers.png"); % 元画像の表示
I = imread("peppers.png");
trimI = I(245:315,115:185,:); % ピーマンのへた部分の画像部分をトリム
RGB = insertShape(trimI,"rectangle",[1 1 71 71],LineWidth=2,Color='green');% InsertShapeで外周を追加
imshow(RGB);
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!