how can i slove this problems ''OnBarcode' is not recognized as an internal or external command, operable program or batch file. ' while running the program
Afficher commentaires plus anciens
vid = videoinput('winvideo', 1);
preview(vid);
img = getsnapshot(vid);
imshow(img)
str = sprintf('OnBarcode QR Code Scanner.exe %s', img);
system(str);
after executing this program how can i slove this proplem?
Réponses (2)
Walter Roberson
le 22 Juil 2017
You probably also need to change
str = sprintf('OnBarcode QR Code Scanner.exe %s', img)
to
str = sprintf('"OnBarcode QR Code Scanner.exe" %s', img)
xingxingcui
le 7 Fév 2021
Modifié(e) : xingxingcui
le 7 Fév 2021
0 votes
Catégories
En savoir plus sur Introduction to Installation and Licensing dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!