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

Class BaseDescMod

jni/stasm/basedesc.h:34–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32namespace stasm
33{
34class BaseDescMod // abstract base class for all descriptor models
35{
36public:
37 virtual void DescSearch_( // search in area around the current point
38 double& x, // io: (in: old posn of landmark, out: new posn)
39 double& y, // io
40 const Image& img, // in: image scaled to this pyramid level
41 const Shape& shape, // in: current position of the landmarks
42 int ilev, // in: pyramid level (0 is full size)
43 int ipoint) // in: index of the current landmark
44 const = 0;
45
46 virtual ~BaseDescMod() {} // destructor
47};
48
49// vec_vec_BaseDescMod contains the descriptor models, one pointer
50// for each landmark at each pyramid level, index as [ilev][ipoint]

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected