Replies: 1 comment 1 reply
-
Hey Sergei, this is already possible for both linear and non-linear operations!
will print:
this is a |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
It would be nice to have a possibility to return the linear transform by
align_with_landmarks
function inpointcloud.py
. It may then be re-used with.apply_transform
on other objects too. For instance, I fit a mesh to an imageimg
of its rotated view, then apply the inverse transform to the camera showingImage(img)
to find the position of the camera in the original mesh space which gives the same view as onimg
. I am going to describe this in Discussion soon.Technically, I suggest adding argument
return_transform=False
in the function call and returnlmt
at coming to the last 3 lines of the code if it isTrue
.I wonder if the non-linear transform can be returned from
warp
function too. It can then be saved and applied later.Beta Was this translation helpful? Give feedback.
All reactions