Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

does face detection is used for animal also?

1 Ansicht (letzte 30 Tage)
nirai selvi
nirai selvi am 28 Dez. 2015
Geschlossen: Walter Roberson am 28 Dez. 2015
clear all clc %Detect objects using Viola-Jones Algorithm
%To detect Face FDetect = vision.CascadeObjectDetector;
%Read the input image I = imread('C:\Users\EIE52\Desktop\download (1).jpg');
%Returns Bounding Box values based on number of objects BB = step(FDetect,I);
figure, imshow(I); hold on for i = 1:size(BB,1) rectangle('Position',BB(i,:),'LineWidth',5,'LineStyle','-','EdgeColor','r'); end title('Face Detection'); hold off;

Antworten (0)

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by