필터 지우기
필터 지우기

How Do I set Camera Exposure in MATLAB?

조회 수: 60 (최근 30일)
jim
jim 2011년 4월 4일
댓글: KAE 2019년 3월 11일
Hi, I was trying to adjust the exposure for my webcamera, I looked on my image Acquisition toolbox and when i adjust the exposer on there it seems to use the command 'src.Exposure = 10;' (for when you want the exposure to be 10)
I wanted to set my camera exposure to say 20, and i used the same idea but it doesnt seem to work? I tried it for other numbers eg, 60, 100 etc but it seems there is no affect.
Bellow shows the code i am using to test it.
imaqhwinfo ('winvideo', 1);
video = videoinput('winvideo',1,'RGB24_640x480');
src.Exposure = 20; % changes exposure
preview(video); %Launches video preview window

채택된 답변

Walter Roberson
Walter Roberson 2011년 4월 4일
What is src in your code? Do you mean video.Exposure ?
  댓글 수: 2
jim
jim 2011년 4월 4일
편집: Walter Roberson 2019년 3월 9일
Hi, thanks for the reply i used this in the end.
vid = videoinput('winvideo', 1, 'RGB24_640x480');
src = getselectedsource(vid);
vid.FramesPerTrigger = 1;
preview(vid);
src.Exposure = 20;
KAE
KAE 2019년 3월 11일
If you are having trouble I recommend troubleshooting with imaqtool which will list the command line commands as you change something like the exposure time.
This let me discover that I needed to add a ExposureTimeControl command before I changed the exposure time,
vid = videoinput('winvideo', 1, 'RGB24_640x480'); % Actually a different camera
src = getselectedsource(vid);
src.ExposureTimeControl = 'normal'; % Needed to alter the exposure time
src.ExposureTime = 2.0;
Also the units of ExposureTime are seconds...just mentioning this because it is not specified on the imaqtool GUI.

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by