You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working with data where I frequently also need to apply the inverse transform, i.e target->source instead of source->target. I was wondering if you would consider adding functionality for this? E.g. by implementing a __neg__ method for the transforms.
Best,
Philipp
The text was updated successfully, but these errors were encountered:
sorry @schlegelp I didnt see this before. I hoped you found a solution.
For you & @vinceTapioca here is a gist on how you could do this yourself using the package as it is. Note that this method is written for rigid, but it should work just fine for affine with some tweaks (I made comments). It wont work for deformable - its less trivial to do it for deformable.
Hi! First off: Thanks for this great library!
I'm working with data where I frequently also need to apply the inverse transform, i.e
target->source
instead ofsource->target
. I was wondering if you would consider adding functionality for this? E.g. by implementing a__neg__
method for the transforms.Best,
Philipp
The text was updated successfully, but these errors were encountered: