Filling a part of binary image with zeros
3 ビュー (過去 30 日間)
古いコメントを表示
How to fill a part of binary image using zeros
i used
BW2(2:202,112:339)= zeros(201,268);
But the result gives me a larger image than the input image and not filled properly with 0's
0 件のコメント
回答 (1 件)
Image Analyst
2013 年 4 月 7 日
Don't use a double array, just use a logical:
BW2(2:202,112:339)= false;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!