未验证 提交 c9420b23 编写于 作者: G Guanghua Yu 提交者: GitHub

fix Chinese characters garbled (#642)

上级 b1e7b5d5
...@@ -349,7 +349,7 @@ def load_predictor(model_dir, ...@@ -349,7 +349,7 @@ def load_predictor(model_dir,
config.disable_glog_info() config.disable_glog_info()
# enable shared memory # enable shared memory
config.enable_memory_optim() config.enable_memory_optim()
# disable feed, fetch OPneeded by zero_copy_run # disable feed, fetch OP, needed by zero_copy_run
config.switch_use_feed_fetch_ops(False) config.switch_use_feed_fetch_ops(False)
predictor = fluid.core.create_paddle_predictor(config) predictor = fluid.core.create_paddle_predictor(config)
return predictor return predictor
...@@ -456,10 +456,10 @@ class Detector(): ...@@ -456,10 +456,10 @@ class Detector():
image (str/np.ndarray): path of image/ np.ndarray read by cv2 image (str/np.ndarray): path of image/ np.ndarray read by cv2
threshold (float): threshold of predicted box' score threshold (float): threshold of predicted box' score
Returns: Returns:
results (dict): include 'boxes': np.ndarray: shape:[N,6], N: number of box results (dict): include 'boxes': np.ndarray: shape:[N,6], N: number of box,
matix element:[class, score, x_min, y_min, x_max, y_max] matix element:[class, score, x_min, y_min, x_max, y_max]
MaskRCNN's results include 'masks': np.ndarray: MaskRCNN's results include 'masks': np.ndarray:
shape:[N, class_num, mask_resolution, mask_resolution] shape:[N, class_num, mask_resolution, mask_resolution]
''' '''
inputs, im_info = self.preprocess(image) inputs, im_info = self.preprocess(image)
np_boxes, np_masks = None, None np_boxes, np_masks = None, None
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册