MATLAB: Help with bwboundaries() function

bwboundariesdigital signal processingimage processingImage Processing Toolbox

i use this code it run well but i cant isolate the area i selected
how i cant do that
I = imread('tamp9f.png');
Icrop = imcrop(I);
bw = im2bw(Icrop);
imshow(bw); pause;
Ifill = imfill(bw,'holes');
imshow(Ifill); pause;
Iarea = bwareaopen(Ifill,10000);
imshow(Iarea); pause;
boundary = bwboundaries(Iarea);
b = boundary{1};
imshow(Ifill); hold on;
plot(b(:,2),b(:,1),'g','LineWidth',3);

Best Answer

Please define "isolate".