From 05d0801992b88954647f221816c628c003ff6e24 Mon Sep 17 00:00:00 2001 From: littletomatodonkey <2120160898@bit.edu.cn> Date: Sat, 5 Jun 2021 14:19:54 +0800 Subject: [PATCH] Update predict_system.py --- deploy/python/predict_system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/python/predict_system.py b/deploy/python/predict_system.py index c858d6b7a..84e60e806 100644 --- a/deploy/python/predict_system.py +++ b/deploy/python/predict_system.py @@ -42,7 +42,7 @@ class SystemPredictor(object): xmin, xmax, ymin, ymax = result["bbox"].astype("int") crop_img = img[xmin:xmax, ymin:ymax, :].copy() rec_results = self.rec_predictor.predict(crop_img) - result["featrue"] = rec_results + result["feature"] = rec_results output.append(result) return output