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