diff --git a/examples/tutorial_api_python/09_keypoints_from_heatmaps.py b/examples/tutorial_api_python/09_keypoints_from_heatmaps.py index fe09593e4e10d604d53ad941f4c9f9ba2a528d4d..0859c08cd32a946cb62e429f8f77d867543273c8 100644 --- a/examples/tutorial_api_python/09_keypoints_from_heatmaps.py +++ b/examples/tutorial_api_python/09_keypoints_from_heatmaps.py @@ -55,7 +55,7 @@ try: datum = op.Datum() imageToProcess = cv2.imread(args[0].image_path) datum.cvInputData = imageToProcess - opWrapper.emplaceAndPop([datum]) + opWrapper.emplaceAndPop(op.VectorDatum([datum])) poseHeatMaps = datum.poseHeatMaps.copy() opWrapper.stop()