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
8df70bb1
Commit
8df70bb1
authored
5 years ago
by
Nicolas Pope
Browse files
Options
Downloads
Patches
Plain Diff
Display depths in player
parent
e72a1566
No related branches found
No related tags found
1 merge request
!127
Implements #196 stream capturing
Pipeline
#15315
passed
5 years ago
Stage: all
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
applications/player/src/main.cpp
+14
-0
14 additions, 0 deletions
applications/player/src/main.cpp
components/rgbd-sources/src/streamer.cpp
+2
-0
2 additions, 0 deletions
components/rgbd-sources/src/streamer.cpp
with
16 additions
and
0 deletions
applications/player/src/main.cpp
+
14
−
0
View file @
8df70bb1
...
@@ -26,6 +26,17 @@ static void createDecoder(const ftl::codecs::Packet &pkt) {
...
@@ -26,6 +26,17 @@ static void createDecoder(const ftl::codecs::Packet &pkt) {
decoder
=
ftl
::
codecs
::
allocateDecoder
(
pkt
);
decoder
=
ftl
::
codecs
::
allocateDecoder
(
pkt
);
}
}
static
void
visualizeDepthMap
(
const
cv
::
Mat
&
depth
,
cv
::
Mat
&
out
,
const
float
max_depth
)
{
depth
.
convertTo
(
out
,
CV_8U
,
255.0
f
/
max_depth
);
out
=
255
-
out
;
//cv::Mat mask = (depth >= 39.0f); // TODO (mask for invalid pixels)
applyColorMap
(
out
,
out
,
cv
::
COLORMAP_JET
);
//out.setTo(cv::Scalar(255, 255, 255), mask);
}
int
main
(
int
argc
,
char
**
argv
)
{
int
main
(
int
argc
,
char
**
argv
)
{
std
::
string
filename
(
argv
[
1
]);
std
::
string
filename
(
argv
[
1
]);
LOG
(
INFO
)
<<
"Playing: "
<<
filename
;
LOG
(
INFO
)
<<
"Playing: "
<<
filename
;
...
@@ -72,6 +83,9 @@ int main(int argc, char **argv) {
...
@@ -72,6 +83,9 @@ int main(int argc, char **argv) {
}
}
if
(
!
frame
.
empty
())
{
if
(
!
frame
.
empty
())
{
if
(
spkt
.
channel
==
1
)
{
visualizeDepthMap
(
frame
,
frame
,
8.0
f
);
}
double
time
=
(
double
)(
spkt
.
timestamp
-
r
.
getStartTime
())
/
1000.0
;
double
time
=
(
double
)(
spkt
.
timestamp
-
r
.
getStartTime
())
/
1000.0
;
cv
::
putText
(
frame
,
std
::
string
(
"Time: "
)
+
std
::
to_string
(
time
)
+
std
::
string
(
"s"
),
cv
::
Point
(
10
,
20
),
cv
::
FONT_HERSHEY_PLAIN
,
1
,
cv
::
Scalar
(
0
,
0
,
255
));
cv
::
putText
(
frame
,
std
::
string
(
"Time: "
)
+
std
::
to_string
(
time
)
+
std
::
string
(
"s"
),
cv
::
Point
(
10
,
20
),
cv
::
FONT_HERSHEY_PLAIN
,
1
,
cv
::
Scalar
(
0
,
0
,
255
));
cv
::
imshow
(
"Player"
,
frame
);
cv
::
imshow
(
"Player"
,
frame
);
...
...
This diff is collapsed.
Click to expand it.
components/rgbd-sources/src/streamer.cpp
+
2
−
0
View file @
8df70bb1
...
@@ -424,6 +424,7 @@ void Streamer::_process(ftl::rgbd::FrameSet &fs) {
...
@@ -424,6 +424,7 @@ void Streamer::_process(ftl::rgbd::FrameSet &fs) {
// Receiver only waits for channel 1 by default
// Receiver only waits for channel 1 by default
// TODO: Each encode could be done in own thread
// TODO: Each encode could be done in own thread
if
(
hasChan2
)
{
if
(
hasChan2
)
{
// TODO: Stagger the reset between nodes... random phasing
if
(
fs
.
timestamp
%
(
10
*
ftl
::
timer
::
getInterval
())
==
0
)
enc2
->
reset
();
if
(
fs
.
timestamp
%
(
10
*
ftl
::
timer
::
getInterval
())
==
0
)
enc2
->
reset
();
enc2
->
encode
(
fs
.
frames
[
j
].
get
<
cv
::
Mat
>
(
fs
.
sources
[
j
]
->
getChannel
()),
src
->
hq_bitrate
,
[
this
,
src
,
hasChan2
](
const
ftl
::
codecs
::
Packet
&
blk
){
enc2
->
encode
(
fs
.
frames
[
j
].
get
<
cv
::
Mat
>
(
fs
.
sources
[
j
]
->
getChannel
()),
src
->
hq_bitrate
,
[
this
,
src
,
hasChan2
](
const
ftl
::
codecs
::
Packet
&
blk
){
_transmitPacket
(
src
,
blk
,
1
,
hasChan2
,
Quality
::
High
);
_transmitPacket
(
src
,
blk
,
1
,
hasChan2
,
Quality
::
High
);
...
@@ -432,6 +433,7 @@ void Streamer::_process(ftl::rgbd::FrameSet &fs) {
...
@@ -432,6 +433,7 @@ void Streamer::_process(ftl::rgbd::FrameSet &fs) {
if
(
enc2
)
enc2
->
reset
();
if
(
enc2
)
enc2
->
reset
();
}
}
// TODO: Stagger the reset between nodes... random phasing
if
(
fs
.
timestamp
%
(
10
*
ftl
::
timer
::
getInterval
())
==
0
)
enc1
->
reset
();
if
(
fs
.
timestamp
%
(
10
*
ftl
::
timer
::
getInterval
())
==
0
)
enc1
->
reset
();
enc1
->
encode
(
fs
.
frames
[
j
].
get
<
cv
::
Mat
>
(
Channel
::
Colour
),
src
->
hq_bitrate
,
[
this
,
src
,
hasChan2
](
const
ftl
::
codecs
::
Packet
&
blk
){
enc1
->
encode
(
fs
.
frames
[
j
].
get
<
cv
::
Mat
>
(
Channel
::
Colour
),
src
->
hq_bitrate
,
[
this
,
src
,
hasChan2
](
const
ftl
::
codecs
::
Packet
&
blk
){
_transmitPacket
(
src
,
blk
,
0
,
hasChan2
,
Quality
::
High
);
_transmitPacket
(
src
,
blk
,
0
,
hasChan2
,
Quality
::
High
);
...
...
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