NumCpp  2.11.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::filter
31 {
32  //================================================================================
33  // Enum Description:
35  enum class Boundary
36  {
37  REFLECT = 0,
38  CONSTANT,
39  NEAREST,
40  MIRROR,
41  WRAP
42  };
43 } // namespace nc::filter
Definition: addBoundary1d.hpp:44
Boundary
Boundary condition to apply to the image filter.
Definition: Boundary.hpp:36