remove unneccesary import
This commit is contained in:
parent
12ce9e1751
commit
df5d72ca83
1 changed files with 2 additions and 2 deletions
|
@ -223,9 +223,9 @@ def draw_detection(image, startX, startY, endX, endY, confidence, color=(0,0,255
|
|||
|
||||
|
||||
def process1_hog(in_q, out_q):
|
||||
from skimage.feature import hog as hog_orig
|
||||
# from skimage.feature import hog as hog_orig
|
||||
from .hog import hog # use modified version for viz
|
||||
from skimage import data, exposure
|
||||
from skimage import exposure
|
||||
import matplotlib.pyplot as plt
|
||||
import dlib
|
||||
import matplotlib.pyplot as plt
|
||||
|
|
Loading…
Reference in a new issue