NumCpp  2.7.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 { REFLECT = 0, CONSTANT, NEAREST, MIRROR, WRAP };
38  } // namespace filter
39 } // namespace nc
Boundary
Boundary condition to apply to the image filter.
Definition: Boundary.hpp:37
Definition: Coordinate.hpp:45