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

fix build

parent 0a21d466
No related branches found
No related tags found
No related merge requests found
Pipeline #24504 passed
...@@ -147,8 +147,11 @@ void DepthChannel::_createPipeline(size_t size) { ...@@ -147,8 +147,11 @@ void DepthChannel::_createPipeline(size_t size) {
#ifdef HAVE_LIBSGM #ifdef HAVE_LIBSGM
pipe_->append<ftl::operators::FixstarsSGM>("algorithm"); pipe_->append<ftl::operators::FixstarsSGM>("algorithm");
#else #else
// TODO fix windows build
#ifndef _MSC_VER
pipe_->append<ftl::operators::StereoDisparity>("algorithm"); pipe_->append<ftl::operators::StereoDisparity>("algorithm");
#endif #endif
#endif
pipe_->append<ftl::operators::DisparityBilateralFilter>("bilateral_filter"); pipe_->append<ftl::operators::DisparityBilateralFilter>("bilateral_filter");
//pipe_->append<ftl::operators::OpticalFlowTemporalSmoothing>("optflow_filter", Channel::Disparity); //pipe_->append<ftl::operators::OpticalFlowTemporalSmoothing>("optflow_filter", Channel::Disparity);
pipe_->append<ftl::operators::DisparityToDepth>("calculate_depth"); pipe_->append<ftl::operators::DisparityToDepth>("calculate_depth");
......
...@@ -53,20 +53,18 @@ struct StereoCensusSgm::Impl { ...@@ -53,20 +53,18 @@ struct StereoCensusSgm::Impl {
//DisparitySpaceImage<unsigned short> dsi; //DisparitySpaceImage<unsigned short> dsi;
CensusMatchingCost cost; CensusMatchingCost cost;
Array2D<unsigned short> cost_min_paths; Array2D<unsigned short> cost_min_paths;
Array2D<float> confidence; Array2D<unsigned short> uncertainty;
Array2D<float> disparity_r; Array2D<float> disparity_r;
Array2D<uchar> l; Array2D<uchar> l;
Array2D<uchar> r; Array2D<uchar> r;
cv::Mat uncertainty;
PathAggregator<StandardSGM<CensusMatchingCost::DataType>> aggr; PathAggregator<StandardSGM<CensusMatchingCost::DataType>> aggr;
WinnerTakesAll<DSImage16U,float> wta; WinnerTakesAll<DSImage16U,float> wta;
Impl(int width, int height, int min_disp, int max_disp) : Impl(int width, int height, int min_disp, int max_disp) :
cost(width, height, min_disp, max_disp), cost(width, height, min_disp, max_disp),
cost_min_paths(width, height), cost_min_paths(width, height),
confidence(width, height), uncertainty(width, height),
disparity_r(width, height), l(width, height), r(width, height) {} disparity_r(width, height), l(width, height), r(width, height) {}
}; };
...@@ -111,14 +109,16 @@ void StereoCensusSgm::compute(cv::InputArray l, cv::InputArray r, cv::OutputArra ...@@ -111,14 +109,16 @@ void StereoCensusSgm::compute(cv::InputArray l, cv::InputArray r, cv::OutputArra
// Bioinformatics). https://doi.org/10.1007/978-3-319-11752-2_4 // Bioinformatics). https://doi.org/10.1007/978-3-319-11752-2_4
if (disparity.isGpuMat()) { if (disparity.isGpuMat()) {
cv::cuda::subtract(impl_->wta.min_cost.toGpuMat(), impl_->cost_min_paths.toGpuMat(), impl_->uncertainty); auto uncertainty = impl_->uncertainty.toGpuMat();
cv::cuda::subtract(impl_->wta.min_cost.toGpuMat(), impl_->cost_min_paths.toGpuMat(), uncertainty);
cv::cuda::compare(uncertainty, params.uniqueness, uncertainty, cv::CMP_GT); cv::cuda::compare(uncertainty, params.uniqueness, uncertainty, cv::CMP_GT);
impl_->wta.disparity.toGpuMat().setTo(0, uncertainty); impl_->wta.disparity.toGpuMat().setTo(0, uncertainty);
} }
else { else {
cv::subtract(impl_->wta.min_cost.toMat(), impl_->cost_min_paths.toMat(), impl_->uncertainty); auto uncertainty = impl_->uncertainty.toMat();
cv::subtract(impl_->wta.min_cost.toMat(), impl_->cost_min_paths.toMat(), uncertainty);
cv::compare(uncertainty, params.uniqueness, uncertainty, cv::CMP_GT); cv::compare(uncertainty, params.uniqueness, uncertainty, cv::CMP_GT);
impl_->wta.disparity.toMat().setTo(0, uncertainty); impl_->wta.disparity.toGpuMat().setTo(0, uncertainty);
} }
median_filter(impl_->wta.disparity, disparity); median_filter(impl_->wta.disparity, disparity);
......
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