Cars plugin to use the MoGe2 model for edge detection
Project description
Edge Detection plugin for CARS
This plugin enables the use of the MoGe2 model in CARS, for higher accuracy building reconstruction.
Context
This plugin is made to be used in conjunction with CARS, the stereo-reconstruction software. More information can be found over at CARS's GitHub page.
Installation
First clone this repository, using :
$ git clone --recurse-submodules git@gitlab.cnes.fr:dali/cars-park/cars-plugins/cars-edge-detection-plugin.git
$ cd cars-edge-detection-plugin
Note:
--recurse-submodulesis required. This project vendors MoGe as a submodule, and MoGe itself vendorsutils3dandpipelineas nested submodules. A plaingit clonewill leave those directories empty, causing build failures.
If you already cloned the repository without submodules, initialize them before installing:
$ git submodule update --init --recursive
You can then create a virtual environment and install the plugin, which will install CARS automatically :
$ python3 -m venv venv
$ source venv/bin/activate
$ make install
Or install the plugin in your own environment, if it already has CARS :
$ source your/own/env/activate
$ pip install .
Once installed, don't forget to download a MoGe2 model, for example Ruicheng/moge-2-vitl-normal, using this command :
$ cars-download-moge2 --model vitl-normal
Or via any other means if you don't have a direct access to the internet. The plugin will attempt to download the vitl-normal model on first import, providing at least the default model. If working from an environment such as the TREX cluster, an option is to directly use wget to fetch the model file, then move it to its proper place for the plugin to recognize it :
# fetch the model
$ wget https://huggingface.co/Ruicheng/moge-2-vitl-normal/resolve/main/model.pt
# move the model to the right place
# it should be under cars_edge_detection_plugin/applications/depth_map_generation/models with the proper name for each model :
# - moge-2-vitl-normal.pt
# - moge-2-vitb-normal.pt
# - moge-2-vits-normal.pt
$ mkdir [your/plugin/installation/path/]cars_edge_detection_plugin/applications/depth_map_generation/models
$ mv ./model.pt [your/plugin/installation/path/]cars_edge_detection_plugin/applications/depth_map_generation/models/moge-2-vitl-normal.pt
Using the new pipeline
Though this pipeline is intended to be used within CARS's meta pipeline, it can still be used as a stand-alone pipeline by providing the right configuration.
Once your configuration file is ready, you can launch the pipeline using CARS :
$ cars configfile.yaml
Configuration
The edge detection pipeline can be enabled by setting the pipeline parameter in the global advanced section of the CARS configuration.
A minimal example configuration is shown below:
input:
sensors:
one: # sensor image path
two: # sensor image path
pipeline: edge_detection
output:
directory: outresults
The pipeline operates on image pairs. By default, edge detection is only computed where required by downstream applications, meaning on the left images only.
Additional options specific to the edge detection pipeline can be configured under the edge_detection section. For example, edge detection can also be applied to right images, and the MoGe2-based depth map generation application can be configured as follows:
input: ...
advanced: ...
output: ...
edge_detection:
advanced:
save_intermediate_data: false
right_image_edge_detection: true
applications:
depth_map_generation:
method: moge2
model: Ruicheng/moge-2-vitl-normal
save_intermediate_data: true
edge_threshold: 0.7
The model parameter can reference either a local MoGe2 checkpoint or a Hugging Face model identifier.
If save_intermediate_data is set to false, only the edge map will be created in the output folder.
Else, all by-products (depth map, normal map, tile_id) will be saved in the dump_dir folder.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cars_edge_detection_plugin-0.1.0.tar.gz.
File metadata
- Download URL: cars_edge_detection_plugin-0.1.0.tar.gz
- Upload date:
- Size: 4.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
88c48d2a5edfcc29d79bad3165c06b2a02b54906e6d206520701ba72dc909db1
|
|
| MD5 |
53992ef71ff6c2fa093c70a34d2a2994
|
|
| BLAKE2b-256 |
e5b41606cbb28f372bfb86453066def6a916fdff5fcec12735003330f67eedb4
|
File details
Details for the file cars_edge_detection_plugin-0.1.0-py3-none-any.whl.
File metadata
- Download URL: cars_edge_detection_plugin-0.1.0-py3-none-any.whl
- Upload date:
- Size: 257.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7bd5a7f7fbf5eb25638887aac0d384af55201ba662ee3968f5528ee5fee90431
|
|
| MD5 |
1c50a706bcafd72a55c152500f845cd8
|
|
| BLAKE2b-256 |
7fb382b7bf93f64ef8ffd0d4d5728418ce674b94c4c5b666f3aef288dd307daf
|