| 32 | namespace stasm |
| 33 | { |
| 34 | class BaseDescMod // abstract base class for all descriptor models |
| 35 | { |
| 36 | public: |
| 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] |
nothing calls this directly
no outgoing calls
no test coverage detected