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
{{ message }}
This repository has been archived by the owner on Jul 21, 2021. It is now read-only.
I am a little bit confused how the weighting is done of each input element of the deformed kernel in your implementation.
In your implementation it looks like you are first calculating the offsets and with these rearrange the input in the ConvOffset2D module (so ConvOffset2D just outputs the rearranged features according to the learned offsets). After that, on the rearranged feature maps you apply a normal Conv2D, which should then do the actual weighting for the deformed kernel, right?
Is this the same as in the original paper where I understand it that way that the weighting is applied directly to the deformed input elements (kernel elements with offsets) , like
sum_p_n[ w(p_n) * x(p_0 + p_n + p_delta)]
I don't see if this is the same or if this has a different assumption on deformable confolutions than the original paper.
The text was updated successfully, but these errors were encountered:
mbcel
changed the title
Weighting of deformed kernel
Weighting in deformed kernel
Feb 13, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am a little bit confused how the weighting is done of each input element of the deformed kernel in your implementation.
In your implementation it looks like you are first calculating the offsets and with these rearrange the input in the ConvOffset2D module (so ConvOffset2D just outputs the rearranged features according to the learned offsets). After that, on the rearranged feature maps you apply a normal Conv2D, which should then do the actual weighting for the deformed kernel, right?
Is this the same as in the original paper where I understand it that way that the weighting is applied directly to the deformed input elements (kernel elements with offsets) , like
sum_p_n[ w(p_n) * x(p_0 + p_n + p_delta)]
I don't see if this is the same or if this has a different assumption on deformable confolutions than the original paper.
The text was updated successfully, but these errors were encountered: