From 40182f0854c9d714d3246a9c409cffeeffda7c52 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Mon, 19 Sep 2022 14:30:32 +0200 Subject: [PATCH] :sparkles: --- find_aruco.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/find_aruco.py b/find_aruco.py index 4ab9097..2d36f8a 100644 --- a/find_aruco.py +++ b/find_aruco.py @@ -12,7 +12,9 @@ def main(): aruco_dict, parameters=aruco_params ) - print(detected) + print("Corners: ", detected[0]) + print("Ids: ", detected[1]) + print("Rejected: ", detected[0]) if __name__ == "__main__": main()