š¦ Stereo-Scape Stereo-Scape is a 3D scene reconstruction project that uses stereo vision techniques to generate depth maps and point clouds from pairs of stereo images. It aims to provide a simple, modular, and extensible framework for experimenting with stereo image processing, disparity estimation, and 3D model generation.
⨠Features š· Load stereo image pairs (left and right views)
š ļø Perform stereo rectification
š Compute disparity maps
š Generate 3D point clouds
šØ Visualize disparity and depth outputs
š§ Easy-to-modify pipeline for custom stereo algorithms
To deploy your app, you may need to install an adapter for your target environment.
stereo-scape/ ā āāā data/ # Sample stereo image pairs āāā output/ # Generated outputs (disparity maps, point clouds) āāā src/ # Source code files ā āāā disparity.py # Disparity map generation ā āāā stereo.py # Stereo image rectification and processing ā āāā utils.py # Helper functions ā āāā config.py # Configuration settings āāā requirements.txt # Python dependencies āāā README.md # Project description and setup instructions
š Getting Started
Clone the Repository bash Copy Edit git clone https://github.com/sohamghogre/Stereo-Scape cd stereo-scape
Install Dependencies bash Copy Edit pip install -r requirements.txt Make sure you have OpenCV (opencv-python) and NumPy installed.
Run the Code bash Copy Edit python src/stereo.py