| |
| |
| |
| |
| |
| |
|
|
| |
| #include <opencv2/opencv.hpp> |
| |
| #define OPENPOSE_FLAGS_DISABLE_PRODUCER |
| #define OPENPOSE_FLAGS_DISABLE_DISPLAY |
| #include <openpose/flags.hpp> |
| |
| #include <openpose/headers.hpp> |
|
|
| |
| |
| DEFINE_string(image_path, "examples/media/COCO_val2014_000000000294.jpg", |
| "Process an image. Read all standard formats (jpg, png, bmp, etc.)."); |
| |
| DEFINE_bool(no_display, false, |
| "Enable to disable the visual display."); |
|
|
| |
| void display(const std::shared_ptr<std::vector<std::shared_ptr<op::Datum>>>& datumsPtr) |
| { |
| try |
| { |
| |
| |
| |
| if (datumsPtr != nullptr && !datumsPtr->empty()) |
| { |
| |
| const cv::Mat cvMat = OP_OP2CVCONSTMAT(datumsPtr->at(0)->cvOutputData); |
| if (!cvMat.empty()) |
| { |
| cv::imshow(OPEN_POSE_NAME_AND_VERSION + " - Tutorial C++ API", cvMat); |
| cv::waitKey(0); |
| } |
| else |
| op::opLog("Empty cv::Mat as output.", op::Priority::High, __LINE__, __FUNCTION__, __FILE__); |
| } |
| else |
| op::opLog("Nullptr or empty datumsPtr found.", op::Priority::High); |
| } |
| catch (const std::exception& e) |
| { |
| op::error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| } |
| } |
|
|
| void printKeypoints(const std::shared_ptr<std::vector<std::shared_ptr<op::Datum>>>& datumsPtr) |
| { |
| try |
| { |
| |
| if (datumsPtr != nullptr && !datumsPtr->empty()) |
| { |
| op::opLog("Body keypoints: " + datumsPtr->at(0)->poseKeypoints.toString(), op::Priority::High); |
| op::opLog("Face keypoints: " + datumsPtr->at(0)->faceKeypoints.toString(), op::Priority::High); |
| op::opLog("Left hand keypoints: " + datumsPtr->at(0)->handKeypoints[0].toString(), op::Priority::High); |
| op::opLog("Right hand keypoints: " + datumsPtr->at(0)->handKeypoints[1].toString(), op::Priority::High); |
| } |
| else |
| op::opLog("Nullptr or empty datumsPtr found.", op::Priority::High); |
| } |
| catch (const std::exception& e) |
| { |
| op::error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| } |
| } |
|
|
| void configureWrapper(op::Wrapper& opWrapper) |
| { |
| try |
| { |
| |
|
|
| |
| op::checkBool( |
| 0 <= FLAGS_logging_level && FLAGS_logging_level <= 255, "Wrong logging_level value.", |
| __LINE__, __FUNCTION__, __FILE__); |
| op::ConfigureLog::setPriorityThreshold((op::Priority)FLAGS_logging_level); |
| op::Profiler::setDefaultX(FLAGS_profile_speed); |
|
|
| |
| |
| const auto outputSize = op::flagsToPoint(op::String(FLAGS_output_resolution), "-1x-1"); |
| |
| const auto netInputSize = op::flagsToPoint(op::String(FLAGS_net_resolution), "-1x368"); |
| |
| const auto faceNetInputSize = op::flagsToPoint(op::String(FLAGS_face_net_resolution), "368x368 (multiples of 16)"); |
| |
| const auto handNetInputSize = op::flagsToPoint(op::String(FLAGS_hand_net_resolution), "368x368 (multiples of 16)"); |
| |
| const auto poseMode = op::flagsToPoseMode(FLAGS_body); |
| |
| const auto poseModel = op::flagsToPoseModel(op::String(FLAGS_model_pose)); |
| |
| if (!FLAGS_write_keypoint.empty()) |
| op::opLog( |
| "Flag `write_keypoint` is deprecated and will eventually be removed. Please, use `write_json`" |
| " instead.", op::Priority::Max); |
| |
| const auto keypointScaleMode = op::flagsToScaleMode(FLAGS_keypoint_scale); |
| |
| const auto heatMapTypes = op::flagsToHeatMaps(FLAGS_heatmaps_add_parts, FLAGS_heatmaps_add_bkg, |
| FLAGS_heatmaps_add_PAFs); |
| const auto heatMapScaleMode = op::flagsToHeatMapScaleMode(FLAGS_heatmaps_scale); |
| |
| const auto multipleView = (FLAGS_3d || FLAGS_3d_views > 1); |
| |
| const auto faceDetector = op::flagsToDetector(FLAGS_face_detector); |
| const auto handDetector = op::flagsToDetector(FLAGS_hand_detector); |
| |
| const bool enableGoogleLogging = true; |
|
|
| |
| const op::WrapperStructPose wrapperStructPose{ |
| 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); |
| |
| const op::WrapperStructFace wrapperStructFace{ |
| FLAGS_face, faceDetector, faceNetInputSize, |
| op::flagsToRenderMode(FLAGS_face_render, multipleView, FLAGS_render_pose), |
| (float)FLAGS_face_alpha_pose, (float)FLAGS_face_alpha_heatmap, (float)FLAGS_face_render_threshold}; |
| opWrapper.configure(wrapperStructFace); |
| |
| const op::WrapperStructHand wrapperStructHand{ |
| FLAGS_hand, handDetector, handNetInputSize, FLAGS_hand_scale_number, (float)FLAGS_hand_scale_range, |
| op::flagsToRenderMode(FLAGS_hand_render, multipleView, FLAGS_render_pose), (float)FLAGS_hand_alpha_pose, |
| (float)FLAGS_hand_alpha_heatmap, (float)FLAGS_hand_render_threshold}; |
| opWrapper.configure(wrapperStructHand); |
| |
| const op::WrapperStructExtra wrapperStructExtra{ |
| FLAGS_3d, FLAGS_3d_min_views, FLAGS_identification, FLAGS_tracking, FLAGS_ik_threads}; |
| opWrapper.configure(wrapperStructExtra); |
| |
| const op::WrapperStructOutput wrapperStructOutput{ |
| FLAGS_cli_verbose, op::String(FLAGS_write_keypoint), op::stringToDataFormat(FLAGS_write_keypoint_format), |
| op::String(FLAGS_write_json), op::String(FLAGS_write_coco_json), FLAGS_write_coco_json_variants, |
| FLAGS_write_coco_json_variant, op::String(FLAGS_write_images), op::String(FLAGS_write_images_format), |
| op::String(FLAGS_write_video), FLAGS_write_video_fps, FLAGS_write_video_with_audio, |
| op::String(FLAGS_write_heatmaps), op::String(FLAGS_write_heatmaps_format), op::String(FLAGS_write_video_3d), |
| op::String(FLAGS_write_video_adam), op::String(FLAGS_write_bvh), op::String(FLAGS_udp_host), |
| op::String(FLAGS_udp_port)}; |
| opWrapper.configure(wrapperStructOutput); |
| |
| |
| if (FLAGS_disable_multi_thread) |
| opWrapper.disableMultiThreading(); |
| } |
| catch (const std::exception& e) |
| { |
| op::error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| } |
| } |
|
|
| int tutorialApiCpp() |
| { |
| try |
| { |
| op::opLog("Starting OpenPose demo...", op::Priority::High); |
| const auto opTimer = op::getTimerInit(); |
|
|
| |
| const cv::Mat cvImageToProcess = cv::imread(FLAGS_image_path); |
| const op::Matrix imageToProcess = OP_CV2OPCONSTMAT(cvImageToProcess); |
|
|
| |
| FLAGS_body = 2; |
|
|
| |
| op::opLog("Configuring OpenPose...", op::Priority::High); |
| op::Wrapper opWrapper{op::ThreadManagerMode::Asynchronous}; |
| configureWrapper(opWrapper); |
|
|
| |
| std::shared_ptr<std::vector<std::shared_ptr<op::Datum>>> datumHeatmaps; |
| |
| |
| try |
| { |
| op::opLog("Temporarily running another OpenPose instance to get the heatmaps...", op::Priority::High); |
| |
| FLAGS_heatmaps_add_parts = true; |
| FLAGS_heatmaps_add_bkg = true; |
| FLAGS_heatmaps_add_PAFs = true; |
| FLAGS_heatmaps_scale = 3; |
| FLAGS_upsampling_ratio = 1; |
| FLAGS_body = 1; |
|
|
| |
| op::Wrapper opWrapperGetHeatMaps{op::ThreadManagerMode::Asynchronous}; |
| configureWrapper(opWrapperGetHeatMaps); |
|
|
| |
| opWrapperGetHeatMaps.start(); |
|
|
| |
| datumHeatmaps = opWrapperGetHeatMaps.emplaceAndPop(imageToProcess); |
| if (datumHeatmaps == nullptr) |
| op::error("Image could not be processed.", __LINE__, __FUNCTION__, __FILE__); |
| } |
| catch (const std::exception& e) |
| { |
| op::error(e.what(), __LINE__, __FUNCTION__, __FILE__); |
| } |
|
|
| |
| op::opLog("Starting thread(s)...", op::Priority::High); |
| opWrapper.start(); |
|
|
| |
| auto datumProcessed = std::make_shared<std::vector<std::shared_ptr<op::Datum>>>(); |
| datumProcessed->emplace_back(); |
| auto& datumPtr = datumProcessed->at(0); |
| datumPtr = std::make_shared<op::Datum>(); |
|
|
| |
| datumPtr->cvInputData = imageToProcess; |
| datumPtr->poseNetOutput = datumHeatmaps->at(0)->poseHeatMaps; |
|
|
| |
| if (opWrapper.emplaceAndPop(datumProcessed)) |
| { |
| printKeypoints(datumProcessed); |
| if (!FLAGS_no_display) |
| display(datumProcessed); |
| } |
| else |
| op::opLog("Image could not be processed.", op::Priority::High); |
|
|
| |
| op::opLog("NOTE: In addition with the user flags, this demo has auto-selected the following flags:\n" |
| "\t`--body 2`", op::Priority::High); |
|
|
| |
| op::printTime(opTimer, "OpenPose demo successfully finished. Total time: ", " seconds.", op::Priority::High); |
|
|
| |
| return 0; |
| } |
| catch (const std::exception&) |
| { |
| return -1; |
| } |
| } |
|
|
| int main(int argc, char *argv[]) |
| { |
| |
| gflags::ParseCommandLineFlags(&argc, &argv, true); |
|
|
| |
| return tutorialApiCpp(); |
| } |
|
|