import threading
import time
from typing import List, Tuple, Optional
import cv2
import numpy as np
# -----------------------------------------
# RECTANGLE CLASS (IMAGE COORDS)
# -----------------------------------------
class Rectangle:
def __init__(self, x1: int, y1: int, x2: int, y2...