I am doing my research in automatic image annotation. I tried by using vision toolbox, but able to solve only for one object. how to proceed for multiple objects
Mostrar comentarios más antiguos
my code for identifying cats in an image.
load('cats.mat');
imDir = fullfile(matlabroot,'toolbox','vision','visiondemos','cats');
addpath(imDir);
negativeFolder = fullfile(matlabroot,'toolbox','vision','visiondemos','non cats');
trainCascadeObjectDetector('stopSignDetector.xml', data, negativeFolder, 'FalseAlarmRate', 0.2, 'NumCascadeStages', 5);
trainCascadeObjectDetector('cats.xml', data, negativeFolder, 'FalseAlarmRate', 0.2, 'NumCascadeStages', 5);
img = imread('test1.jpg');
detector = vision.CascadeObjectDetector('cats.xml');
bbox = step(detector, img);
detectedImg = insertObjectAnnotation(img,'rectangle', bbox, 'cat');
figure; imshow(detectedImg);
rmpath(imDir);
2 comentarios
Nomi khan
el 25 de Jul. de 2014
Dear harini , im also working on AIA research, can u please share details of your work done with me at nouman.ali@live.com hope that we can help each other
Respuestas (1)
Dima Lisin
el 1 de Mayo de 2014
0 votos
You would need a separate detector for each object category.
1 comentario
Datti Nagadhara Harini
el 15 de Jul. de 2014
Categorías
Más información sobre Point Cloud Processing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!