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've been looking at the possibility to implement scale constraints for datasets that have no georeferencing information (no GPS and no GCPs). The use case is that sometimes people use images that have no spatial information (for example, datasets such as https://github.com/pierotofy/dataset_banana) but still have a wish to perform measurements on the results. A straightforward approach is to let OpenSfM run the reconstruction, then manually choose two points on the point cloud and perform a linear transformation based on a scaling factor.
I was wondering if a different approach could be doable by allowing a user to specify a sort of ground_control_line with two points A and B and the desired distance:
This mostly comes down to allowing a user to specify constraints in 2D rather than 3D, which can make the operation simpler.
I have the itch that perhaps this could be best handled as a post-processing operation on the dense result (raycast point A and B, find the points closest to the ray intersection, then scale), but wondering if perhaps this could be solved as part of an additional bundle adjustment constraint or as part of the alignment_constraints function and thus integrated in OpenSfM?
The text was updated successfully, but these errors were encountered:
I see in the linear scaling factor method @pierotofy you can implement something to specify the points in 2d but the problem will be that we have no guarantee that the two points that we marked are even present in the reconstruction.I think a better idea would be to display all the tracked point on an image and select two points from the tracks.Then we measure that specific area and give it to point cloud
Hey all ✋
I've been looking at the possibility to implement scale constraints for datasets that have no georeferencing information (no GPS and no GCPs). The use case is that sometimes people use images that have no spatial information (for example, datasets such as https://github.com/pierotofy/dataset_banana) but still have a wish to perform measurements on the results. A straightforward approach is to let OpenSfM run the reconstruction, then manually choose two points on the point cloud and perform a linear transformation based on a scaling factor.
I was wondering if a different approach could be doable by allowing a user to specify a sort of
ground_control_line
with two points A and B and the desired distance:This mostly comes down to allowing a user to specify constraints in 2D rather than 3D, which can make the operation simpler.
I have the itch that perhaps this could be best handled as a post-processing operation on the dense result (raycast point A and B, find the points closest to the ray intersection, then scale), but wondering if perhaps this could be solved as part of an additional bundle adjustment constraint or as part of the
alignment_constraints
function and thus integrated in OpenSfM?The text was updated successfully, but these errors were encountered: