Skip to content
Snippets Groups Projects
Select Git revision
  • c18de7e4bb7ccabcddcddcb0ae12d45bbe3a2eef
  • master default protected
  • QL-devel
3 results

app.h

Blame
  • app.h 334 B
    #ifndef MY_APPS_H
    #define MY_APPS_H
    
    #include <sandbox.h>
    #include <opencv2/opencv.hpp>
    
    #define ESCAPE_CHAR 27
    
    
    void showLevel();
    //void showDiff();
    
    cv::Scalar floatToColor(float value, float min, float max);
    cv::Mat colorizeDepth(cv::Mat depth, float sandboxTop, float sandboxHeight);
    //Mat coloredFrame(Mat frameDepth);
    
    
    #endif