From 4902c033c4e08f66b166fe89dbb851500f65f5a4 Mon Sep 17 00:00:00 2001 From: Gines Hidalgo Date: Sat, 4 Apr 2020 18:38:17 -0400 Subject: [PATCH] Fixed compiling error --- README.md | 8 ++++---- examples/tests/resizeTest.cpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 32c085e1..835d55f2 100644 --- a/README.md +++ b/README.md @@ -187,10 +187,10 @@ Just comment on GitHub or make a pull request and we will answer as soon as poss Please cite these papers in your publications if it helps your research. For standard OpenPose, cite `[Cao et al. 2018]`. If you also use the hand and face keypoint detectors, then cite `[Cao et al. 2018]` and `[Simon et al. 2017]` (the face detector was trained using the same procedure than the hand detector). @article{8765346, - author={Z. {Cao} and G. {Hidalgo Martinez} and T. {Simon} and S. {Wei} and Y. A. {Sheikh}}, - journal={IEEE Transactions on Pattern Analysis and Machine Intelligence}, - title={OpenPose: Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields}, - year={2019}, volume={}, number={}, pages={1-1} + author = {Z. {Cao} and G. {Hidalgo Martinez} and T. {Simon} and S. {Wei} and Y. A. {Sheikh}}, + journal = {IEEE Transactions on Pattern Analysis and Machine Intelligence}, + title = {OpenPose: Realtime Multi-Person 2D Pose Estimation using Part Affinity Fields}, + year = {2019} } @inproceedings{simon2017hand, diff --git a/examples/tests/resizeTest.cpp b/examples/tests/resizeTest.cpp index 06652e47..ab3fcd7b 100644 --- a/examples/tests/resizeTest.cpp +++ b/examples/tests/resizeTest.cpp @@ -79,7 +79,7 @@ try { // logging_level - op::Matrix opImg = op::loadImage(FLAGS_image_path, getCvLoadImageGrayScale()); + op::Matrix opImg = op::loadImage(FLAGS_image_path, op::getCvLoadImageGrayScale()); cv::Mat img = OP_OP2CVMAT(opImg); if(img.empty()) op::error("Could not open or find the image: " + FLAGS_image_path, __LINE__, __FUNCTION__, __FILE__);