How to remove white background from image
    조회 수: 7 (최근 30일)
  
       이전 댓글 표시
    
Hello,I want to know how to remove white background completely from this image.what is the way?

댓글 수: 0
채택된 답변
  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, :);
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Image Processing and Computer Vision에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


