
How to add a black border to a Title ploted
5 ビュー (過去 30 日間)
古いコメントを表示
Hello ,
I'm trying to add a black border around the yellow title letters to better visibility, is that possible?.
Thanks.
Yuliano

0 件のコメント
回答 (1 件)
KALYAN ACHARJYA
2019 年 8 月 17 日
編集済み: KALYAN ACHARJYA
2019 年 8 月 17 日
You can do it in multiple ways
image1=imread('test_image.png');
image1(:,1:20,:)=0;
image1(:,end-20:end,:)=0;
image1(1:20,:,:)=0;
image1(end-20:end,:,:)=0;
imshow(image1)

参考
カテゴリ
Help Center および File Exchange で Labels and Styling についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!