#ifndef _REQUEST #define _REQUEST #include "ofMain.h" // Embeddings structure struct Vector7D{ float angry; float disgust; float fear; float happy; float sad; float surprise; float neutral; bool operator!=(const Vector7D &other) const { return angry != other.angry || disgust != other.disgust || fear != other.fear || happy != other.happy || sad != other.sad || surprise != other.surprise || neutral != other.neutral; } }; // JSON -> Struct struct VPQuery{ std::string folder; std::string video; std::string image; int frame; }; class Request { public: void setup(std::string ip, int port, std::string page); VPQuery query(Vector7D input); ofHttpRequest request; ofURLFileLoader http; ofJson jsonResponse; Request(); }; #endif