What the problem with this code of cropping image ?

Hi all
I have apply this code to crop my images in any sizes
B = imread('bar5.jpg');
B = imresize(B,0.33);
B2 = im2bw(B1);
stat = regionprops(I,'area');
C(1:length(stat)) = stat(1:end).Area;
m = max(C);
J = bwareaopen(I,m);
imshow(J);
and I got this message
??? Undefined function or variable 'I'.
so any ideas
sorry I'm new in matlab
I want learning
Thanks

 Akzeptierte Antwort

Weitere Antworten (2)

M.aM
M.aM am 26 Jul. 2012

0 Stimmen

Thank you Walter but why it did not cropped image do you know? should I put the size of image ??? but I need it to apply for unknown image Thanks once again

1 Kommentar

Ryan
Ryan am 27 Jul. 2012
Bearbeitet: Ryan am 27 Jul. 2012
There is nothing in the code to suggest the image was cropped in any way, just resized.

Melden Sie sich an, um zu kommentieren.

Image Analyst
Image Analyst am 27 Jul. 2012

0 Stimmen

You can do this:
stat = regionprops(B2,'area');
allAreas = [stat.Area];
maxAreas = max(allAreas);
You didn't do any cropping (perhaps you meant "size filtering" instead). You just took your image and threw away all the objects smaller than the largest object by using bwareaopen(). In other words, you threw EVERYTHING away.

Kategorien

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by