From a5b85d39523fd1cd8b0b5fbb833367985f9c64ee Mon Sep 17 00:00:00 2001 From: Gines Date: Wed, 15 Nov 2017 22:28:34 -0500 Subject: [PATCH] Windows working again (#65) --- README.md | 12 ++++++------ doc/release_notes.md | 2 ++ windows/OpenPose/OpenPose.vcxproj | 5 +++++ windows/OpenPose/OpenPose.vcxproj.filters | 24 +++++++++++++++++++++++ 4 files changed, 37 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 7644d7ae..a4445490 100644 --- a/README.md +++ b/README.md @@ -82,15 +82,15 @@ Most users do not need the [OpenPose C++ API](#openpose-c-api), but they can sim - **OpenPose Wrapper**: If you want to read a specific input, and/or add your custom post-processing function, and/or implement your own display/saving, check the `Wrapper` tutorial on [examples/tutorial_wrapper/](examples/tutorial_wrapper/). You can create your custom code on [examples/user_code/](examples/user_code/) and quickly compile it by using `make all` in the OpenPose folder (assuming Makefile installer). -- **Adding An Extra Module**: Check [doc/library_add_new_module.md](./library_add_new_module.md). - - **OpenPose C++ API**: See [doc/library_introduction.md](doc/library_introduction.md). -- **Standalone Face Or Hand Detector**: - - Face keypoint detection without body keypoint detection: If you want to speed it up (but also reduce amount of detected faces), check the OpenCV-face-detector approach in [doc/standalone_face_or_hand_keypoint_detector.md](doc/standalone_face_or_hand_keypoint_detector.md). - - You can use the hand and/or face keypoint detectors with your own face or hand detectors, rather than using the body detector. E.g. useful for camera views at which the hands are visible but not the body, so that the OpenPose detector would fail. See [doc/standalone_face_or_hand_keypoint_detector.md](doc/standalone_face_or_hand_keypoint_detector.md). +- **Adding an extra module**: Check [doc/library_add_new_module.md](./library_add_new_module.md). + +- **Standalone face or hand detector**: + - **Face** keypoint detection **without body** keypoint detection: If you want to speed it up (but also reduce amount of detected faces), check the OpenCV-face-detector approach in [doc/standalone_face_or_hand_keypoint_detector.md](doc/standalone_face_or_hand_keypoint_detector.md). + - **Use your own face/hand detector**: You can use the hand and/or face keypoint detectors with your own face or hand detectors, rather than using the body detector. E.g. useful for camera views at which the hands are visible but not the body (OpenPose detector would fail). See [doc/standalone_face_or_hand_keypoint_detector.md](doc/standalone_face_or_hand_keypoint_detector.md). -- **Library Dependencies**: OpenPose uses default Caffe and OpenCV, as well as any Caffe dependency. The demos additionally use GFlags. It could easily be ported to other deep learning frameworks (Tensorflow, Torch, ...). Feel free to make a pull request if you implement any of those! +- **Library dependencies**: OpenPose uses default Caffe and OpenCV, as well as any Caffe dependency. The demos additionally use GFlags. It could easily be ported to other deep learning frameworks (Tensorflow, Torch, ...). Feel free to make a pull request if you implement any of those! diff --git a/doc/release_notes.md b/doc/release_notes.md index 6fb244bf..ad2875a5 100644 --- a/doc/release_notes.md +++ b/doc/release_notes.md @@ -152,3 +152,5 @@ OpenPose Library - Release Notes ## Current version (future OpenPose 1.2.1) +3. Main bugs fixed: + 1. Render working on images > 4K (#324). diff --git a/windows/OpenPose/OpenPose.vcxproj b/windows/OpenPose/OpenPose.vcxproj index 7ac7d07e..5fbf7258 100644 --- a/windows/OpenPose/OpenPose.vcxproj +++ b/windows/OpenPose/OpenPose.vcxproj @@ -126,6 +126,9 @@ + + + @@ -269,6 +272,8 @@ + + diff --git a/windows/OpenPose/OpenPose.vcxproj.filters b/windows/OpenPose/OpenPose.vcxproj.filters index e030f616..bdf78402 100644 --- a/windows/OpenPose/OpenPose.vcxproj.filters +++ b/windows/OpenPose/OpenPose.vcxproj.filters @@ -75,6 +75,15 @@ {b47060c5-db00-4436-94f9-e20bb1ba71db} + + {c072f156-f705-4e3f-a828-a2e14361a3aa} + + + {41a8ee1c-20c0-4b08-889e-017624f22b2e} + + + {24e85903-dd30-4fe6-af6f-154724a96a70} + @@ -524,6 +533,15 @@ Header Files\wrapper + + Header Files\experimental\tracking + + + Header Files\experimental\tracking + + + Header Files\experimental\tracking + @@ -777,6 +795,12 @@ Source Files\wrapper + + Source Files\experimental\tracking + + + Source Files\experimental\tracking + -- GitLab