| 85 | } |
| 86 | |
| 87 | static Shape Shape77As22( // return an approximated AR 22 point shape |
| 88 | const Shape& shape) // in: Stasm 77 point shape |
| 89 | { |
| 90 | CV_Assert(shape.rows == 77); |
| 91 | |
| 92 | // first 20 points same as BioId |
| 93 | Shape newshape = DimKeep(Shape77As20(shape), 22, 2); |
| 94 | |
| 95 | CopyPoint(newshape, shape, 20, 3); |
| 96 | CopyPoint(newshape, shape, 21, 9); |
| 97 | |
| 98 | return newshape; |
| 99 | } |
| 100 | |
| 101 | static Shape Shape77AsXm2vts68( // return an approximated XM2VTS 68 point shape |
| 102 | const Shape& shape) // in: Stasm 77 point shape |
no test coverage detected