Skip to content

Commit

Permalink
fix: removed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Marian Rassat committed Feb 19, 2025
1 parent ba1df8c commit 8be94f7
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions cars/applications/dense_matching/census_mccnn_sgm.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
"""
# pylint: disable=too-many-lines
import collections
import datetime

# Standard imports
import logging
Expand Down Expand Up @@ -1524,10 +1523,6 @@ def loc_inverse_wrapper(
:type saving_info: dict
"""
print(f"type {type(geom_plugin)}")

wrapper_begin = datetime.datetime.now()

col, row, _ = geom_plugin.inverse_loc(
image,
geomodel,
Expand All @@ -1540,10 +1535,4 @@ def loc_inverse_wrapper(
output, saving_info=saving_info, attributes=None
)

wrapper_end = datetime.datetime.now()
wrapper_duration = wrapper_end - wrapper_begin
print(
f"Loc inverse (wrapper): {wrapper_duration}, {len(longitudes)} points"
)

return output

0 comments on commit 8be94f7

Please sign in to comment.