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

Method Max

C++/programs/Arithmetic.cpp:93–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91}
92
93void Arithmetic::Max(Image& Source1, Image& Source2, Image& Dest)
94{
95 CheckSimilarity(Source1, Source2);
96 CheckSimilarity(Source1, Dest);
97
98 Kernel(max_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels());
99}
100
101void Arithmetic::Mean(Image& Source1, Image& Source2, Image& Dest)
102{

Callers

nothing calls this directly

Calls 4

CheckSimilarityFunction · 0.85
StepMethod · 0.80
WidthMethod · 0.80
NbChannelsMethod · 0.80

Tested by

no test coverage detected