Commit d9514269 authored by zhongshangwu's avatar zhongshangwu

适配Python3

parent 3c86aeb3
......@@ -6,8 +6,10 @@ import math
import cv2
from multiprocessing import Pool
from itertools import repeat
#from itertools import zip_longest as zip
from itertools import izip
try:
from itertools import izip
except ImportError:
izip = zip
from helper import nms, adjust_input, generate_bbox, detect_first_stage_warpper
class MtcnnDetector(object):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment