how to track objects in a live video

6 ビュー (過去 30 日間)
Aiman Zara
Aiman Zara 2023 年 3 月 19 日
回答済み: Image Analyst 2023 年 3 月 20 日
By using this code, when I show the image of the object in a phone it tracks its name but when i show a video then it can not identify the object, what's wrong in the code. I think I am going wrong in the third line i-e (snapshot(camera)). Please help me what to add or remove in this code.
camera = webcam; % Connect to the camera
load("trained filename")
im = snapshot(camera); % Take a picture
image(im); % Show the picture
im = imresize(im,[224 224]); % Resize the picture for alexnet
label = classify(netTransfer,im); % Classify the picture
title(char(label)); % Show the class label

回答 (1 件)

Image Analyst
Image Analyst 2023 年 3 月 20 日

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by