I have an image where I want to get region per region from the same using BoundingBox on MATLAB, this is the example where I use BoundingBox:
Ic=regionprops(logical(I3),'BoundingBox');
Where I3 is the image that I want to get region per region and then display region per region, the unique thing that I know about BoundingBox is that in my case, Ic is the variable where they saved the regions from the I3 Image that are 103 field or region, but I don't know how to display region per region in different figure, I understand that doing that, MATLAB will show 103 figures, I dont have any problem with that.