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

Method Min

C++/programs/Arithmetic.cpp:85–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85void Arithmetic::Min(Image& Source1, Image& Source2, Image& Dest)
86{
87 CheckSimilarity(Source1, Source2);
88 CheckSimilarity(Source1, Dest);
89
90 Kernel(min_images, In(Source1, Source2), Out(Dest), Source1.Step(), Source2.Step(), Dest.Step(), Source1.Width() * Source1.NbChannels());
91}
92
93void Arithmetic::Max(Image& Source1, Image& Source2, Image& Dest)
94{

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