Crop resulting image in Cascade object Detector
Mostrar comentarios más antiguos
I have trained positive and negative images in image labeller app and properly marked the ROIs. When the testing is done, the detector is detecting the ROI.What I want is to crop the resulting image thus showing only the ROI of the test image. How can this be done?
Respuestas (1)
Mahesh Taparia
el 17 de Sept. de 2020
Hi
The detector is returning the coordinates of the bounding box which is present in the image. It may be in the format of (x,y,h,w). You can store the image content of this bounding box into other variable and save it. For example:
newI=testI(x:x+w,y:y+h,:);
Categorías
Más información sobre ROI-Based Processing en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!