FER Macbeth Project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
430 B

#pragma once
#include "ofMain.h"
#include "onxProcess.h"
class ofApp : public ofBaseApp{
public:
void setup() override;
void update() override;
void draw() override;
void exit() override;
void keyPressed(int key) override;
void keyReleased(int key) override;
ofVideoPlayer videoPlayer;
std::string videoPath = "compressed-test-video.mp4";
onxProcess onnx;
ofImage inputImage;
ofImage videoFrame;
};