EdgeDetectorConfigData configuration data structure. More...
#include <RawEdgeDetectorConfig.hpp>
Public Attributes | |
std::vector< std::vector< int > > | sobelFilterHorizontalKernel |
std::vector< std::vector< int > > | sobelFilterVerticalKernel |
EdgeDetectorConfigData configuration data structure.
Definition at line 14 of file RawEdgeDetectorConfig.hpp.
std::vector<std::vector<int> > dai::EdgeDetectorConfigData::sobelFilterHorizontalKernel |
Used for horizontal gradient computation in 3x3 Sobel filter Format - 3x3 matrix, 2nd column must be 0 Default - +1 0 -1; +2 0 -2; +1 0 -1
Definition at line 20 of file RawEdgeDetectorConfig.hpp.
std::vector<std::vector<int> > dai::EdgeDetectorConfigData::sobelFilterVerticalKernel |
Used for vertical gradient computation in 3x3 Sobel filter Format - 3x3 matrix, 2nd row must be 0 Default - +1 +2 +1; 0 0 0; -1 -2 -1
Definition at line 26 of file RawEdgeDetectorConfig.hpp.