Converting livestream RGB video to gray scale

조회 수: 6 (최근 30일)
Jose
Jose 2022년 7월 4일
댓글: Image Analyst 2022년 7월 5일
Hello I am wondering if it is possible to convert a livestream RGB into grayscale while still remaining in live video
this is what i have so far to obtain live video however I am stuck on how to make gray scale
or how to put the live video on a plot
cam = webcam
preview(cam)

채택된 답변

Image Analyst
Image Analyst 2022년 7월 4일
편집: Image Analyst 2022년 7월 4일
After you call videoinput set ReturnedColorSpace to 'grayscale'.
vidobj = videoinput(theVideoAdaptor, cameraDeviceID, selectedCameraFormats{selectedFormatIndex});
vidobj.ReturnedColorSpace = 'grayscale';
  댓글 수: 6
Jose
Jose 2022년 7월 5일
hmm do you think it can work on my internal laptop camera?
Image Analyst
Image Analyst 2022년 7월 5일
Maybe - with my Logitech demo you might have to debug it and figure out what the adapter name of your camera is and replace Logitech with your computer camera's name.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by