Skip to content
Snippets Groups Projects
Commit b393a16d authored by Sebastian Hahta's avatar Sebastian Hahta
Browse files

Template specialization for get/set.

parent 185b9d7e
No related branches found
No related tags found
2 merge requests!105CUDA optical flow smoothing,!103feature/frame class
Pipeline #13286 passed
...@@ -3,6 +3,7 @@ set(RGBDSRC ...@@ -3,6 +3,7 @@ set(RGBDSRC
src/local.cpp src/local.cpp
src/disparity.cpp src/disparity.cpp
src/source.cpp src/source.cpp
src/frame.cpp
src/stereovideo.cpp src/stereovideo.cpp
src/middlebury_source.cpp src/middlebury_source.cpp
src/net.cpp src/net.cpp
......
...@@ -36,49 +36,8 @@ public: ...@@ -36,49 +36,8 @@ public:
* true. * true.
*/ */
const cv::Mat& getChannel(const ftl::rgbd::channel_t& channel) template <typename T> const T& getChannel(const ftl::rgbd::channel_t& channel);
{ template <typename T> T& setChannel(const ftl::rgbd::channel_t& channel);
auto idx = _channelIdx(channel);
if (!(available_[idx] & mask_host))
{
if (available_[idx] & mask_gpu)
{
channels_gpu_[idx].download(channels_host_[idx]);
available_[idx] |= mask_host;
}
}
return channels_host_[idx];
}
cv::Mat& setChannel(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
available_[idx] = mask_host;
return channels_host_[idx];
}
const cv::cuda::GpuMat& getChannelGpu(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
if (!(available_[idx] & mask_gpu))
{
if (available_[idx] & mask_host)
{
channels_gpu_[idx].upload(channels_host_[idx]);
available_[idx] |= mask_gpu;
}
}
return channels_gpu_[idx];
}
cv::cuda::GpuMat& setChannelGpu(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
available_[idx] = mask_gpu;
return channels_gpu_[idx];
}
private: private:
...@@ -112,4 +71,4 @@ private: ...@@ -112,4 +71,4 @@ private:
}; };
} }
} }
\ No newline at end of file
#include <ftl/rgbd/frame.hpp>
namespace ftl {
namespace rgbd {
template<> const cv::Mat& Frame::getChannel(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
if (!(available_[idx] & mask_host))
{
if (available_[idx] & mask_gpu)
{
channels_gpu_[idx].download(channels_host_[idx]);
available_[idx] |= mask_host;
}
}
return channels_host_[idx];
}
template<> cv::Mat& Frame::setChannel(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
available_[idx] = mask_host;
return channels_host_[idx];
}
template<> const cv::cuda::GpuMat& Frame::getChannel(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
if (!(available_[idx] & mask_gpu))
{
if (available_[idx] & mask_host)
{
channels_gpu_[idx].upload(channels_host_[idx]);
available_[idx] |= mask_gpu;
}
}
return channels_gpu_[idx];
}
template<> cv::cuda::GpuMat& Frame::setChannel(const ftl::rgbd::channel_t& channel)
{
auto idx = _channelIdx(channel);
available_[idx] = mask_gpu;
return channels_gpu_[idx];
}
}
}
\ No newline at end of file
...@@ -173,8 +173,8 @@ bool StereoVideoSource::capture(int64_t ts) { ...@@ -173,8 +173,8 @@ bool StereoVideoSource::capture(int64_t ts) {
bool StereoVideoSource::retrieve() { bool StereoVideoSource::retrieve() {
auto &frame = frames_[0]; auto &frame = frames_[0];
frame.reset(); frame.reset();
auto &left = frame.setChannelGpu(ftl::rgbd::kChanLeft); auto &left = frame.setChannel<cv::cuda::GpuMat>(ftl::rgbd::kChanLeft);
auto &right = frame.setChannelGpu(ftl::rgbd::kChanRight); auto &right = frame.setChannel<cv::cuda::GpuMat>(ftl::rgbd::kChanRight);
lsrc_->get(left, right, calib_, stream2_); lsrc_->get(left, right, calib_, stream2_);
#ifdef HAVE_OPTFLOW #ifdef HAVE_OPTFLOW
...@@ -208,15 +208,15 @@ void StereoVideoSource::swap() { ...@@ -208,15 +208,15 @@ void StereoVideoSource::swap() {
bool StereoVideoSource::compute(int n, int b) { bool StereoVideoSource::compute(int n, int b) {
auto &frame = frames_[1]; auto &frame = frames_[1];
auto &left = frame.getChannelGpu(ftl::rgbd::kChanLeft); auto &left = frame.getChannel<cv::cuda::GpuMat>(ftl::rgbd::kChanLeft);
auto &right = frame.getChannelGpu(ftl::rgbd::kChanRight); auto &right = frame.getChannel<cv::cuda::GpuMat>(ftl::rgbd::kChanRight);
const ftl::rgbd::channel_t chan = host_->getChannel(); const ftl::rgbd::channel_t chan = host_->getChannel();
if (left.empty() || right.empty()) return false; if (left.empty() || right.empty()) return false;
if (chan == ftl::rgbd::kChanDepth) { if (chan == ftl::rgbd::kChanDepth) {
auto &depth = frame.setChannelGpu(ftl::rgbd::kChanDepth); auto &depth = frame.setChannel<cv::cuda::GpuMat>(ftl::rgbd::kChanDepth);
auto &disp = frame.setChannelGpu(ftl::rgbd::kChanDisparity); auto &disp = frame.setChannel<cv::cuda::GpuMat>(ftl::rgbd::kChanDisparity);
if (depth.empty()) depth = cv::cuda::GpuMat(left.size(), CV_32FC1); if (depth.empty()) depth = cv::cuda::GpuMat(left.size(), CV_32FC1);
if (disp.empty()) disp = cv::cuda::GpuMat(left.size(), CV_32FC1); if (disp.empty()) disp = cv::cuda::GpuMat(left.size(), CV_32FC1);
......
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