fix bug.
This commit is contained in:
@@ -88,7 +88,7 @@ void ArmorFinder::antiTop() {
|
||||
LOGM(STR_CTR(WORD_YELLOW, "switch to normal"));
|
||||
}
|
||||
// cout << getPointLength(last_box.getCenter() - target_box.getCenter()) << endl;
|
||||
if (getPointLength(last_box.getCenter() - target_box.getCenter()) > last_box.rect.height * 1.0) {
|
||||
if (getPointLength(last_box.getCenter() - target_box.getCenter()) > last_box.rect.height * 2.0) {
|
||||
LOGM("switch!");
|
||||
if (150 < interval && interval < 700) {
|
||||
if (anti_top_state == ANTI_TOP) {
|
||||
@@ -98,6 +98,7 @@ void ArmorFinder::antiTop() {
|
||||
getsystime(curr_time);
|
||||
auto calculate_time = getTimeIntervalms(curr_time, frame_time);
|
||||
shoot_delay = mean(top_periodms) - calculate_time;
|
||||
sendBoxPosition(shoot_delay);
|
||||
} else {
|
||||
if (++anti_top_cnt > 4) {
|
||||
anti_top_state = ANTI_TOP;
|
||||
@@ -110,7 +111,7 @@ void ArmorFinder::antiTop() {
|
||||
if (anti_top_state == NORMAL) {
|
||||
sendBoxPosition(0);
|
||||
} else if (interval < top_periodms[-1] * 0.2){
|
||||
sendBoxPosition(shoot_delay);
|
||||
sendBoxPosition(0);
|
||||
}
|
||||
last_box = target_box;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user