Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!327
Calibration ingestion templates
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Calibration ingestion templates
Calibration_Ingestion
into
main
Overview
2
Commits
7
Pipelines
3
Changes
10
Merged
Charlotte Hausman
requested to merge
Calibration_Ingestion
into
main
3 years ago
Overview
2
Commits
7
Pipelines
3
Changes
10
Expand
0
0
Merge request reports
Compare
main
version 2
c8c0c98c
3 years ago
version 1
5f9d9b6e
3 years ago
main (base)
and
version 1
latest version
a2591eb1
7 commits,
3 years ago
version 2
c8c0c98c
6 commits,
3 years ago
version 1
5f9d9b6e
3 commits,
3 years ago
10 files
+
214
−
43
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
apps/cli/executables/pexable/conveyor/conveyor/conveyor.py
+
5
−
5
Options
@@ -39,7 +39,7 @@ def arg_parser() -> argparse.ArgumentParser:
help
=
"
return standard calibration directories to original parent directory
"
,
)
parser
.
add_argument
(
"
--deliver-im
age
"
,
"
--deliver-im
g
"
,
nargs
=
1
,
action
=
"
store
"
,
required
=
False
,
@@ -87,14 +87,14 @@ def main():
if
args
.
deliver
is
not
None
:
action
=
"
Calibration Delivery
"
settings
=
_get_settings
(
args
.
deliver
[
0
])
conveyor
=
DeliveryConveyor
(
settings
)
conveyor
=
DeliveryConveyor
(
settings
,
action
)
elif
args
.
retrieve
is
not
None
:
action
=
"
Calibration Retrieval
"
settings
=
_get_settings
(
args
.
retrieve
[
0
])
conveyor
=
RetrievalConveyor
(
settings
)
elif
args
.
deliver_im
age
is
not
None
:
conveyor
=
RetrievalConveyor
(
settings
,
action
)
elif
args
.
deliver_im
g
is
not
None
:
action
=
"
Image Delivery
"
settings
=
_get_settings
(
args
.
deliver_im
age
[
0
])
settings
=
_get_settings
(
args
.
deliver_im
g
[
0
])
conveyor
=
DeliveryConveyor
(
settings
,
action
)
conveyor
.
convey
()
Loading