Error in webcam_obj​ect_classi​fication when using full HD webcam

2 visualizaciones (últimos 30 días)
hana razak
hana razak el 5 de Feb. de 2019
Editada: hana razak el 5 de Feb. de 2019
Hi,
I got trouble to use a full HD stream webcam in MATLAB R2018a. Here are the coding,
clear
% Connect to the camera
camera = webcam;
% Load the detector
load('detector1k')
% Preview video stream from the device
while true
picture = camera.snapshot; % Take a picture
label = classify(detector1k, picture); % Classify the picture
image(picture);
title(char(label));
end
and the error,
Dot indexing is not supported for variables of this type.
Error in webcam_object_classification (line 13)
picture = camera.snapshot; % Take a picture
Any kind of help will be appreciated. Thank you.

Respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by