Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pinard Clement
drone-depth-validation-set
Commits
03330512
Commit
03330512
authored
Jan 15, 2021
by
Clément Pinard
Browse files
Add proper package init
parent
9f920739
Changes
2
Hide whitespace changes
Inline
Side-by-side
evaluation_toolkit/evaluation_toolkit/__init__.py
0 → 100644
View file @
03330512
from
.
import
depth_evaluation
from
.
import
inference_toolkit
evaluation_toolkit/evaluation_toolkit/depth_evaluation.py
View file @
03330512
...
...
@@ -90,7 +90,7 @@ def main():
else
:
mask
=
None
for
filepath
,
fpv
in
tqdm
(
zip
(
depth_paths
,
fpv_list
),
total
=
len
(
fpv_list
)):
GT
=
np
.
load
(
args
.
dataset_root
/
filepath
+
'.npy'
)
GT
=
np
.
load
(
(
args
.
dataset_root
/
filepath
).
stripext
()
+
'.npy'
)
new_values
=
get_values
(
GT
,
estimated_depth
[
filepath
],
fpv
,
args
.
scale_invariant
,
mask
,
args
.
min_depth
,
args
.
max_depth
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment