how to get started with training image labeler?
Mostra commenti meno recenti
Hi everyone,
I'm a newbie to Matlab and I need to use "computer vision" for "trainCascadeObjectDetector". I have two options, either to use Cascade trainer or training image labeler app, which one is better? I tried to use training image labeler and I got .mat file exported after but I don't know what is the next step. any help will be appreciated!
When I clicked generate Matlab code I got the following code:
function importfile(fileToRead1)
%IMPORTFILE(FILETOREAD1)
% Imports data from the specified file
% FILETOREAD1: file to read
% Auto-generated by MATLAB on 29-Oct-2015 19:09:24
% Import the file
newData1 = load('appleSession-mat', fileToRead1);
% Create new variables in the base workspace from those fields.
vars = fieldnames(newData1);
for i = 1:length(vars)
assignin('base', vars{i}, newData1.(vars{i}));
end
When I run it I got the following error:
>> importfile
Not enough input arguments.
Error in importfile (line 9)
newData1 = load('appleSession-mat', fileToRead1);
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Image Segmentation and Analysis in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
