Skip to content

MultiView Structure From Motion ---- A simple Practice in Python

License

Notifications You must be signed in to change notification settings

hammershock/SFM-Python

Repository files navigation

SFM-Python

Incremental MultiView Structure From Motion ---- A simple Practice in Python

opencv-python numpy networkx tqdm matplotlib joblib scipy

中文版文档请戳

Peek 2024-05-15 20-11

This project implements a simple practice of Incremental MultiView Structure From Motion (SfM) in Python. The primary objective is to reconstruct 3D structures from a set of 2D images. The implementation utilizes several libraries including OpenCV, NumPy, Matplotlib, Joblib, TQDM, NetworkX, and SciPy for Bundle Adjustment.

Requirements & Installation

To install the required libraries, you can use pip:

pip install opencv-python numpy matplotlib joblib tqdm networkx scipy

Cloning the Repository

The repository contains a submodule for the ImageDataset_SceauxCastle dataset, which is necessary for running the example code. When cloning the repository, make sure to clone the submodule as well.

To clone the repository along with the submodule, use the following command:

git clone --recurse-submodules [email protected]:hammershock/SFM_Python.git

Alternatively, if you have already cloned the repository without the submodule, you can initialize and update the submodule using:

git submodule update --init --recursive

SceauxCastle Dataset: SceauxCastle Dataset

Usage

To run the Structure From Motion reconstruction, use the following command:

python main.py --image_dir <path_to_image_directory> --calibration_file <path_to_calibration_file> [--min_matches <minimum_pairs_of_matches>] [--use_ba] [--ba_tol <bundle_adjustment_tolerance>] [--verbose <verbosity_level>]

Arguments

  • --image_dir: Directory containing images for reconstruction. (default: ./ImageDataset_SceauxCastle/images)
  • --calibration_file: File containing camera calibration data. (default: ./ImageDataset_SceauxCastle/images/K.txt)
  • --min_matches: Minimum pairs of matches. (default: 80)
  • --use_ba: Whether to use bundle adjustment. (default: False)
  • --ba_tol: Tolerance for bundle adjustment. (default: 1e-10)
  • --verbose: Verbosity level of output. (default: 0)

Example

python main.py --image_dir ./ImageDataset_SceauxCastle/images --calibration_file ./ImageDataset_SceauxCastle/images/K.txt --min_matches 80
python app.py

Author

Hanmo Zhang
Email: [email protected]

License

This project is licensed under the MIT License. See the LICENSE file for details.

About

MultiView Structure From Motion ---- A simple Practice in Python

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages