cars.applications.sparse_matching.methods.sift_sparse_method
This module contains the SIFT sparse matching method implementation.
Attributes
Classes
Implementation of SIFT as a sparse matching method. |
Functions
|
Check if a value is positive. |
Module Contents
- cars.applications.sparse_matching.methods.sift_sparse_method.is_positive(value)[source]
Check if a value is positive.
- Parameters:
value (int or float) – value to check
- Returns:
True if value is positive, False otherwise
- Return type:
bool
- class cars.applications.sparse_matching.methods.sift_sparse_method.SiftSparseMethod(conf)[source]
Bases:
AbstractSparseMatchingMethodImplementation of SIFT as a sparse matching method.
- schema
- used_config
- method
- sift_matching_threshold
- sift_n_octave
- sift_n_scale_per_octave
- sift_peak_threshold
- sift_edge_threshold
- sift_magnification
- sift_window_size
- sift_back_matching
- used_band
- check_conf(conf)[source]
Merge user configuration with default values and validate schema. Extra keys in conf are preserved and ignored during schema validation.