55 template<
typename dtype>
59 dtype inConstantValue = 0)
67 constexpr uint32 MIN_KERNEL_SIZE = 5;
70 if (kernelSize % 2 == 0)
75 const auto kernalHalfSize =
static_cast<double>(kernelSize / 2);
79 for (
double i = 0; i < kernelSize; ++i)
89 convolve1d(inImageArray.template astype<double>(), kernel, inBoundaryType, inConstantValue)
90 .template astype<dtype>();
#define THROW_INVALID_ARGUMENT_ERROR(msg)
Definition: Error.hpp:37
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:139
value_type item() const
Definition: NdArrayCore.hpp:3022
self_type sum(Axis inAxis=Axis::NONE) const
Definition: NdArrayCore.hpp:4618
Definition: addBoundary1d.hpp:44
NdArray< dtype > convolve1d(const NdArray< dtype > &inImageArray, const NdArray< dtype > &inWeights, Boundary inBoundaryType=Boundary::REFLECT, dtype inConstantValue=0)
Definition: convolve1d.hpp:54
NdArray< dtype > gaussianFilter1d(const NdArray< dtype > &inImageArray, double inSigma, Boundary inBoundaryType=Boundary::REFLECT, dtype inConstantValue=0)
Definition: gaussianFilter1d.hpp:56
Boundary
Boundary condition to apply to the image filter.
Definition: Boundary.hpp:36
double gaussian1d(double inX, double inMu, double inSigma) noexcept
Definition: gaussian1d.hpp:46
dtype ceil(dtype inValue) noexcept
Definition: ceil.hpp:48
std::uint32_t uint32
Definition: Types.hpp:40
NdArray< dtype > max(const NdArray< dtype > &inArray, Axis inAxis=Axis::NONE)
Definition: max.hpp:44