Effacer les filtres
Effacer les filtres

Cut an area in the image

2 vues (au cours des 30 derniers jours)
nomad nomad
nomad nomad le 31 Mai 2012
Hey everyone;
In fact my problem is I have an image that I want to automatically remove black areas as shown in attachment. http://www.casimages.com/img.php?i=120531055451175771.png What I meant exactly what is extracting the part surrounded by yellow, so I can do processing on that image.
I thought imcrop, but in this case, the selection must be done manually.
thank you

Réponses (3)

Andrei Bobrov
Andrei Bobrov le 31 Mai 2012
use function imcrop from Image Processing Toolbox

Elad
Elad le 31 Mai 2012
you can choose top left and bottom left boundaries using range=ginput(2); and then image=image(range(1,2):range(2,2),range(1,1):range(2,1),:);

Image Analyst
Image Analyst le 31 Mai 2012
What I would do, assuming your corners of your sheared image touch the borders of the image are to scan each edge of the image looking for non-zero pixels. Then sort the row values and sort the column values of the corner locations. Then you want to go between the 2nd and 3rd values.
row1 = sortedRows(2);
row2 = sortedRows(3);
col1 = sortedCols(2);
col2 = sortedCols(3);
% Now crop
height = row2-row1+1;
width = col2-col1+1;
croppedImage = imcrop(fullImage, [col1, row1, width, height]);
  2 commentaires
nomad nomad
nomad nomad le 1 Juin 2012
The image is the output of a program that the projective transformation of an input image and since I have no prior knowledge of the shape of the image, I can not define the coordinates.
Image Analyst
Image Analyst le 1 Juin 2012
So what? You don't need to. Just scan the borders, like
leftColumn = fullImage(:, 1); % Get column 1
% Find where it's non-zero:
upperLeftRow = find(leftColumn >0, 1, 'first');
Similar for the other 4 corners that touch the border. Where in that are you required to have prior knowledge of any transform that was used to warp the image?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by