From 8f462160542b70940ed0b1cd12f390d6c0c53bcd Mon Sep 17 00:00:00 2001 From: Gines Hidalgo Date: Mon, 11 Jan 2021 14:56:06 -0500 Subject: [PATCH] Fixed Python compiling issue Signed-off-by: Gines Hidalgo --- python/openpose/openpose_python.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/python/openpose/openpose_python.cpp b/python/openpose/openpose_python.cpp index ddb03a10..f7119094 100644 --- a/python/openpose/openpose_python.cpp +++ b/python/openpose/openpose_python.cpp @@ -144,13 +144,13 @@ namespace op // Pose configuration (use WrapperStructPose{} for default and recommended configuration) const op::WrapperStructPose wrapperStructPose{ - poseMode, netInputSize, outputSize, keypointScaleMode, FLAGS_num_gpu, FLAGS_num_gpu_start, - FLAGS_scale_number, (float)FLAGS_scale_gap, op::flagsToRenderMode(FLAGS_render_pose, multipleView), - poseModel, !FLAGS_disable_blending, (float)FLAGS_alpha_pose, (float)FLAGS_alpha_heatmap, - FLAGS_part_to_show, op::String(FLAGS_model_folder), heatMapTypes, heatMapScaleMode, FLAGS_part_candidates, - (float)FLAGS_render_threshold, FLAGS_number_people_max, FLAGS_maximize_positives, FLAGS_fps_max, - op::String(FLAGS_prototxt_path), op::String(FLAGS_caffemodel_path), - (float)FLAGS_upsampling_ratio, enableGoogleLogging}; + poseMode, netInputSize, FLAGS_net_resolution_dynamic, outputSize, keypointScaleMode, FLAGS_num_gpu, + FLAGS_num_gpu_start, FLAGS_scale_number, (float)FLAGS_scale_gap, + op::flagsToRenderMode(FLAGS_render_pose, multipleView), poseModel, !FLAGS_disable_blending, + (float)FLAGS_alpha_pose, (float)FLAGS_alpha_heatmap, FLAGS_part_to_show, op::String(FLAGS_model_folder), + heatMapTypes, heatMapScaleMode, FLAGS_part_candidates, (float)FLAGS_render_threshold, + FLAGS_number_people_max, FLAGS_maximize_positives, FLAGS_fps_max, op::String(FLAGS_prototxt_path), + op::String(FLAGS_caffemodel_path), (float)FLAGS_upsampling_ratio, enableGoogleLogging}; opWrapper->configure(wrapperStructPose); // Face configuration (use WrapperStructFace{} to disable it) const WrapperStructFace wrapperStructFace{ -- GitLab