Borrar filtros
Borrar filtros

Can i take output from viola jones algorithm

1 visualización (últimos 30 días)
AP
AP el 4 de Mayo de 2020
Respondida: Walter Roberson el 6 de Mayo de 2020
Hello everyone,
I need image output from viola jones algorithm. I have used Viola jones on gray image and result has square box around face regions in image. I need these detected face images for further processing.
how i should take out those detected faces and save it as image?
Thank you in advance.
  2 comentarios
Walter Roberson
Walter Roberson el 4 de Mayo de 2020
imcrop()
AP
AP el 6 de Mayo de 2020
Thank you sir. I have tried using imcrop but it's manual process. I want the output face detected from viola jones algorithm to be directly displayed as output. Please need help for this. Thank you.

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 6 de Mayo de 2020
When you step() the viola jones detector, you get an array of bounding boxes. You can loop through each row of the bounding box, passing the row to imcrop.
bbox = step(my_viola_detector_object, IMG);
nbox = size(bbox,1);
pieces = cell(nbox,1);
for K = 1 : nbox
pieces{K} = imcrop(IMG, bbox(K,:));
end

Community Treasure Hunt

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

Start Hunting!

Translated by