eb6aea6e708e0fd87ca6e168a88c60a6fad570c9,SSH/test.py,,,#,8
Before Change
f = sys.argv[1]
img = cv2.imread(f)
print(img.shape)
if img.shape[0]>long_max or img.shape[1]>long_max:
scale = float(long_max) / max(img.shape[0], img.shape[1])
img = cv2.resize(img, (0,0), fx=scale, fy=scale)
print("resize to", img.shape)
for i in xrange(t-1): //warmup
faces = detector.detect(img)
timea = datetime.datetime.now()
faces = detector.detect(img)
After Change
//sys.path.append(".")
from ssh_detector import SSHDetector
scales = [1200, 1600]
t = 2
detector = SSHDetector("./model/e2ef", 0)
f = "../sample-images/t1.jpg"
if len(sys.argv)>1:
f = sys.argv[1]
img = cv2.imread(f)
im_shape = img.shape
print(im_shape)
target_size = scales[0]
max_size = scales[1]
im_size_min = np.min(im_shape[0:2])
im_size_max = np.max(im_shape[0:2])
if im_size_min>target_size or im_size_max>max_size:
im_scale = float(target_size) / float(im_size_min)
// prevent bigger axis from being more than max_size:
if np.round(im_scale * im_size_max) > max_size:
im_scale = float(max_size) / float(im_size_max)
img = cv2.resize(img, None, None, fx=im_scale, fy=im_scale)
print("resize to", img.shape)
for i in xrange(t-1): //warmup
faces = detector.detect(img)
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 11
Instances
Project Name: deepinsight/insightface
Commit Name: eb6aea6e708e0fd87ca6e168a88c60a6fad570c9
Time: 2018-07-09
Author: guojia@gmail.com
File Name: SSH/test.py
Class Name:
Method Name:
Project Name: deepinsight/insightface
Commit Name: 74cdf6d00ff239ea6559812fa157bd138e2578cb
Time: 2018-07-09
Author: guojia@gmail.com
File Name: SSH/test.py
Class Name:
Method Name:
Project Name: has2k1/plotnine
Commit Name: b8f8bbb6e8f5480174c4c49445bc0e7d952f3946
Time: 2014-04-25
Author: eric.chiang.m@gmail.com
File Name: ggplot/geoms/geom_abline.py
Class Name: geom_abline
Method Name: _plot_unit