JeVoisBase  1.20
JeVois Smart Embedded Machine Vision Toolkit Base Modules
Share this page:
BilateralFilter.H
Go to the documentation of this file.
1 // ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2 //
3 // JeVois Smart Embedded Machine Vision Toolkit - Copyright (C) 2017 by Laurent Itti, the University of Southern
4 // California (USC), and iLab at USC. See http://iLab.usc.edu and http://jevois.org for information about this project.
5 //
6 // This file is part of the JeVois Smart Embedded Machine Vision Toolkit. This program is free software; you can
7 // redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software
8 // Foundation, version 2. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
9 // without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
10 // License for more details. You should have received a copy of the GNU General Public License along with this program;
11 // if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
12 //
13 // Contact information: Laurent Itti - 3641 Watt Way, HNB-07A - Los Angeles, CA 90089-2520 - USA.
14 // Tel: +1 213 740 3527 - itti@pollux.usc.edu - http://iLab.usc.edu - http://jevois.org
15 // ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////
16 /*! \file */
17 
18 #pragma once
19 
21 #include <jevois/Types/Enum.H>
22 
23 namespace bilateralfilter
24 {
25  static jevois::ParameterCategory const ParamCateg("Bilateral Filter Parameters");
26 
27  //! Parameter \relates BilateralFilter
28  JEVOIS_DECLARE_PARAMETER(d, int, "Diameter of each pixel neighborhood that is used during filtering. "
29  "If it is non-positive, it is computed from sigmaSpace",
30  0, ParamCateg);
31 
32  //! Parameter \relates BilateralFilter
33  JEVOIS_DECLARE_PARAMETER(sigmaColor, double, "Filter sigma in the color space. A larger value of the parameter "
34  "means that farther colors within the pixel neighborhood (see sigmaSpace) will be mixed "
35  "together, resulting in larger areas of semi-equal color. ",
36  2.0, ParamCateg);
37 
38  //! Parameter \relates BilateralFilter
39  JEVOIS_DECLARE_PARAMETER(sigmaSpace, double, "Filter sigma in the coordinate space. A larger value of the parameter "
40  "means that farther pixels will influence each other as long as their colors are close "
41  "enough (see sigmaColor). When d>0, it specifies the neighborhood size regardless of "
42  "sigmaSpace. Otherwise, d is proportional to sigmaSpace.",
43  2.0, ParamCateg);
44 }
45 
46 //! A bilateral filter
47 /*! See http://docs.opencv.org/3.2.0/d4/d86/group__imgproc__filter.html for details. */
48 class BilateralFilter : public Filter,
49  public jevois::Parameter<bilateralfilter::d, bilateralfilter::sigmaColor,
50  bilateralfilter::sigmaSpace>
51 {
52  public:
53  //! Inherited constructor ok
54  using Filter::Filter;
55 
56  //! Virtual destructor for safe inheritance
57  virtual ~BilateralFilter();
58 
59  //! Processing function: filters the image src and puts the results into dst
60  virtual std::string process(cv::Mat const & src, cv::Mat & dst) override;
61 };
JEVOIS_DECLARE_PARAMETER
JEVOIS_DECLARE_PARAMETER(thresh1, double, "First threshold for hysteresis", 50.0, ParamCateg)
BilateralFilter::process
virtual std::string process(cv::Mat const &src, cv::Mat &dst) override
Processing function: filters the image src and puts the results into dst.
Definition: BilateralFilter.C:27
jevois::ParameterCategory
Filter
Base class for an image filter.
Definition: Filter.H:32
BilateralFilter::~BilateralFilter
virtual ~BilateralFilter()
Virtual destructor for safe inheritance.
Definition: BilateralFilter.C:23
Enum.H
BilateralFilter
A bilateral filter.
Definition: BilateralFilter.H:48
bilateralfilter
Definition: BilateralFilter.H:23
Filter.H