From 36594879407f5df0d80aa3677647887bd69cde74 Mon Sep 17 00:00:00 2001 From: ankandrew <61120139+ankandrew@users.noreply.github.com> Date: Sun, 8 Dec 2024 20:16:08 -0300 Subject: [PATCH] Add note on passing NumPy array to ALPR predict method --- docs/quick_start.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/quick_start.md b/docs/quick_start.md index b21a758..5ee3622 100644 --- a/docs/quick_start.md +++ b/docs/quick_start.md @@ -14,6 +14,7 @@ alpr = ALPR( ) # The "assets/test_image.png" can be found in repo root dit +# You can also pass a NumPy array containing cropped plate image alpr_results = alpr.predict("assets/test_image.png") print(alpr_results) ```