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 trying to train with simple Division camera model, which can also model wide angle fisheye camera models. I created the training data set with the following params, I just hightlight the relevant parts.
In wandb I'm getting the following visualization also including the up gt, pred, confidence:
Do you think the 'Up Gt' is correct? To me, it seems that there is mostly an inner circle within which the up vectors are correct, but outside of this circle, they appear to be incorrect. Or should it be interpreted in a different way?
(As shown in the example, out-of-FoV pixels are not yet masked. The simple_division model sets every pixel as valid during undistortion. I hope the UpGt issue isn't related to this; I plan to address the valid pixels later.)
The text was updated successfully, but these errors were encountered:
Hi,
Very interesting! Would be happy to know how it goes.
My best bet at this point is that using such a big FoV together with strong distortions will produce invalid pixels in the distortion function here since you need (1 - 4 * self.k1[..., None, None] * r2) >= 0.
Unfortunately, we never trained on data where this became relevant, so the check_valid is not used in the most of the code.
Hi!
I'm trying to train with simple Division camera model, which can also model wide angle fisheye camera models. I created the training data set with the following params, I just hightlight the relevant parts.
In wandb I'm getting the following visualization also including the up gt, pred, confidence:
Do you think the 'Up Gt' is correct? To me, it seems that there is mostly an inner circle within which the up vectors are correct, but outside of this circle, they appear to be incorrect. Or should it be interpreted in a different way?
(As shown in the example, out-of-FoV pixels are not yet masked. The simple_division model sets every pixel as valid during undistortion. I hope the UpGt issue isn't related to this; I plan to address the valid pixels later.)
The text was updated successfully, but these errors were encountered: