Skip to content

json87/SphereSfM

Repository files navigation

SphereSfM

SphereSfM aims to achieve sparse reconstruction of spherical images in the ERP (EquiRectangular Projection) format based on increamental Structure from Motion. Recently, Spherical images are gaining more and more attention due to the popularity of spherical cameras, such as Insta360 and Ricoh theta, and they have been exploited for 3D modeling in complex urban scenes, especially for near-ground buildings and streets. This project provides a software package for image orientation, which can be integrated into a SfM-MVS workflow.

SphereSfM

sphere image

Build

The software package has been integrated into the well-known SfM engine ColMap. Thus, you can build the code according to the document.

Dataset

Three datasets that are recorded from different scenes are provided, including campus parterre (google driver, baidu disk), campus building (google driver, baidu disk), and urban street (google driver, baidu disk).

The illustration of the SfM reconstruction of urban street can be found here.

Usage

There are two ways for data processing, i.e., GUI and command-line modes. The main steps of the command-line mode are described in the following 5 steps, which are also illustrated by the GUI setting.

Step 1 - create a database

Create a database in the project directory step1.

colmap database_creator --database_path ./colmap/database.db

Step 2 - feature extraction

Extract features for all images. In this step, camera model, camera parameters, camera mask, and POS data can be provided step2.

colmap feature_extractor 
--database_path ./colmap/database.db 
--image_path ./images 
--ImageReader.camera_model SPHERE 
--ImageReader.camera_params "1,3520,1760" 
--ImageReader.single_camera 1 
--ImageReader.camera_mask_path ./camera_mask.png 
--ImageReader.pose_path ./POS.txt

Step 3 - feature matching

Feature matching for all image pairs. When POS data is provides, spatial matching mode is prefered. Otherwise, the vocabulary tree-based mode can accelerate feature matching step3.

colmap spatial_matcher 
--database_path ./colmap/database.db 
--SiftMatching.max_error 4 
--SiftMatching.min_num_inliers 50 
--SpatialMatching.is_gps 0 
--SpatialMatching.max_distance 50

Step 4 - mapper

Sparse reconstruction based on increamental SfM. In this step, camera parameters are kept fixed step4.

colmap mapper 
--database_path ./colmap/database.db 
--image_path ./images 
--output_path ./colmap/sparse 
--Mapper.ba_refine_focal_length 0 
--Mapper.ba_refine_principal_point 0 
--Mapper.ba_refine_extra_params 0 
--Mapper.sphere_camera 1

Step 5 - show model

Show reconstructed models by using ColMap GUI.

colmap gui --database_path ./colmap1/database.db --image_path ./images --import_path ./colmap1/sparse/0

Reference

Please refer to the following papers for the technique details.

@article{
  title = {3D reconstruction of spherical images: a review of techniques, applications, and prospects},
  author = {Jiang, San and You, Kan and Li, Yaxin and Weng, Duojie and Chen, Wu},
  journal = {Geo-spatial Information Science},
  pages = {1--30},
  year = {2024},
  publisher = {Taylor & Francis}
}

@article{
  title = {3D reconstruction of spherical images based on incremental structure from motion},
  author = {San Jiang, Kan You, Wu Chen, Duojie Weng and Yaxin Li},
  journal = {International Journal of Remote Sensing},
  volume = {45},
  number = {8},
  pages = {2596--2621},
  year = {2024},
  publisher = {Taylor & Francis}
}

@article{
  title = {Reliable Feature Matching for Spherical Images via Local Geometric Rectification and Learned Descriptor},
  author = {Jiang, San and Liu, Junhuan and Li, Yaxin and Weng, Duojie and Chen, Wu},
  journal = {Remote Sensing},
  volume = {15},
  number = {20},
  pages = {4954},
  year = {2023},
  publisher = {MDPI}
}

About

SfM for sphere images in the ERP format within the framework of ColMap

Resources

License

BSD-3-Clause, Unknown licenses found

Licenses found

BSD-3-Clause
LICENSE
Unknown
COPYING.txt

Stars

Watchers

Forks

Packages

No packages published