video stream height measurement

8 ビュー (過去 30 日間)
M DINESH
M DINESH 2013 年 1 月 23 日
i m working on video analysing program where i have to measure the height of the incoming video stream object, Now i took the video stream into the matlab. I couldnt do the measurement part .Can u pls help me with this analysing part.
  4 件のコメント
Jack Sparrow
Jack Sparrow 2013 年 1 月 23 日
I think you need to know atleast the intrinsic or extrinsic parameter of the camera or atleast have an object in the reference area. I'm currently working on something close to this for my M.Sc but i'm stalk at calculating the vanishing point in the image after getting the vanishing lines.
M DINESH
M DINESH 2013 年 1 月 23 日
since my camera parameters are remain constant and also the reference object is located in the same distance. e.g.: I am lighting an candle from a fixed distance from a camera and i want to measure the height of the flame as a real time data. I m capturing the video and i m converting it to a image file and i m struck in measuring the flame height and plotted in an scaled graph like histogram

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

採用された回答

M DINESH
M DINESH 2013 年 1 月 23 日
the object will be in the same distance. The object height varies(withn the known region) and it has to be measured.

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2013 年 1 月 23 日
Provided that the same aperture will always be used, since the object will always be at the same distance, the easiest way to proceed would be to start by inserting an object of known size into the scene, taking an image of it, and finding the height in pixels of the known real-world height. Once you have the height in pixels, you can trivially calculate a scaling factor between pixels and real-world.
After that, it just becomes a matter of figuring out the size in pixels of each presented object, and multiplying that by the real-world scale factor previously calculated. As long as nothing changes (e.g., distance does not change.)
  16 件のコメント
M DINESH
M DINESH 2013 年 1 月 25 日
kndly look into one of the image in below link.
Walter Roberson
Walter Roberson 2013 年 1 月 25 日
That seems to be an empty image.

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


M DINESH
M DINESH 2013 年 1 月 25 日
編集済み: Walter Roberson 2013 年 1 月 25 日
im=imread('*.jpg');
red=im(:,:,1);
green=im(:,:,2);
blue=im(:,:,3);
light=red>200&green>200&blue>200;
[x,c]=find(light);
x2=max(x);
x1=min(x);
y2=max(c);
y1=min(c);
x2
774
x1
9
y2
765
y1
10
Warning: Image is too big to fit on screen; displaying at 56% scale.
this is the answer i got for pixel measurement.
  13 件のコメント
Walter Roberson
Walter Roberson 2013 年 1 月 28 日
set(handles.staticText, 'String', num2str(x2));
I have not bothered to analyze the image you posted to figure out whether the pixel measurements are right. I suggest that you display the image and draw vertical bars at min(y) and max(y) to see whether the results look reasonable.
M DINESH
M DINESH 2013 年 2 月 11 日
i have bought an video capture card and i m trying to install adapter in the matlab. i have used imaqregister ,but i couldn't get the dll file.

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

Community Treasure Hunt

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

Start Hunting!

Translated by