update 更新Demo

This commit is contained in:
FrankCV2048
2024-08-26 22:42:27 +08:00
parent 7dc66871ee
commit 173ae711b4
9 changed files with 200 additions and 84 deletions

View File

@ -13,6 +13,24 @@ class Detection_Position:
self.W = 0.0
def init_position(self,X,Y,Z,U,V,W):
self.X = X
self.Y = Y
self.Z = Z
self.U = U
self.V = V
self.W = W
class Real_Position:
def __init__(self):
self.X = 0.0
self.Y = 0.0
self.Z = 0.0
self.U = 0.0
self.V = 0.0
self.W = 0.0
def init_position(self, X, Y, Z, U, V, W):
self.X = X
self.Y = Y
self.Z = Z