Skip to content
Snippets Groups Projects
Commit 8df70bb1 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Display depths in player

parent e72a1566
No related branches found
No related tags found
1 merge request!127Implements #196 stream capturing
Pipeline #15315 passed
...@@ -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.0f / 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.0f);
}
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);
......
...@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment