NumCpp  2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Boundary.hpp
Go to the documentation of this file.
1
28#pragma once
29
30namespace nc::filter
31{
32 //================================================================================
33 // Enum Description:
35 enum class Boundary
36 {
37 REFLECT = 0,
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