I have a camera that is looking diagonally to a ground plane. this plane is calibrated. there is a object on this plane, that can be at any distance (within the field of view of the camera), but will always be rotated towards the camera.. (not at an angle to the side..)
I want to measure the height of this object. I can detect the location of the lower edge, were it touches the ground plane. Is it possible to sort of "erect a measuring plane" perpendicular to the ground plane in a defined position in order to measure vertically? If yes, how can this be done?
EDIT:
so far I came up with this:
newpose := Pose
newpose[3] := newpose[3]-90
gen_plane_object_model_3d (newpose, [-0.5,-0.5,0.5,0.5], [-0.5,0.5,0.5,-0.5], ObjectModel3D)
disp_object_model_3d (3600, ObjectModel3D, CamParam, [], [], [])
this create a plane that is 90° rotated on the X axis of my ground plane. So far so good.. but cannot figure out where teh coordinates are now.. where 0/0 is, and how to move it along the ground plane as shown in the picture above.