How to close the webcam after the image has been captured?
27 views (last 30 days)
Show older comments
My webcam doesn't close after the execution of program. I need to close Matlab each time to close the webcam. I am using Matlab 2017a.
Answers (2)
Nithin Banka
on 5 Jun 2018
Edited: Nithin Banka
on 5 Jun 2018
If the webcam object you are using to capture images is say 'camObject' use the below command to close the webcam
clear camObject;
Acquire Images from Webcams - This documentation about acquiring images using webcam might come in handy for your work.
0 Comments
Johan Sebastian
on 13 May 2023
clear all
1 Comment
bob pang
on 22 May 2023
this line can't release webcam:
clear camObject;
you should use :
clear all
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!