diff --git a/examples/tutorial_api_python/09_keypoints_from_heatmaps.py b/examples/tutorial_api_python/09_keypoints_from_heatmaps.py index fe09593e..0859c08c 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()