フィルターのクリア

How to remove white background from image

13 ビュー (過去 30 日間)
Fateme Jalali
Fateme Jalali 2016 年 7 月 28 日
編集済み: Image Analyst 2016 年 7 月 28 日
Hello,I want to know how to remove white background completely from this image.what is the way?

採用された回答

Image Analyst
Image Analyst 2016 年 7 月 28 日
編集済み: Image Analyst 2016 年 7 月 28 日
I'd use min() to get the min in all three color channels. Then use bwareafilt() to get just the largest blob. This will be the rectangle. You can use find to find the first and last row and column and finally crop the image, something like this untested code.
grayImage = min(rgbImage, [], 3);
binaryImage = grayImage < 200;
binaryImage = bwareafilt(binaryImage, 1);
[rows, columns] = find(binaryImage);
row1 = min(rows);
row2 = max(rows);
col1 = min(columns);
col2 = max(columns);
% Crop
croppedImage = rgbImage(row1:row2, col1:col2, :);

その他の回答 (1 件)

Stalin Samuel
Stalin Samuel 2016 年 7 月 28 日
refer here for related discussions

カテゴリ

Help Center および File ExchangeGeometric Transformation and Image Registration についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by