NumCpp  2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
clusterPixels.hpp
Go to the documentation of this file.
1
28
29#pragma once
30
31#include <vector>
32
34#include "NumCpp/Core/Types.hpp"
37#include "NumCpp/NdArray.hpp"
38
39namespace nc::imageProcessing
40{
41 //============================================================================
42 // Method Description:
50 template<typename dtype>
51 std::vector<Cluster<dtype>>
52 clusterPixels(const NdArray<dtype>& inImageArray, const NdArray<bool>& inExceedances, uint8 inBorderWidth = 0)
53 {
55
56 ClusterMaker<dtype> clusterMaker(&inExceedances, &inImageArray, inBorderWidth);
57 return std::vector<Cluster<dtype>>(clusterMaker.begin(), clusterMaker.end());
58 }
59} // namespace nc::imageProcessing
#define STATIC_ASSERT_ARITHMETIC(dtype)
Definition: StaticAsserts.hpp:39
Holds 1D and 2D arrays, the main work horse of the NumCpp library.
Definition: NdArrayCore.hpp:139
Clusters exceedance data into contiguous groups.
Definition: ClusterMaker.hpp:51
const_iterator begin() const noexcept
Definition: ClusterMaker.hpp:148
const_iterator end() const noexcept
Definition: ClusterMaker.hpp:159
Definition: applyThreshold.hpp:34
std::vector< Cluster< dtype > > clusterPixels(const NdArray< dtype > &inImageArray, const NdArray< bool > &inExceedances, uint8 inBorderWidth=0)
Definition: clusterPixels.hpp:52
std::uint8_t uint8
Definition: Types.hpp:42