sort imports

This commit is contained in:
Blake Blackshear
2020-11-04 06:31:25 -06:00
parent 3a3cb24631
commit 03c855ecbe
13 changed files with 83 additions and 69 deletions

View File

@@ -1,19 +1,21 @@
from abc import ABC, abstractmethod
import datetime
import time
import signal
import traceback
import collections
import json
import numpy as np
import subprocess as sp
import cv2
import threading
import matplotlib.pyplot as plt
import datetime
import hashlib
import json
import signal
import subprocess as sp
import threading
import time
import traceback
from abc import ABC, abstractmethod
from multiprocessing import shared_memory
from typing import AnyStr
import cv2
import matplotlib.pyplot as plt
import numpy as np
def draw_box_with_label(frame, x_min, y_min, x_max, y_max, label, info, thickness=2, color=None, position='ul'):
if color is None:
color = (0,0,255)
@@ -243,4 +245,4 @@ class SharedMemoryFrameManager(FrameManager):
if name in self.shm_store:
self.shm_store[name].close()
self.shm_store[name].unlink()
del self.shm_store[name]
del self.shm_store[name]