how to extract an image and resize it?
1 回表示 (過去 30 日間)
古いコメントを表示
回答 (1 件)
Image Analyst
2015 年 2 月 5 日
編集済み: Image Analyst
2015 年 2 月 5 日
Take the vertical and horizontal profiles and then use find() to find the bounding box
verticalProfile = mean(grayImage, 2);
horizontalProfile = mean(grayImage, 1);
topRow = find(verticalProfile, 1, 'first');
bottomRow = find(verticalProfile, 1, 'last');
leftColumn= find(horizontalProfile, 1, 'first');
rightColumn = find(horizontalProfile, 1, 'last');
croppedImage = grayImage(topRow:bottomRow, leftColumn:rightColumn);
[rows, columns, numberOfColorChannels] = size(croppedImage);
if rows ~= 512 || columns ~= 512
croppedImage = imresize(croppedImage, [512,512]);
end
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!