From 8e700adfa3c35119e821426d9cc7898ae77c9747 Mon Sep 17 00:00:00 2001 From: shiyu22 Date: Mon, 11 Apr 2022 19:34:57 +0800 Subject: [PATCH] Update yolov5 README Signed-off-by: shiyu22 --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0d4c6fa..fc231f5 100644 --- a/README.md +++ b/README.md @@ -30,9 +30,9 @@ Writing the pipeline in the simplified way import towhee towhee.glob('./test.jpg') \ - .image_decode() \ - .object_detection.yolov5() \ - .show() + .image_decode() \ + .object_detection.yolov5() \ + .show() ``` results1 @@ -43,10 +43,10 @@ Writing the same pipeline with explicitly specified inputs and outputs import towhee towhee.glob['path']('./test.png') \ - .image_decode['path','img']() \ - .object_detection.yolov5['img', ('box', 'class', 'score')]() \ - .select('box', 'class', 'score') \ - .show() + .image_decode['path','img']() \ + .object_detection.yolov5['img', ('box', 'class', 'score')]() \ + .select('box', 'class', 'score') \ + .show() ``` results1