first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#pragma once
#include <memory>
#include <vector>
#include <string>
namespace vp_objects {
class vp_frame_text_target
{
private:
/* data */
public:
vp_frame_text_target(std::vector<std::pair<int, int>> region_vertexes, std::string text, float score);
~vp_frame_text_target();
std::vector<std::pair<int, int>> region_vertexes;
std::string text;
float score;
// flags for text
std::string flags = "";
// clone myself
std::shared_ptr<vp_frame_text_target> clone();
};
}