Image edge to black
1 回表示 (過去 30 日間)
古いコメントを表示
Hi,
Anyone develop algorithm to change the outer pixel(edge) become full black ? like a frame.
Thanks
1 件のコメント
採用された回答
Image Analyst
2012 年 8 月 21 日
How about
imageArray(1,:) = 0;
imageArray(end,:) = 0;
imageArray(:,1) = 0;
imageArray(:,end) = 0;
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!