I have a project that requires 3D pose detection, in real world coordinates, and I am basing my work off the DepthAI Blazepose project (geaxgx/depthai_blazepose). While browsing the code, I came across this curious comment block:
Beware, the y value of landmarks_world coordinates is negative for landmarks above the mid hips (like shoulders) and negative for landmarks below (like feet). The y value of (x,y,z) coordinates given by depth sensor is negative in the lower part of the image and positive in the upper part.
Is there a mistake in the first sentence? How can Y coordinates be negative for both landmarks below AND above the mid hips? Should the sentence not read:
...the y value of landmarks_world coordinates is negative for landmarks above the mid hips (like shoulders) and POSITIVE for landmarks below (like feet)