facecam2d/src/model.hpp

20 lines
260 B
C++
Raw Normal View History

#ifndef MODEL_HPP
#define MODEL_HPP
#include <vector>
#include <modelpart.hpp>
#include <cv.hpp>
class Model {
std::vector<ModelPart> parts;
public:
Model(const char* path);
void draw();
void updateTransforms(struct FaceData faceData);
};
#endif