diff --git a/components/rgbd-sources/src/net.cpp b/components/rgbd-sources/src/net.cpp index 12a76cc40d38f876f11cbc4919cf7bcb13a4bee5..68f46fc2b6879f437d6cbf76b56145af334e9e7a 100644 --- a/components/rgbd-sources/src/net.cpp +++ b/components/rgbd-sources/src/net.cpp @@ -150,8 +150,6 @@ void NetSource::_recvChunk(int64_t frame, int chunk, bool delta, const vector<un // Lock to allow buffer swap UNIQUE_LOCK(mutex_,lk2); - chunk_count_ = 0; - // Swap the double buffers cv::Mat tmp; tmp = rgb_; @@ -161,6 +159,7 @@ void NetSource::_recvChunk(int64_t frame, int chunk, bool delta, const vector<un depth_ = d_depth_; d_depth_ = tmp; + chunk_count_ = 0; timestamp_ = current_frame_; current_frame_ = frame; } diff --git a/components/rgbd-sources/src/stereovideo.cpp b/components/rgbd-sources/src/stereovideo.cpp index d83fdb194a426659b33166aef64d30d367653a0e..2e5ad52ba08681608370ea5811d4d8c155a73736 100644 --- a/components/rgbd-sources/src/stereovideo.cpp +++ b/components/rgbd-sources/src/stereovideo.cpp @@ -167,6 +167,7 @@ void StereoVideoSource::swap() { tmp = right_; right_ = cap_right_; cap_right_ = tmp; + LOG(INFO) << "SWAP SV " << timestamp_; } bool StereoVideoSource::compute(int n, int b) {