how can i save the image and roi to train classifier

1 回表示 (過去 30 日間)
matlab22
matlab22 2016 年 4 月 11 日
回答済み: Dima Lisin 2016 年 4 月 14 日
i use this code
axes(handles.axes1)
h=imrect;
position = round(wait(h));
curImg=1;
I=imread(strcat(pathname, filename{k}));
[rows, columns, numberOfColorBands] = size(I);
% Crop image
I2 = imcrop(I,position);
figure;
imshow(I2);
data(curImg).imageFilename = I;
data(curImg).objectBoundingBoxes = position;
curImg = curImg + 1;
I select roi than i extract the position and i save the pathname and the position of the roi, when i use the struct data to train classifier it dosen't work, here is the code:
trainCascadeObjectDetector('Detector.xml',data,negativeFolder,'FalseAlarmRate',0.2,'NumCascadeStages',5);
i get struct with 2 field and 1 column rows are:imageFilename and objectBoundingBoxes.

回答 (1 件)

Dima Lisin
Dima Lisin 2016 年 4 月 14 日

カテゴリ

Help Center および File ExchangeImage Processing and Computer Vision についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by