facecam2d/src/cv.hpp

22 lines
258 B
C++
Raw Normal View History

2021-01-06 00:10:55 +00:00
#ifndef CV_HPP
#define CV_HPP
#include <map>
#include <glm/vec2.hpp>
struct FaceData {
std::map<int, glm::vec2> positions;
std::map<int, bool> triggers;
float headRotation;
float scale;
};
void initCV();
2021-01-06 00:10:55 +00:00
void cvFrame();
void cvShowFrame();
#endif