facecam2d/src/model.hpp

24 lines
306 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;
2021-02-07 11:03:27 +00:00
std::string name;
public:
Model(const char* path);
void draw();
void updateTransforms(struct FaceData faceData);
2021-02-07 11:03:27 +00:00
std::string getName();
};
#endif