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,22 @@
#include "vp_frame_text_target.h"
namespace vp_objects {
vp_frame_text_target::vp_frame_text_target(std::vector<std::pair<int, int>> region_vertexes,
std::string text,
float score):
region_vertexes(region_vertexes),
text(text),
score(score) {
}
vp_frame_text_target::~vp_frame_text_target() {
}
std::shared_ptr<vp_frame_text_target> vp_frame_text_target::clone() {
return std::make_shared<vp_frame_text_target>(*this);
}
}