How can i adjust brightness of a live video in image acquisition?

6 ビュー (過去 30 日間)
Sanjay Yadav
Sanjay Yadav 2017 年 1 月 20 日
コメント済み: Rena Berman 2021 年 5 月 6 日
I am using the Image Acquisition Toolbox to create a simple interactive GUI that should allow the user to preview the image and dynamically adjust the brightness of the video feed.
I'm using a slider to adjust the value of brightness between(-64 to 64), code looks like this:
vid = videoinput('winvideo',1);
src = getselectedsource(vid);
preview(vid);
bri = get(handles.BrightnessSlider,'Value');
if(bri > -65 || bri < 65 )
stoppreview(vid);
src.Brightness = bri;
preview(vid);
end
Problem here is that brightness isn't changing when I move the slider, the value on slider does change.
Please help me solving this error. Thanks in advance.

回答 (1 件)

Walter Roberson
Walter Roberson 2017 年 1 月 20 日
MATLAB does not use {} for code blocks.
  1 件のコメント
Sanjay Yadav
Sanjay Yadav 2017 年 1 月 20 日
Thanks, I didn't notice that. But there is still a problem. Maybe in logic this time.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLogical (Boolean) Operations についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by