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

Function getTransformFunc

deps/opencv/modules/core/src/matmul.cpp:1735–1745  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1733typedef void (*TransformFunc)( const uchar* src, uchar* dst, const uchar* m, int, int, int );
1734
1735static TransformFunc getTransformFunc(int depth)
1736{
1737 static TransformFunc transformTab[] =
1738 {
1739 (TransformFunc)transform_8u, (TransformFunc)transform_8s, (TransformFunc)transform_16u,
1740 (TransformFunc)transform_16s, (TransformFunc)transform_32s, (TransformFunc)transform_32f,
1741 (TransformFunc)transform_64f, 0
1742 };
1743
1744 return transformTab[depth];
1745}
1746
1747static TransformFunc getDiagTransformFunc(int depth)
1748{

Callers 1

transformMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected