Crop resulting image in Cascade object Detector

1 visualizzazione (ultimi 30 giorni)
AKG
AKG il 14 Set 2020
Risposto: Mahesh Taparia il 17 Set 2020
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?

Risposte (1)

Mahesh Taparia
Mahesh Taparia il 17 Set 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,:);

Community Treasure Hunt

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

Start Hunting!

Translated by