Search in sources :

Example 1 with OpString

use of org.bytedeco.openpose.OpString in project javacpp-presets by bytedeco.

the class openpose method mkWrapperStructPose.

static WrapperStructPose mkWrapperStructPose() {
    String modelFolder = System.getenv("MODEL_FOLDER");
    if (modelFolder == null) {
        System.err.println("MODEL_FOLDER must be set");
        System.exit(-1);
    }
    WrapperStructPose structPose = new WrapperStructPose();
    structPose.modelFolder(new OpString(modelFolder));
    return structPose;
}
Also used : OpString(org.bytedeco.openpose.OpString) OpString(org.bytedeco.openpose.OpString) WrapperStructPose(org.bytedeco.openpose.WrapperStructPose)

Aggregations

OpString (org.bytedeco.openpose.OpString)1 WrapperStructPose (org.bytedeco.openpose.WrapperStructPose)1