MCPcopy Create free account
hub / github.com/CRVI/OpenCLIPP / MatchSquareDiffNorm

Method MatchSquareDiffNorm

C++/programs/ImageProximityFFT.cpp:96–102  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

94}
95
96void ImageProximityFFT::MatchSquareDiffNorm(int width, int hight, Image& Source, double * templ_sqsum, Image& Dest)
97{
98 cl_float4 TemplateSqSum = {float(templ_sqsum[0]), float(templ_sqsum[1]), float(templ_sqsum[2]), float(templ_sqsum[3])};
99
100 Kernel(square_difference_norm, In(Source), Out(Dest), Source.Step(), Dest.Step(), Dest.Width(), Dest.Height(),
101 width, hight, TemplateSqSum);
102}
103
104void ImageProximityFFT::MatchCrossCorrNorm(int width, int hight, Image& Source, double * templ_sqsum, Image& Dest)
105{

Callers

nothing calls this directly

Calls 3

StepMethod · 0.80
WidthMethod · 0.80
HeightMethod · 0.80

Tested by

no test coverage detected