MCPcopy Create free account
hub / github.com/KAlO2/PerfectShow / ShapeWidth

Function ShapeWidth

jni/stasm/misc.cpp:376–382  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

374}
375
376double ShapeWidth(const Shape& shape) // width of shape in pixels
377{
378 CV_Assert(shape.rows > 1);
379 double xmin, xmax, ymin, ymax;
380 ShapeMinMax(xmin, xmax, ymin, ymax, shape);
381 return ABS(xmax - xmin);
382}
383
384double ShapeHeight(const Shape& shape) // height of shape in pixels
385{

Callers 3

EyeMouthDistFunction · 0.85
InterEyeDistFunction · 0.85
DrawShapeFunction · 0.85

Calls 2

ShapeMinMaxFunction · 0.85
ABSFunction · 0.85

Tested by

no test coverage detected