DLT icon indicating copy to clipboard operation
DLT copied to clipboard

An implementation of Direct Linear Transform for 3D to 2D mapping.

Results 2 DLT issues
Sort by recently updated
recently updated
newest added

When flattening H in [line 102](https://github.com/acvictor/DLT/blob/2c6f5d8f70cf215708a397aa7ee654dd05cefa54/DLT.py#L102), I get `TypeError: order must be str, not int`. From the [documentation](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.flatten.html) a letter must be provided indicating wether to flatten in column-major or...

The np.std() function computes the standard deviation over all the entries of the flattened matrix. So for instance, given an array `a = np.array([[1,2],[3,4],[5,6]])`, the std is computed over the...