Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
ftl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nicolas Pope
ftl
Commits
7335702d
Commit
7335702d
authored
5 years ago
by
Nicolas Pope
Browse files
Options
Downloads
Patches
Plain Diff
Fix snapshot delay units
parent
2efc60fd
No related branches found
No related tags found
1 merge request
!54
Snapshot stream recording
Pipeline
#11926
passed
5 years ago
Stage: all
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
components/rgbd-sources/src/snapshot.cpp
+5
-3
5 additions, 3 deletions
components/rgbd-sources/src/snapshot.cpp
with
5 additions
and
3 deletions
components/rgbd-sources/src/snapshot.cpp
+
5
−
3
View file @
7335702d
...
@@ -137,8 +137,10 @@ bool SnapshotWriter::addCameraParams(const string &name, const Matrix4d &pose, c
...
@@ -137,8 +137,10 @@ bool SnapshotWriter::addCameraParams(const string &name, const Matrix4d &pose, c
bool
SnapshotWriter
::
addCameraRGBD
(
const
string
&
name
,
const
Mat
&
rgb
,
const
Mat
&
depth
)
{
bool
SnapshotWriter
::
addCameraRGBD
(
const
string
&
name
,
const
Mat
&
rgb
,
const
Mat
&
depth
)
{
bool
retval
=
true
;
bool
retval
=
true
;
retval
&=
addMat
(
name
+
"-RGB"
,
rgb
);
cv
::
Mat
tdepth
;
retval
&=
addMat
(
name
+
"-D"
,
depth
);
depth
.
convertTo
(
tdepth
,
CV_16SC1
,
16.0
f
*
10.0
f
);
retval
&=
addMat
(
name
+
"-RGB"
,
rgb
,
"jpg"
);
retval
&=
addMat
(
name
+
"-D"
,
tdepth
,
"png"
);
return
retval
;
return
retval
;
}
}
...
@@ -171,7 +173,7 @@ void SnapshotStreamWriter::run() {
...
@@ -171,7 +173,7 @@ void SnapshotStreamWriter::run() {
writer_
.
addCameraRGBD
(
std
::
to_string
(
ms
)
+
"-"
+
std
::
to_string
(
i
),
rgb
[
i
],
depth
[
i
]);
writer_
.
addCameraRGBD
(
std
::
to_string
(
ms
)
+
"-"
+
std
::
to_string
(
i
),
rgb
[
i
],
depth
[
i
]);
}
}
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
mi
cro
seconds
(
delay_
));
std
::
this_thread
::
sleep_for
(
std
::
chrono
::
mi
lli
seconds
(
delay_
));
}
}
run_
=
false
;
run_
=
false
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment