フィルターのクリア

Detecting white color in moving video

3 ビュー (過去 30 日間)
KDN
KDN 2015 年 11 月 8 日
コメント済み: Image Analyst 2015 年 11 月 9 日
What change I have to do in given code below to detect white color from video and get it's brightness.
snap_red = imsubtract(snap(:,:,1), rgb2gray(snap));

回答 (1 件)

Image Analyst
Image Analyst 2015 年 11 月 8 日
hsvImage = rgb2hsv(double(rgbImage));
h = hsvImage(:,:,1);
s = hsvImage(:,:,2);
v = hsvImage(:,:,3);
whitePixels = s < 0.2 & v > 0.8;
or something like that.
whitePixels is a binary image, or "mask". Feel free to modify the parameters.
See my demo where I track a green Sharpie pen.
  2 件のコメント
KDN
KDN 2015 年 11 月 9 日
編集済み: KDN 2015 年 11 月 9 日
Thanks nice work, but I am getting error while running video.
Image Analyst
Image Analyst 2015 年 11 月 9 日
It works for me. Was that for my demo video, or for one of yours? If you put a breakpoint on this line and execute it,
% Setup other parameters
numberOfFrames = videoObject.NumberOfFrame;
what does it say numberOfFrames is? Is the videoObject a valid object?

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

カテゴリ

Help Center および File ExchangeLanguage Support についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by