Skip to content

Commit

Permalink
updated logging info at begin
Browse files Browse the repository at this point in the history
  • Loading branch information
franioli committed Mar 15, 2024
1 parent 7e9a9e9 commit 8d50d69
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/deep_image_matching/image_matching.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,15 @@ def __init__(
logger.info(f" Output folder: {self.output_dir}")
logger.info(f" Number of images: {len(self.image_list)}")
logger.info(f" Matching strategy: {self.matching_strategy}")
logger.info(f" Image quality: {self.custom_config['general']['quality']}")
logger.info(f" Image quality: {self.custom_config['general']['quality'].name}")
logger.info(
f" Tile selection: {self.custom_config['general']['tile_selection']}"
f" Tile selection: {self.custom_config['general']['tile_selection'].name}"
)
logger.info(f" Feature extraction method: {self.local_features}")
logger.info(f" Matching method: {self.matching_method}")
logger.info(
f" Geometric verification: {self.custom_config['general']['geom_verification'].name}"
)
logger.info(f" CUDA available: {torch.cuda.is_available()}")

@property
Expand Down

0 comments on commit 8d50d69

Please sign in to comment.