| | |
| | |
| | import sys |
| | import cv2 |
| | import os |
| | from sys import platform |
| | import argparse |
| | import time |
| |
|
| | try: |
| | |
| | dir_path = os.path.dirname(os.path.realpath(__file__)) |
| | try: |
| | |
| | if platform == "win32": |
| | |
| | sys.path.append(dir_path + '/../../python/openpose/Release'); |
| | os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;' |
| | import pyopenpose as op |
| | else: |
| | |
| | sys.path.append('../../python'); |
| | |
| | |
| | from openpose import pyopenpose as op |
| | except ImportError as e: |
| | print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?') |
| | raise e |
| |
|
| | |
| | parser = argparse.ArgumentParser() |
| | parser.add_argument("--image_dir", default="../../../examples/media/", help="Process a directory of images. Read all standard formats (jpg, png, bmp, etc.).") |
| | parser.add_argument("--no_display", default=False, help="Enable to disable the visual display.") |
| | args = parser.parse_known_args() |
| |
|
| | |
| | params = dict() |
| | params["model_folder"] = "../../../models/" |
| |
|
| | |
| | for i in range(0, len(args[1])): |
| | curr_item = args[1][i] |
| | if i != len(args[1])-1: next_item = args[1][i+1] |
| | else: next_item = "1" |
| | if "--" in curr_item and "--" in next_item: |
| | key = curr_item.replace('-','') |
| | if key not in params: params[key] = "1" |
| | elif "--" in curr_item and "--" not in next_item: |
| | key = curr_item.replace('-','') |
| | if key not in params: params[key] = next_item |
| |
|
| | |
| | |
| | |
| |
|
| | |
| | opWrapper = op.WrapperPython() |
| | opWrapper.configure(params) |
| | opWrapper.start() |
| |
|
| | |
| | imagePaths = op.get_images_on_directory(args[0].image_dir); |
| | start = time.time() |
| |
|
| | |
| | for imagePath in imagePaths: |
| | datum = op.Datum() |
| | imageToProcess = cv2.imread(imagePath) |
| | datum.cvInputData = imageToProcess |
| | opWrapper.emplaceAndPop(op.VectorDatum([datum])) |
| |
|
| | print("Body keypoints: \n" + str(datum.poseKeypoints)) |
| |
|
| | if not args[0].no_display: |
| | cv2.imshow("OpenPose 1.7.0 - Tutorial Python API", datum.cvOutputData) |
| | key = cv2.waitKey(15) |
| | if key == 27: break |
| |
|
| | end = time.time() |
| | print("OpenPose demo successfully finished. Total time: " + str(end - start) + " seconds") |
| | except Exception as e: |
| | print(e) |
| | sys.exit(-1) |
| |
|