cropping image
1 回表示 (過去 30 日間)
古いコメントを表示
how to crop image according to value x(column) and y(row)? i want to crop image and group it according to same row or same column.
0 件のコメント
採用された回答
Image Analyst
2012 年 4 月 6 日
To crop you can use imcrop(), or simply use indexing:
croppedImage = fullImage(row1:row2, col1:col2);
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!