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

Fix FixstarsSGM CMake option

parent 1fd0d7ca
No related branches found
No related tags found
1 merge request!174Fix FixstarsSGM CMake option
Pipeline #16466 failed
This commit is part of merge request !174. Comments created here will be created in the context of that merge request.
...@@ -10,7 +10,6 @@ set(OPERSRC ...@@ -10,7 +10,6 @@ set(OPERSRC
src/filling.cu src/filling.cu
src/disparity/disp2depth.cu src/disparity/disp2depth.cu
src/disparity/disparity_to_depth.cpp src/disparity/disparity_to_depth.cpp
src/disparity/fixstars_sgm.cpp
src/disparity/bilateral_filter.cpp src/disparity/bilateral_filter.cpp
src/segmentation.cu src/segmentation.cu
src/segmentation.cpp src/segmentation.cpp
...@@ -18,8 +17,14 @@ set(OPERSRC ...@@ -18,8 +17,14 @@ set(OPERSRC
src/mask.cpp src/mask.cpp
src/antialiasing.cpp src/antialiasing.cpp
src/antialiasing.cu src/antialiasing.cu
src/edges.cpp
) )
if (LIBSGM_FOUND)
list(APPEND OPERSRC src/disparity/fixstars_sgm.cpp)
endif (LIBSGM_FOUND)
if (HAVE_OPTFLOW) if (HAVE_OPTFLOW)
list(APPEND OPERSRC list(APPEND OPERSRC
src/nvopticalflow.cpp src/nvopticalflow.cpp
......
...@@ -7,16 +7,18 @@ ...@@ -7,16 +7,18 @@
#include <opencv2/cudaoptflow.hpp> #include <opencv2/cudaoptflow.hpp>
#endif #endif
#ifdef HAVE_LIBSGM
#include <libsgm.h> #include <libsgm.h>
#endif
namespace ftl { namespace ftl {
namespace operators { namespace operators {
#ifdef HAVE_LIBSGM
/* /*
* FixstarsSGM https://github.com/fixstars/libSGM * FixstarsSGM https://github.com/fixstars/libSGM
* *
* Requires modified version https://gitlab.utu.fi/joseha/libsgm * Requires modified version https://gitlab.utu.fi/joseha/libsgm
*
*/ */
class FixstarsSGM : public ftl::operators::Operator { class FixstarsSGM : public ftl::operators::Operator {
public: public:
...@@ -41,6 +43,7 @@ class FixstarsSGM : public ftl::operators::Operator { ...@@ -41,6 +43,7 @@ class FixstarsSGM : public ftl::operators::Operator {
int max_disp_; int max_disp_;
float uniqueness_; float uniqueness_;
}; };
#endif
class DisparityBilateralFilter : public::ftl::operators::Operator { class DisparityBilateralFilter : public::ftl::operators::Operator {
public: public:
......
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