MATLAB File Help: cv.convertPointsFromHomogeneous Index
cv.convertPointsFromHomogeneous

Converts points from homogeneous to Euclidean space

dst = cv.convertPointsFromHomogeneous(src)

Input

Output

The function converts points homogeneous to Euclidean space using perspective projection. That is, each point (x1, x2, ..., x(n-1), xn) is converted to (x1/xn, x2/xn, ..., x(n-1)/xn). When xn=0, the output point coordinates will be (0,0,0,...).

See also