InpaintFilter.hpp
Go to the documentation of this file.
1 /*
2  * InpaintFilter.hpp
3  *
4  * Created on: May 6, 2017
5  * Author: Tanja Baumann, Peter Fankhauser
6  * Institute: ETH Zurich, ANYbotics
7  */
8 
9 #pragma once
10 
11 #include <filters/filter_base.hpp>
12 
13 //OpenCV
15 #include <opencv2/opencv.hpp>
16 
17 #include <vector>
18 #include <string>
19 
20 namespace grid_map {
21 
25 template<typename T>
27 
28  public:
32  InpaintFilter();
33 
37  virtual ~InpaintFilter();
38 
42  virtual bool configure();
43 
51  virtual bool update(const T& mapIn, T& mapOut);
52 
53  private:
54 
56  double radius_;
57 
59  std::string inputLayer_;
60 
62  std::string outputLayer_;
63 };
64 
65 } /* namespace */
std::string outputLayer_
Output layer name.
virtual bool configure()
std::string inputLayer_
Input layer name.
virtual bool update(const T &mapIn, T &mapOut)
double radius_
Inpainting radius.


grid_map_cv
Author(s): Péter Fankhauser , Magnus Gärtner
autogenerated on Tue Jun 1 2021 02:13:32