NumCpp  2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
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