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
uniformFilter1d.hpp
Go to the documentation of this file.
1
28#pragma once
29
30#include "NumCpp/Core/Slice.hpp"
31#include "NumCpp/Core/Types.hpp"
35#include "NumCpp/NdArray.hpp"
36
37namespace nc::filter
38{
39 //============================================================================
40 // Method Description:
52 template<typename dtype>
74} // namespace nc::filter
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition NdArrayCore.hpp:139
value_type item() const
Definition NdArrayCore.hpp:3098
A Class for slicing into NdArrays.
Definition Slice.hpp:45
NdArray< dtype > addBoundary1d(const NdArray< dtype > &inImage, Boundary inBoundaryType, uint32 inKernalSize, dtype inConstantValue=0)
Definition addBoundary1d.hpp:56
Definition addBoundary1d.hpp:44
Boundary
Boundary condition to apply to the image filter.
Definition Boundary.hpp:36
NdArray< dtype > uniformFilter1d(const NdArray< dtype > &inImageArray, uint32 inSize, Boundary inBoundaryType=Boundary::REFLECT, dtype inConstantValue=0)
Definition uniformFilter1d.hpp:53
NdArray< double > mean(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition mean.hpp:52
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59
std::uint32_t uint32
Definition Types.hpp:40