摘要: # -*- coding: utf-8 -*- class PID: def __init__(self, P=0.2, I=0.0, D=0.0): self.Kp = P self.Ki = I self.Kd = D self.sample_time = 0.00 self.current_t 阅读全文
posted @ 2020-05-08 20:27 McKay 阅读(1784) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- import math import cv2 as cv class Point(object): def __init__(self, position, parent): self.position = position self.parent = 阅读全文
posted @ 2020-05-08 20:09 McKay 阅读(1009) 评论(0) 推荐(0) 编辑