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

Method MinAbs

C++/programs/Statistics.cpp:134–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

132}
133
134double Statistics::MinAbs(Image& Source)
135{
136 Check1Channel(Source);
137
138 InitAbs(Source);
139
140 Kernel(reduce_minabs, In(Source), Out(), m_ResultBuffer, Source.Step(), Source.Width(), Source.Height());
141
142 m_ResultBuffer.Read(true);
143
144 return m_Result[0];
145}
146
147double Statistics::MaxAbs(Image& Source)
148{

Callers

nothing calls this directly

Calls 7

Check1ChannelFunction · 0.85
ReduceMinFunction · 0.85
StepMethod · 0.80
WidthMethod · 0.80
HeightMethod · 0.80
NbChannelsMethod · 0.80
ReadMethod · 0.45

Tested by

no test coverage detected