- You say that the point is "right in front of the camera" and that Y represents the distance from the camera to the house. Doesn't that mean that the y coordinate of the point should be positive while (x,z) should both be approximately equal to camx and camz? This is not the case with the data you've shown.
- If the Y axis points from the camera to the house, then the R matrix should not be identity. The first and second columns of R should point along the w-axis and h-axis of your image respectively. But with R=eye(3), the second column of R is instead pointing along the Y-axis toward the house and not along your h-axis.
- The camera parameter t should not depend on any particular (x,y,z). I think you meant instead to have,
Pixel position is bigger than image dimension or negative using pinhole camera model
2 次查看(过去 30 天)
显示 更早的评论
Hi there
I am having a problem with a simple code that uses the pinhole camera model. The problem is when I am trying to locate the pixel position in the image plane of a certain point in the scene it gives me weird results such as negative value or a number byend the image dimension. here is my code where x,y and z are the coordinate of the point I am interested in camx,camy and camz are the coordinate of the camera in the scene all in mm.Image resolution has 1440* 960 pixels (width *height), focal length is 40 mm. rotation matrix is identity because the camera is facing the scene as shown in the image . From the coordination above, the point should be right infront of the camera (Y is the distance from the camera to the house, X is right in the middel of the front view of the hous and z is the height of the camera as shown in the image below) and as a result the pixels should be roughly in the middle of the image but the results is [w,h]= [2970.6, 636.2].
I think i am doing something wrong in the translation matrix but i cant know what is ,
any help please
x=1.067621626992524e+03;
y=-3.718505419300001e+03;
z=2848.17;
camx=-1871.14;
camy=-7763.71;
camz=2848.17;
F=40; % in millimetere
Pixelox=720;
Pixeloy=480;
Pixelx=0.025 ;
Pixely=0.025;
K=[F/Pixelx 0 0;0 F/Pixely 0;Pixelox Pixeloy 1];
R= [1 0 0;0 1 0;0 0 1];
t=[ x-camx y-camy z-camz];
P=[R;t]*K;
tem= [x y z 1]*P;
w=tem(1)/tem(3);
h=tem(2)/tem(3);
0 个评论
采纳的回答
Matt J
2018-12-28
编辑:Matt J
2018-12-28
Here are a few errors that I can deduce from your description:
t= [-camx,-camy,-camz].
6 个评论
Matt J
2019-2-13
编辑:Matt J
2019-2-13
it should be (680.447)
You have some choices. You could make this change,
R =
1 0 0
0 0 1
0 1 0
although this gives you a non-right handed set of camera axes. Alternatively, you could set F=-40, thereby treating the imaging plane as though it were behind the camera (personally, I might do the latter).
also, what happened if the camera position is behind the scene? for example, in the same code assume that we swapped CamX with X?
If you don't want to allow F to be negative, then the third column of R must point from the camera center toward the imaging plane. The first two columns, as before, must be aligned with your 2D image axes.
更多回答(2 个)
Image Analyst
2018-12-29
Not sure what you mean by "Y is the distance from the camera to the house, X is right in the middel of the front view of the hous and z is the height of the camera as shown in the image below" Isn't x and y the distances from the optic axis? If not, did you define a new frame of reference where the optic axis is not at (0, 0)? (This would complicate things.)
You say "x,y and z are the coordinate of the point I am interested in camx,camy and camz are the coordinate of the camera in the scene". Let's get this straight. Which set is in the scene (in front of the pinhole) and which set is in the "focal plane" which is where the image from the scene is landing?
Also you specify both of those so that pretty much nails everything else down.
You say "F=40; % in millimetere" but for a pinhole camera, there is no focal length. It's pinhole, so everything is in focus everywhere, regardless of how far behind the pinhole it is.
Also what's this talk about a rotation matrix? Since it's pinhole camera, why would there be any rotation? If the scene and focal plane were parallel, there would be no rotation matrix. Is your scene a plane and either your scene or focal plane not normal to the optic axis?
What are you trying to figure out exactly? h? w? R?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Support Package for USB Webcams 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!