MCPcopy Create free account
hub / github.com/creatale/node-dv / icvMed3

Function icvMed3

deps/opencv/modules/core/src/datastructs.cpp:1891–1897  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1889}
1890
1891inline schar*
1892icvMed3( schar* a, schar* b, schar* c, CvCmpFunc cmp_func, void* aux )
1893{
1894 return cmp_func(a, b, aux) < 0 ?
1895 (cmp_func(b, c, aux) < 0 ? b : cmp_func(a, c, aux) < 0 ? c : a)
1896 :(cmp_func(b, c, aux) > 0 ? b : cmp_func(a, c, aux) < 0 ? a : c);
1897}
1898
1899CV_IMPL void
1900cvSeqSort( CvSeq* seq, CvCmpFunc cmp_func, void* aux )

Callers 1

cvSeqSortFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected