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!