NumCpp  2.8.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
Boundary.hpp
Go to the documentation of this file.
1 #pragma once
29 
30 namespace nc
31 {
32  namespace filter
33  {
34  //================================================================================
35  // Enum Description:
37  enum class Boundary
38  {
39  REFLECT = 0,
40  CONSTANT,
41  NEAREST,
42  MIRROR,
43  WRAP
44  };
45  } // namespace filter
46 } // namespace nc
Boundary
Boundary condition to apply to the image filter.
Definition: Boundary.hpp:38
Definition: Coordinate.hpp:45