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

Method Mod

jni/stasm/asm.h:76–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74
75public:
76 Mod(EYAW eyaw, // constructor
77 ESTART estart,
78 std::string datadir,
79 Shape meanshape,
80 VEC eigvals,
81 MAT eigvecs,
82 int neigs,
83 double bmax,
84 unsigned hackbits,
85 const BaseDescMod** descmods,
86 int ndescmods)
87
88 : eyaw_(eyaw),
89 estart_(estart),
90 datadir_(datadir),
91 shapemod_(meanshape, eigvals, eigvecs, neigs, bmax, hackbits),
92 descmods_(DescMods_(descmods, ndescmods))
93 {
94 CV_Assert(eyaw == EYAW_45 || eyaw == EYAW_22 || eyaw == EYAW00 ||
95 eyaw == EYAW22 || eyaw == EYAW45);
96
97 CV_Assert(estart == ESTART_RECT_ONLY || estart == ESTART_EYES ||
98 estart == ESTART_EYE_AND_MOUTH);
99 }
100
101 virtual ~Mod() {} // destructor
102

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected