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

41
objects/shapes/vp_rect.cpp Executable file
View File

@@ -0,0 +1,41 @@
#include "vp_rect.h"
namespace vp_objects {
vp_rect::vp_rect(int x, int y, int width, int height):
x(x),
y(y),
width(width),
height(height) {
}
vp_rect::vp_rect(vp_point left_top, vp_size wh):
x(left_top.x), y(left_top.y), width(wh.width), height(wh.height) {
}
vp_rect::~vp_rect() {
}
vp_point vp_rect::center() {
return vp_point(x + width / 2, y + height / 2);
}
float vp_rect::iou_with(const vp_rect & rect) {
return 1.0;
}
bool vp_rect::contains(const vp_point & p) {
return true;
}
vp_point vp_rect::track_point() {
// by default the center point of bottom is tracking point.
return {x + width / 2, y + height};
}
}