diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 0000000..d9f51f1
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1 @@
+*.dll filter=lfs diff=lfs merge=lfs -text
diff --git a/Class/detection/fall_detection.py b/Class/detection/fall_detection.py
new file mode 100644
index 0000000..7d0c23a
--- /dev/null
+++ b/Class/detection/fall_detection.py
@@ -0,0 +1,92 @@
+# # From Python
+# # It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ # dir_path = os.path.dirname(os.path.realpath(__file__))
+ dir_path = 'D:\\BJTU\\Python\\openpose-master\\build-2017'
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '\\python\\openpose\\Release')
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '\\x64\\Release;' + dir_path + '\\bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python')
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print(
+ 'Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ cap = cv2.VideoCapture(0)
+
+ _, frame = cap.read()
+ cv2.imwrite('fall_detection.jpg', frame)
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path",
+ default="fall_detection.jpg",
+ help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "D:\\BJTU\\Python\\openpose-master\\models\\"
+ params['net_resolution'] = "-1x320"
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1]) - 1:
+ next_item = args[1][i + 1]
+ else:
+ next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-', '')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-', '')
+ if key not in params: params[key] = next_item
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+ while cap.isOpened():
+ flag, frame = cap.read()
+ kk = cv2.waitKey(1)
+ # 按下 q 键退出
+ if kk == ord('q'):
+ break
+ else:
+ cv2.imwrite('fall_detection.jpg', frame)
+
+ # Process Image
+ datum = op.Datum()
+ imageToProcess = cv2.imread(args[0].image_path)
+ datum.cvInputData = imageToProcess
+ opWrapper.emplaceAndPop([datum])
+
+ # Display Image
+ print("Body keypoints: \n" + str(datum.poseKeypoints))
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ cap.release()
+ cv2.destroyAllWindows()
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/3rdparty/pybind11/ALL_BUILD.vcxproj b/Lib/3rdparty/pybind11/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..1221254
--- /dev/null
+++ b/Lib/3rdparty/pybind11/ALL_BUILD.vcxproj
@@ -0,0 +1,71 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ ALL_BUILD
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/3rdparty/pybind11/ALL_BUILD.vcxproj.filters b/Lib/3rdparty/pybind11/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..c048a65
--- /dev/null
+++ b/Lib/3rdparty/pybind11/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/Lib/3rdparty/pybind11/CMakeFiles/generate.stamp b/Lib/3rdparty/pybind11/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/3rdparty/pybind11/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/3rdparty/pybind11/CMakeFiles/generate.stamp.depend b/Lib/3rdparty/pybind11/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..c2009f7
--- /dev/null
+++ b/Lib/3rdparty/pybind11/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,14 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/3rdparty/pybind11/CMakeLists.txt
+D:/BJTU/Python/openpose-master/3rdparty/pybind11/tools/FindPythonLibsNew.cmake
+D:/BJTU/Python/openpose-master/3rdparty/pybind11/tools/pybind11Tools.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakePackageConfigHelpers.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeParseArguments.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CheckCXXCompilerFlag.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CheckCXXSourceCompiles.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindPackageMessage.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindPythonInterp.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/GNUInstallDirs.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/WriteBasicConfigVersionFile.cmake
diff --git a/Lib/3rdparty/pybind11/INSTALL.vcxproj b/Lib/3rdparty/pybind11/INSTALL.vcxproj
new file mode 100644
index 0000000..ce37c76
--- /dev/null
+++ b/Lib/3rdparty/pybind11/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\3rdparty\pybind11\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\3rdparty\pybind11\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/3rdparty/pybind11/INSTALL.vcxproj.filters b/Lib/3rdparty/pybind11/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..72970f7
--- /dev/null
+++ b/Lib/3rdparty/pybind11/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/3rdparty/pybind11/cmake_install.cmake b/Lib/3rdparty/pybind11/cmake_install.cmake
new file mode 100644
index 0000000..90f1c8d
--- /dev/null
+++ b/Lib/3rdparty/pybind11/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/3rdparty/pybind11
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/3rdparty/pybind11/pybind11.sln b/Lib/3rdparty/pybind11/pybind11.sln
new file mode 100644
index 0000000..00db92f
--- /dev/null
+++ b/Lib/3rdparty/pybind11/pybind11.sln
@@ -0,0 +1,37 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CMakePredefinedTargets", "CMakePredefinedTargets", "{627A9EC6-7F6A-39D5-AC38-33089FAAA6D3}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{122B98FA-1CE8-3F5C-941A-0FCB757B1C38}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{639B265C-F24F-371C-BC88-C7923582563E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38} = {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Release|x64 = Release|x64
+ Debug|x64 = Debug|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Release|x64.ActiveCfg = Release|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Release|x64.Build.0 = Release|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Debug|x64.ActiveCfg = Debug|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Debug|x64.Build.0 = Debug|x64
+ {639B265C-F24F-371C-BC88-C7923582563E}.Release|x64.ActiveCfg = Release|x64
+ {639B265C-F24F-371C-BC88-C7923582563E}.Debug|x64.ActiveCfg = Debug|x64
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38} = {627A9EC6-7F6A-39D5-AC38-33089FAAA6D3}
+ {639B265C-F24F-371C-BC88-C7923582563E} = {627A9EC6-7F6A-39D5-AC38-33089FAAA6D3}
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {96A959F6-5748-3E4B-94BA-72B9F1A908B7}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/Lib/ALL_BUILD.vcxproj b/Lib/ALL_BUILD.vcxproj
new file mode 100644
index 0000000..cb3f391
--- /dev/null
+++ b/Lib/ALL_BUILD.vcxproj
@@ -0,0 +1,173 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ ALL_BUILD
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+
+
+
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}
+ 01_body_from_image_default
+
+
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}
+ 02_whole_body_from_image_default
+
+
+ {75584824-2A5F-3172-AD57-F19C98E43ACA}
+ 03_keypoints_from_image
+
+
+ {271951E6-1C8C-33C1-981D-783A3B02BA07}
+ 04_keypoints_from_images
+
+
+ {EEC9366B-9078-3EEA-905D-9E1019445962}
+ 05_keypoints_from_images_multi_gpu
+
+
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB}
+ 06_face_from_image
+
+
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}
+ 07_hand_from_image
+
+
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}
+ 08_heatmaps_from_image
+
+
+ {5509C517-EB61-3755-89BD-6684706E6832}
+ 09_keypoints_from_heatmaps
+
+
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}
+ 10_asynchronous_custom_input
+
+
+ {D4E53486-C21F-323C-9980-92CA1222E699}
+ 11_asynchronous_custom_input_multi_camera
+
+
+ {287F3580-8C0A-3432-918D-ADB876C6170C}
+ 12_asynchronous_custom_output
+
+
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}
+ 13_asynchronous_custom_input_output_and_datum
+
+
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}
+ 14_synchronous_custom_input
+
+
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C}
+ 15_synchronous_custom_preprocessing
+
+
+ {53982123-D444-3CB9-BF2F-A99748470C69}
+ 16_synchronous_custom_postprocessing
+
+
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}
+ 17_synchronous_custom_output
+
+
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}
+ 18_synchronous_custom_all_and_datum
+
+
+ {CFFE770E-D009-366A-B038-326CECEDF428}
+ 1_custom_post_processing
+
+
+ {FEEDE782-93EF-3C19-88B1-617151419F17}
+ 1_thread_user_processing_function
+
+
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857}
+ 2_thread_user_input_processing_output_and_datum
+
+
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}
+ Calibration
+
+
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}
+ OpenPoseDemo
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+ {876F53EC-E55B-362B-BA39-361F314C6FBE}
+ pyopenpose
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/ALL_BUILD.vcxproj.filters b/Lib/ALL_BUILD.vcxproj.filters
new file mode 100644
index 0000000..c048a65
--- /dev/null
+++ b/Lib/ALL_BUILD.vcxproj.filters
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/Lib/CMakeCache.txt b/Lib/CMakeCache.txt
new file mode 100644
index 0000000..722152b
--- /dev/null
+++ b/Lib/CMakeCache.txt
@@ -0,0 +1,851 @@
+# This is the CMakeCache file.
+# For build in directory: d:/BJTU/Python/openpose-master/build-2017
+# It was generated by CMake: D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe
+# You can edit this file to change values found and used by cmake.
+# If you do not want to change any of the values, simply exit the editor.
+# If you do want to change a value, simply edit, save, and exit the editor.
+# The syntax for the file is as follows:
+# KEY:TYPE=VALUE
+# KEY is the name of a variable in the cache.
+# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
+# VALUE is the current value for the KEY.
+
+########################
+# EXTERNAL cache entries
+########################
+
+//Path to a library.
+BOOST_FILESYSTEM_LIB_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_filesystem-vc141-mt-gd-x64-1_69.lib
+
+//Path to a library.
+BOOST_FILESYSTEM_LIB_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_filesystem-vc141-mt-x64-1_69.lib
+
+//Path to a library.
+BOOST_SYSTEM_LIB_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_system-vc141-mt-gd-x64-1_69.lib
+
+//Path to a library.
+BOOST_SYSTEM_LIB_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_system-vc141-mt-x64-1_69.lib
+
+//Copy all required 3rd-party DLL files into {build_directory}/bin.
+// Disable to save some memory.
+BUILD_BIN_FOLDER:BOOL=ON
+
+//Build Caffe as part of OpenPose.
+BUILD_CAFFE:BOOL=ON
+
+//Build OpenPose documentation.
+BUILD_DOCS:BOOL=OFF
+
+//Build OpenPose examples.
+BUILD_EXAMPLES:BOOL=ON
+
+//Build OpenPose python.
+BUILD_PYTHON:BOOL=ON
+
+//Build as shared lib.
+BUILD_SHARED_LIBS:BOOL=ON
+
+//Build OpenPose as a Unity plugin.
+BUILD_UNITY_SUPPORT:BOOL=OFF
+
+//Path to a program.
+CMAKE_AR:FILEPATH=D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/lib.exe
+
+//Choose the type of build.
+CMAKE_BUILD_TYPE:STRING=Release
+
+CMAKE_CONFIGURATION_TYPES:STRING=Release;Debug
+
+//Flags used by the CXX compiler during all build types.
+CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc
+
+//Flags used by the CXX compiler during DEBUG builds.
+CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the CXX compiler during MINSIZEREL builds.
+CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the CXX compiler during RELEASE builds.
+CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the CXX compiler during RELWITHDEBINFO builds.
+CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C++ applications.
+CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the C compiler during all build types.
+CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3
+
+//Flags used by the C compiler during DEBUG builds.
+CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1
+
+//Flags used by the C compiler during MINSIZEREL builds.
+CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG
+
+//Flags used by the C compiler during RELEASE builds.
+CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG
+
+//Flags used by the C compiler during RELWITHDEBINFO builds.
+CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG
+
+//Libraries linked by default with all C applications.
+CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib
+
+//Flags used by the linker during all build types.
+CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during DEBUG builds.
+CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during MINSIZEREL builds.
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during RELEASE builds.
+CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during RELWITHDEBINFO builds.
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//User executables (bin)
+CMAKE_INSTALL_BINDIR:PATH=bin
+
+//Read-only architecture-independent data (DATAROOTDIR)
+CMAKE_INSTALL_DATADIR:PATH=
+
+//Read-only architecture-independent data root (share)
+CMAKE_INSTALL_DATAROOTDIR:PATH=share
+
+//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
+CMAKE_INSTALL_DOCDIR:PATH=
+
+//C header files (include)
+CMAKE_INSTALL_INCLUDEDIR:PATH=include
+
+//Info documentation (DATAROOTDIR/info)
+CMAKE_INSTALL_INFODIR:PATH=
+
+//Object code libraries (lib)
+CMAKE_INSTALL_LIBDIR:PATH=lib
+
+//Program executables (libexec)
+CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
+
+//Locale-dependent data (DATAROOTDIR/locale)
+CMAKE_INSTALL_LOCALEDIR:PATH=
+
+//Modifiable single-machine data (var)
+CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
+
+//Man documentation (DATAROOTDIR/man)
+CMAKE_INSTALL_MANDIR:PATH=
+
+//C header files for non-gcc (/usr/include)
+CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
+
+//Install path prefix, prepended onto install directories.
+CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/OpenPose
+
+//Run-time variable data (LOCALSTATEDIR/run)
+CMAKE_INSTALL_RUNSTATEDIR:PATH=
+
+//System admin executables (sbin)
+CMAKE_INSTALL_SBINDIR:PATH=sbin
+
+//Modifiable architecture-independent data (com)
+CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
+
+//Read-only single-machine data (etc)
+CMAKE_INSTALL_SYSCONFDIR:PATH=etc
+
+//Path to a program.
+CMAKE_LINKER:FILEPATH=D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/link.exe
+
+//Flags used by the linker during the creation of modules during
+// all build types.
+CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of modules during
+// DEBUG builds.
+CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during the creation of modules during
+// MINSIZEREL builds.
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of modules during
+// RELEASE builds.
+CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of modules during
+// RELWITHDEBINFO builds.
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//Path to a program.
+CMAKE_MT:FILEPATH=CMAKE_MT-NOTFOUND
+
+//Value Computed by CMake
+CMAKE_PROJECT_DESCRIPTION:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
+
+//Value Computed by CMake
+CMAKE_PROJECT_NAME:STATIC=OpenPose
+
+//Value Computed by CMake
+CMAKE_PROJECT_VERSION:STATIC=1.6.0
+
+//Value Computed by CMake
+CMAKE_PROJECT_VERSION_MAJOR:STATIC=1
+
+//Value Computed by CMake
+CMAKE_PROJECT_VERSION_MINOR:STATIC=6
+
+//Value Computed by CMake
+CMAKE_PROJECT_VERSION_PATCH:STATIC=0
+
+//Value Computed by CMake
+CMAKE_PROJECT_VERSION_TWEAK:STATIC=
+
+//RC compiler
+CMAKE_RC_COMPILER:FILEPATH=rc
+
+//Flags for Windows Resource Compiler during all build types.
+CMAKE_RC_FLAGS:STRING=-DWIN32
+
+//Flags for Windows Resource Compiler during DEBUG builds.
+CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG
+
+//Flags for Windows Resource Compiler during MINSIZEREL builds.
+CMAKE_RC_FLAGS_MINSIZEREL:STRING=
+
+//Flags for Windows Resource Compiler during RELEASE builds.
+CMAKE_RC_FLAGS_RELEASE:STRING=
+
+//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
+CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=
+
+//Flags used by the linker during the creation of shared libraries
+// during all build types.
+CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of shared libraries
+// during DEBUG builds.
+CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL
+
+//Flags used by the linker during the creation of shared libraries
+// during MINSIZEREL builds.
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of shared libraries
+// during RELEASE builds.
+CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO
+
+//Flags used by the linker during the creation of shared libraries
+// during RELWITHDEBINFO builds.
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL
+
+//If set, runtime paths are not added when installing shared libraries,
+// but are added when building.
+CMAKE_SKIP_INSTALL_RPATH:BOOL=OFF
+
+//If set, runtime paths are not added when using shared libraries.
+CMAKE_SKIP_RPATH:BOOL=OFF
+
+//Flags used by the linker during the creation of static libraries
+// during all build types.
+CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64
+
+//Flags used by the linker during the creation of static libraries
+// during DEBUG builds.
+CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during MINSIZEREL builds.
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELEASE builds.
+CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
+
+//Flags used by the linker during the creation of static libraries
+// during RELWITHDEBINFO builds.
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
+
+//If this value is on, makefiles will be generated without the
+// .SILENT directive, and all commands will be echoed to the console
+// during the make. This is useful for debugging only. With Visual
+// Studio IDE projects all commands are done without /nologo.
+CMAKE_VERBOSE_MAKEFILE:BOOL=OFF
+
+//Compile device code in 64 bit mode
+CUDA_64_BIT_DEVICE_CODE:BOOL=ON
+
+//Select target NVIDIA GPU achitecture.
+CUDA_ARCH:STRING=Auto
+
+//Attach the build rule to the CUDA source file. Enable only when
+// the CUDA source file is added to at most one target.
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE:BOOL=ON
+
+//Generate and parse .cubin files in Device mode.
+CUDA_BUILD_CUBIN:BOOL=OFF
+
+//Build in Emulation mode
+CUDA_BUILD_EMULATION:BOOL=OFF
+
+//"cudart" library
+CUDA_CUDART_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cudart.lib
+
+//"cuda" library (older versions only).
+CUDA_CUDA_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cuda.lib
+
+//Directory to put all the output files. If blank it will default
+// to the CMAKE_CURRENT_BINARY_DIR
+CUDA_GENERATED_OUTPUT_DIR:PATH=
+
+//Generated file extension
+CUDA_HOST_COMPILATION_CPP:BOOL=ON
+
+//Host side compiler used by NVCC
+CUDA_HOST_COMPILER:FILEPATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)
+
+//Path to a program.
+CUDA_NVCC_EXECUTABLE:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe
+
+//Semi-colon delimit multiple arguments. during all build types.
+CUDA_NVCC_FLAGS:STRING=
+
+//Semi-colon delimit multiple arguments. during DEBUG builds.
+CUDA_NVCC_FLAGS_DEBUG:STRING=
+
+//Semi-colon delimit multiple arguments. during MINSIZEREL builds.
+CUDA_NVCC_FLAGS_MINSIZEREL:STRING=
+
+//Semi-colon delimit multiple arguments. during RELEASE builds.
+CUDA_NVCC_FLAGS_RELEASE:STRING=
+
+//Semi-colon delimit multiple arguments. during RELWITHDEBINFO
+// builds.
+CUDA_NVCC_FLAGS_RELWITHDEBINFO:STRING=
+
+//"OpenCL" library
+CUDA_OpenCL_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/OpenCL.lib
+
+//Propagate C/CXX_FLAGS and friends to the host compiler via -Xcompile
+CUDA_PROPAGATE_HOST_FLAGS:BOOL=ON
+
+//Path to a file.
+CUDA_SDK_ROOT_DIR:PATH=CUDA_SDK_ROOT_DIR-NOTFOUND
+
+//Compile CUDA objects with separable compilation enabled. Requires
+// CUDA 5.0+
+CUDA_SEPARABLE_COMPILATION:BOOL=OFF
+
+//Path to a file.
+CUDA_TOOLKIT_INCLUDE:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include
+
+//Toolkit location.
+CUDA_TOOLKIT_ROOT_DIR:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+
+//Use the static version of the CUDA runtime library if available
+CUDA_USE_STATIC_CUDA_RUNTIME:BOOL=ON
+
+//Print out the commands run while compiling the CUDA source file.
+// With the Makefile generator this defaults to VERBOSE variable
+// specified on the command line, but can be forced on with this
+// option.
+CUDA_VERBOSE_BUILD:BOOL=OFF
+
+//Version of CUDA as computed from nvcc.
+CUDA_VERSION:STRING=10.0
+
+//"cublas" library
+CUDA_cublas_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cublas.lib
+
+//"cudadevrt" library
+CUDA_cudadevrt_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cudadevrt.lib
+
+//static CUDA runtime library
+CUDA_cudart_static_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cudart_static.lib
+
+//"cufft" library
+CUDA_cufft_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cufft.lib
+
+//"cupti" library
+CUDA_cupti_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/extras/CUPTI/libx64/cupti.lib
+
+//"curand" library
+CUDA_curand_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/curand.lib
+
+//"cusolver" library
+CUDA_cusolver_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cusolver.lib
+
+//"cusparse" library
+CUDA_cusparse_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cusparse.lib
+
+//"nppc" library
+CUDA_nppc_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppc.lib
+
+//"nppial" library
+CUDA_nppial_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppial.lib
+
+//"nppicc" library
+CUDA_nppicc_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppicc.lib
+
+//"nppicom" library
+CUDA_nppicom_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppicom.lib
+
+//"nppidei" library
+CUDA_nppidei_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppidei.lib
+
+//"nppif" library
+CUDA_nppif_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppif.lib
+
+//"nppig" library
+CUDA_nppig_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppig.lib
+
+//"nppim" library
+CUDA_nppim_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppim.lib
+
+//"nppist" library
+CUDA_nppist_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppist.lib
+
+//"nppisu" library
+CUDA_nppisu_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppisu.lib
+
+//"nppitc" library
+CUDA_nppitc_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/nppitc.lib
+
+//"npps" library
+CUDA_npps_LIBRARY:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/npps.lib
+
+//"nvToolsExt" library
+CUDA_nvToolsExt_LIBRARY:FILEPATH=CUDA_nvToolsExt_LIBRARY-NOTFOUND
+
+//"nvcuvenc" library
+CUDA_nvcuvenc_LIBRARY:FILEPATH=CUDA_nvcuvenc_LIBRARY-NOTFOUND
+
+//"nvcuvid" library
+CUDA_nvcuvid_LIBRARY:FILEPATH=CUDA_nvcuvid_LIBRARY-NOTFOUND
+
+//Caffe_INCLUDE_DIRS
+Caffe_INCLUDE_DIRS:FILEPATH=3rdparty/windows/caffe/include;3rdparty/windows/caffe/include2
+
+//Path to a library.
+Caffe_LIB_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffe-d.lib
+
+//Path to a library.
+Caffe_LIB_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffe.lib
+
+//Path to a library.
+Caffe_Proto_LIB_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffeproto-d.lib
+
+//Path to a library.
+Caffe_Proto_LIB_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffeproto.lib
+
+//Select Deep Learning Framework.
+DL_FRAMEWORK:STRING=CAFFE
+
+//Download body 25-keypoint (body COCO and 6-keypoint foot) model.
+DOWNLOAD_BODY_25_MODEL:BOOL=ON
+
+//Download body 18-keypoint COCO model.
+DOWNLOAD_BODY_COCO_MODEL:BOOL=OFF
+
+//Download body 15-keypoint MPI model.
+DOWNLOAD_BODY_MPI_MODEL:BOOL=OFF
+
+//Download face model.
+DOWNLOAD_FACE_MODEL:BOOL=ON
+
+//Download hand model.
+DOWNLOAD_HAND_MODEL:BOOL=ON
+
+//Path to a library.
+GFLAGS_LIBRARY_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/gflagsd.lib
+
+//Path to a library.
+GFLAGS_LIBRARY_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/gflags.lib
+
+//Path to a library.
+GLOG_LIBRARY_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/glogd.lib
+
+//Path to a library.
+GLOG_LIBRARY_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/glog.lib
+
+//Select the acceleration GPU library or CPU otherwise.
+GPU_MODE:STRING=CUDA
+
+//Enable Enhanced Instruction Set
+INSTRUCTION_SET:STRING=NONE
+
+//Path to a library.
+OpenCV_LIBS_DEBUG:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/x64/vc15/lib/opencv_world420d.lib
+
+//Path to a library.
+OpenCV_LIBS_RELEASE:FILEPATH=D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/x64/vc15/lib/opencv_world420.lib
+
+//Value Computed by CMake
+OpenPose_BINARY_DIR:STATIC=D:/BJTU/Python/openpose-master/build-2017
+
+//Value Computed by CMake
+OpenPose_SOURCE_DIR:STATIC=D:/BJTU/Python/openpose-master
+
+//If enabled, OpenPose will be able to print out speed information
+// at runtime.
+PROFILER_ENABLED:BOOL=OFF
+
+//C++ standard flag, e.g. -std=c++11, -std=c++14, /std:c++14.
+// Defaults to C++14 mode.
+PYBIND11_CPP_STANDARD:STRING=/std:c++14
+
+//Install pybind11 header files?
+PYBIND11_INSTALL:BOOL=OFF
+
+//Python version to use for compiling modules
+PYBIND11_PYTHON_VERSION:STRING=
+
+//Build pybind11 test suite?
+PYBIND11_TEST:BOOL=OFF
+
+//Path to a program.
+PYTHON_EXECUTABLE:FILEPATH=C:/Programs/python-3/python.exe
+
+//Build OpenPose with cuDNN library support.
+USE_CUDNN:BOOL=ON
+
+//Install pybind11 headers in Python include directory instead
+// of default installation prefix
+USE_PYTHON_INCLUDE_DIR:BOOL=OFF
+
+//Add OpenPose 3D renderer module (it requires FreeGLUT library).
+WITH_3D_RENDERER:BOOL=OFF
+
+//Select the Eigen mode: NONE if not required, BUILD to let OpenPose
+// download it, or FIND to let CMake find it (e.g., if you installed
+// it manually).
+WITH_EIGEN:STRING=NONE
+
+//Add FLIR (formerly Point Grey) camera code (requires Spinnaker
+// SDK already installed).
+WITH_FLIR_CAMERA:BOOL=OFF
+
+//Much faster GUI display, but you must also enable OpenGL support
+// in OpenCV by configuring OpenCV using CMake with WITH_OPENGL=ON
+// flag.
+WITH_OPENCV_WITH_OPENGL:BOOL=OFF
+
+//Dependencies for the target
+openpose_LIB_DEPENDS:STATIC=general;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cudart_static.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/x64/vc15/lib/opencv_world420d.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/x64/vc15/lib/opencv_world420.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/gflagsd.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/gflags.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/glogd.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/glog.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffe-d.lib;general;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffeproto-d.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffe.lib;general;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffeproto.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_system-vc141-mt-x64-1_69.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_system-vc141-mt-x64-1_69.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_filesystem-vc141-mt-x64-1_69.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_filesystem-vc141-mt-x64-1_69.lib;
+
+//Value Computed by CMake
+pybind11_BINARY_DIR:STATIC=D:/BJTU/Python/openpose-master/build-2017/3rdparty/pybind11
+
+//Value Computed by CMake
+pybind11_SOURCE_DIR:STATIC=D:/BJTU/Python/openpose-master/3rdparty/pybind11
+
+//Dependencies for the target
+pyopenpose_LIB_DEPENDS:STATIC=general;C:/Programs/python-3/libs/Python37.lib;general;openpose;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/x64/vc15/lib/opencv_world420d.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/x64/vc15/lib/opencv_world420.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/gflagsd.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/gflags.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/glogd.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/glog.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffe-d.lib;general;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffeproto-d.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffe.lib;general;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/lib/caffeproto.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_system-vc141-mt-x64-1_69.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_system-vc141-mt-x64-1_69.lib;debug;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_filesystem-vc141-mt-x64-1_69.lib;optimized;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/lib/boost_filesystem-vc141-mt-x64-1_69.lib;
+
+
+########################
+# INTERNAL cache entries
+########################
+
+//STRINGS property for variable: CMAKE_BUILD_TYPE
+CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Release;Debug;MinSizeRel;RelWithDebInfo
+//This is the directory where this CMakeCache.txt was created
+CMAKE_CACHEFILE_DIR:INTERNAL=d:/BJTU/Python/openpose-master/build-2017
+//Major version of cmake used to create the current loaded cache
+CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
+//Minor version of cmake used to create the current loaded cache
+CMAKE_CACHE_MINOR_VERSION:INTERNAL=18
+//Patch version of cmake used to create the current loaded cache
+CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
+//Path to CMake executable.
+CMAKE_COMMAND:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe
+//Path to cpack program executable.
+CMAKE_CPACK_COMMAND:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cpack.exe
+//Path to ctest program executable.
+CMAKE_CTEST_COMMAND:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/ctest.exe
+//ADVANCED property for variable: CMAKE_CXX_FLAGS
+CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
+CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
+CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
+CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
+CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
+CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS
+CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
+CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
+CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
+CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
+CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
+CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
+//Executable file format
+CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
+CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
+CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
+CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
+CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Name of external makefile project generator.
+CMAKE_EXTRA_GENERATOR:INTERNAL=
+//Name of generator.
+CMAKE_GENERATOR:INTERNAL=Visual Studio 15 2017
+//Generator instance identifier.
+CMAKE_GENERATOR_INSTANCE:INTERNAL=D:/Program Files/VS/2017
+//Name of generator platform.
+CMAKE_GENERATOR_PLATFORM:INTERNAL=x64
+//Name of generator toolset.
+CMAKE_GENERATOR_TOOLSET:INTERNAL=
+//Source directory with the top level CMakeLists.txt file for this
+// project
+CMAKE_HOME_DIRECTORY:INTERNAL=D:/BJTU/Python/openpose-master
+//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
+CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
+CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
+CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
+CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
+CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
+CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
+CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
+CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
+CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
+CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
+CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
+CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
+CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
+CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
+CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
+CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_LINKER
+CMAKE_LINKER-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
+CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
+CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
+CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
+CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_MT
+CMAKE_MT-ADVANCED:INTERNAL=1
+//number of local generators
+CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=30
+//Platform information initialized
+CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_COMPILER
+CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
+CMAKE_RC_COMPILER_WORKS:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS
+CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
+CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
+CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
+CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
+CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//Path to CMake installation.
+CMAKE_ROOT:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
+CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
+CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
+CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
+CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
+CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_SKIP_RPATH
+CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
+CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
+CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
+CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
+CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
+CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
+CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_64_BIT_DEVICE_CODE
+CUDA_64_BIT_DEVICE_CODE-ADVANCED:INTERNAL=1
+//List of intermediate files that are part of the cuda dependency
+// scanning.
+CUDA_ADDITIONAL_CLEAN_FILES:INTERNAL=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend;D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend
+//STRINGS property for variable: CUDA_ARCH
+CUDA_ARCH-STRINGS:INTERNAL=Auto;All;Manual
+//ADVANCED property for variable: CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE
+CUDA_ATTACH_VS_BUILD_RULE_TO_CUDA_FILE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_CUBIN
+CUDA_BUILD_CUBIN-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_BUILD_EMULATION
+CUDA_BUILD_EMULATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDART_LIBRARY
+CUDA_CUDART_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_CUDA_LIBRARY
+CUDA_CUDA_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_GENERATED_OUTPUT_DIR
+CUDA_GENERATED_OUTPUT_DIR-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_HOST_COMPILATION_CPP
+CUDA_HOST_COMPILATION_CPP-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_EXECUTABLE
+CUDA_NVCC_EXECUTABLE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS
+CUDA_NVCC_FLAGS-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_DEBUG
+CUDA_NVCC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_MINSIZEREL
+CUDA_NVCC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELEASE
+CUDA_NVCC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_NVCC_FLAGS_RELWITHDEBINFO
+CUDA_NVCC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_OpenCL_LIBRARY
+CUDA_OpenCL_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_PROPAGATE_HOST_FLAGS
+CUDA_PROPAGATE_HOST_FLAGS-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_SDK_ROOT_DIR was set
+// successfully.
+CUDA_SDK_ROOT_DIR_INTERNAL:INTERNAL=CUDA_SDK_ROOT_DIR-NOTFOUND
+//ADVANCED property for variable: CUDA_SEPARABLE_COMPILATION
+CUDA_SEPARABLE_COMPILATION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_TOOLKIT_INCLUDE
+CUDA_TOOLKIT_INCLUDE-ADVANCED:INTERNAL=1
+//This is the value of the last time CUDA_TOOLKIT_ROOT_DIR was
+// set successfully.
+CUDA_TOOLKIT_ROOT_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+//This is the value of the last time CUDA_TOOLKIT_TARGET_DIR was
+// set successfully.
+CUDA_TOOLKIT_TARGET_DIR_INTERNAL:INTERNAL=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0
+//ADVANCED property for variable: CUDA_VERBOSE_BUILD
+CUDA_VERBOSE_BUILD-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_VERSION
+CUDA_VERSION-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cublas_LIBRARY
+CUDA_cublas_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cudadevrt_LIBRARY
+CUDA_cudadevrt_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cudart_static_LIBRARY
+CUDA_cudart_static_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cufft_LIBRARY
+CUDA_cufft_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cupti_LIBRARY
+CUDA_cupti_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_curand_LIBRARY
+CUDA_curand_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusolver_LIBRARY
+CUDA_cusolver_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_cusparse_LIBRARY
+CUDA_cusparse_LIBRARY-ADVANCED:INTERNAL=1
+//Location of make2cmake.cmake
+CUDA_make2cmake:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake
+//ADVANCED property for variable: CUDA_nppc_LIBRARY
+CUDA_nppc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppial_LIBRARY
+CUDA_nppial_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppicc_LIBRARY
+CUDA_nppicc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppicom_LIBRARY
+CUDA_nppicom_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppidei_LIBRARY
+CUDA_nppidei_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppif_LIBRARY
+CUDA_nppif_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppig_LIBRARY
+CUDA_nppig_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppim_LIBRARY
+CUDA_nppim_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppist_LIBRARY
+CUDA_nppist_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppisu_LIBRARY
+CUDA_nppisu_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nppitc_LIBRARY
+CUDA_nppitc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_npps_LIBRARY
+CUDA_npps_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvToolsExt_LIBRARY
+CUDA_nvToolsExt_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvenc_LIBRARY
+CUDA_nvcuvenc_LIBRARY-ADVANCED:INTERNAL=1
+//ADVANCED property for variable: CUDA_nvcuvid_LIBRARY
+CUDA_nvcuvid_LIBRARY-ADVANCED:INTERNAL=1
+//Location of parse_cubin.cmake
+CUDA_parse_cubin:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake
+//Location of run_nvcc.cmake
+CUDA_run_nvcc:INTERNAL=D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/run_nvcc.cmake
+//STRINGS property for variable: DL_FRAMEWORK
+DL_FRAMEWORK-STRINGS:INTERNAL=CAFFE
+//Details about finding CUDA
+FIND_PACKAGE_MESSAGE_DETAILS_CUDA:INTERNAL=[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/lib/x64/cudart_static.lib][v10.0()]
+//Details about finding PYTHON
+FIND_PACKAGE_MESSAGE_DETAILS_PYTHON:INTERNAL=C:/Programs/python-3/python.exe
+//Details about finding PythonInterp
+FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[C:/Programs/python-3/python.exe][v3.7.4()]
+//STRINGS property for variable: GPU_MODE
+GPU_MODE-STRINGS:INTERNAL=CUDA;OPENCL;CPU_ONLY
+//Test HAS_MSVC_GL_LTCG
+HAS_MSVC_GL_LTCG:INTERNAL=1
+//STRINGS property for variable: INSTRUCTION_SET
+INSTRUCTION_SET-STRINGS:INTERNAL=NONE;AVX2
+PYBIND11_INCLUDE_DIR:INTERNAL=D:/BJTU/Python/openpose-master/3rdparty/pybind11/include
+PYBIND11_LTO_CXX_FLAGS:INTERNAL=/GL
+PYBIND11_LTO_LINKER_FLAGS:INTERNAL=-LTCG
+PYBIND11_VERSION_MAJOR:INTERNAL=2
+PYBIND11_VERSION_MINOR:INTERNAL=3
+PYBIND11_VERSION_PATCH:INTERNAL=dev0
+//ADVANCED property for variable: PYTHON_EXECUTABLE
+PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
+PYTHON_INCLUDE_DIRS:INTERNAL=C:/Programs/python-3/include
+PYTHON_LIBRARIES:INTERNAL=C:/Programs/python-3/libs/Python37.lib
+PYTHON_MODULE_EXTENSION:INTERNAL=.cp37-win_amd64.pyd
+PYTHON_MODULE_PREFIX:INTERNAL=
+PYTHON_VERSION_MAJOR:INTERNAL=3
+PYTHON_VERSION_MINOR:INTERNAL=7
+//STRINGS property for variable: WITH_EIGEN
+WITH_EIGEN-STRINGS:INTERNAL=NONE;BUILD;FIND
+//CMAKE_INSTALL_PREFIX during last run
+_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/OpenPose
+
diff --git a/Lib/CMakeFiles/0f4b9365ccf250e65e66816b457a1767/INSTALL_force.rule b/Lib/CMakeFiles/0f4b9365ccf250e65e66816b457a1767/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/0f4b9365ccf250e65e66816b457a1767/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/17e79277f2f922091af7d14c2eb30e64/INSTALL_force.rule b/Lib/CMakeFiles/17e79277f2f922091af7d14c2eb30e64/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/17e79277f2f922091af7d14c2eb30e64/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/1d484e1f107d99a056d9ff457c97a5e4/INSTALL_force.rule b/Lib/CMakeFiles/1d484e1f107d99a056d9ff457c97a5e4/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/1d484e1f107d99a056d9ff457c97a5e4/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/21a738e7d8bd1a11e7be5c98bedeb3fb/INSTALL_force.rule b/Lib/CMakeFiles/21a738e7d8bd1a11e7be5c98bedeb3fb/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/21a738e7d8bd1a11e7be5c98bedeb3fb/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/226a14dd58d874e28f79d703f7ae92df/INSTALL_force.rule b/Lib/CMakeFiles/226a14dd58d874e28f79d703f7ae92df/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/226a14dd58d874e28f79d703f7ae92df/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/2eee67e441178ec377c07fe9eaa94c32/INSTALL_force.rule b/Lib/CMakeFiles/2eee67e441178ec377c07fe9eaa94c32/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/2eee67e441178ec377c07fe9eaa94c32/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CMakeCCompiler.cmake b/Lib/CMakeFiles/3.18.0-rc3/CMakeCCompiler.cmake
new file mode 100644
index 0000000..c2ff6ac
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CMakeCCompiler.cmake
@@ -0,0 +1,77 @@
+set(CMAKE_C_COMPILER "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/cl.exe")
+set(CMAKE_C_COMPILER_ARG1 "")
+set(CMAKE_C_COMPILER_ID "MSVC")
+set(CMAKE_C_COMPILER_VERSION "19.16.27041.0")
+set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
+set(CMAKE_C_COMPILER_WRAPPER "")
+set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "90")
+set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_std_99;c_std_11;c_function_prototypes;c_variadic_macros")
+set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
+set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_variadic_macros")
+set(CMAKE_C11_COMPILE_FEATURES "c_std_11")
+
+set(CMAKE_C_PLATFORM_ID "Windows")
+set(CMAKE_C_SIMULATE_ID "")
+set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
+set(CMAKE_C_SIMULATE_VERSION "")
+set(CMAKE_C_COMPILER_ARCHITECTURE_ID x64)
+
+set(MSVC_C_ARCHITECTURE_ID x64)
+
+set(CMAKE_AR "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/lib.exe")
+set(CMAKE_C_COMPILER_AR "")
+set(CMAKE_RANLIB "")
+set(CMAKE_C_COMPILER_RANLIB "")
+set(CMAKE_LINKER "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/link.exe")
+set(CMAKE_MT "CMAKE_MT-NOTFOUND")
+set(CMAKE_COMPILER_IS_GNUCC )
+set(CMAKE_C_COMPILER_LOADED 1)
+set(CMAKE_C_COMPILER_WORKS TRUE)
+set(CMAKE_C_ABI_COMPILED TRUE)
+set(CMAKE_COMPILER_IS_MINGW )
+set(CMAKE_COMPILER_IS_CYGWIN )
+if(CMAKE_COMPILER_IS_CYGWIN)
+ set(CYGWIN 1)
+ set(UNIX 1)
+endif()
+
+set(CMAKE_C_COMPILER_ENV_VAR "CC")
+
+if(CMAKE_COMPILER_IS_MINGW)
+ set(MINGW 1)
+endif()
+set(CMAKE_C_COMPILER_ID_RUN 1)
+set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
+set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
+set(CMAKE_C_LINKER_PREFERENCE 10)
+
+# Save compiler ABI information.
+set(CMAKE_C_SIZEOF_DATA_PTR "8")
+set(CMAKE_C_COMPILER_ABI "")
+set(CMAKE_C_LIBRARY_ARCHITECTURE "")
+
+if(CMAKE_C_SIZEOF_DATA_PTR)
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
+endif()
+
+if(CMAKE_C_COMPILER_ABI)
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
+endif()
+
+if(CMAKE_C_LIBRARY_ARCHITECTURE)
+ set(CMAKE_LIBRARY_ARCHITECTURE "")
+endif()
+
+set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
+if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
+endif()
+
+
+
+
+
+set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "")
+set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "")
+set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CMakeCXXCompiler.cmake b/Lib/CMakeFiles/3.18.0-rc3/CMakeCXXCompiler.cmake
new file mode 100644
index 0000000..4addcde
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CMakeCXXCompiler.cmake
@@ -0,0 +1,89 @@
+set(CMAKE_CXX_COMPILER "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/cl.exe")
+set(CMAKE_CXX_COMPILER_ARG1 "")
+set(CMAKE_CXX_COMPILER_ID "MSVC")
+set(CMAKE_CXX_COMPILER_VERSION "19.16.27041.0")
+set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
+set(CMAKE_CXX_COMPILER_WRAPPER "")
+set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14")
+set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20")
+set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
+set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
+set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
+set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
+set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
+
+set(CMAKE_CXX_PLATFORM_ID "Windows")
+set(CMAKE_CXX_SIMULATE_ID "")
+set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
+set(CMAKE_CXX_SIMULATE_VERSION "")
+set(CMAKE_CXX_COMPILER_ARCHITECTURE_ID x64)
+
+set(MSVC_CXX_ARCHITECTURE_ID x64)
+
+set(CMAKE_AR "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/lib.exe")
+set(CMAKE_CXX_COMPILER_AR "")
+set(CMAKE_RANLIB "")
+set(CMAKE_CXX_COMPILER_RANLIB "")
+set(CMAKE_LINKER "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/bin/Hostx86/x64/link.exe")
+set(CMAKE_MT "CMAKE_MT-NOTFOUND")
+set(CMAKE_COMPILER_IS_GNUCXX )
+set(CMAKE_CXX_COMPILER_LOADED 1)
+set(CMAKE_CXX_COMPILER_WORKS TRUE)
+set(CMAKE_CXX_ABI_COMPILED TRUE)
+set(CMAKE_COMPILER_IS_MINGW )
+set(CMAKE_COMPILER_IS_CYGWIN )
+if(CMAKE_COMPILER_IS_CYGWIN)
+ set(CYGWIN 1)
+ set(UNIX 1)
+endif()
+
+set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
+
+if(CMAKE_COMPILER_IS_MINGW)
+ set(MINGW 1)
+endif()
+set(CMAKE_CXX_COMPILER_ID_RUN 1)
+set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;CPP)
+set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
+
+foreach (lang C OBJC OBJCXX)
+ if (CMAKE_${lang}_COMPILER_ID_RUN)
+ foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
+ list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
+ endforeach()
+ endif()
+endforeach()
+
+set(CMAKE_CXX_LINKER_PREFERENCE 30)
+set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
+
+# Save compiler ABI information.
+set(CMAKE_CXX_SIZEOF_DATA_PTR "8")
+set(CMAKE_CXX_COMPILER_ABI "")
+set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
+
+if(CMAKE_CXX_SIZEOF_DATA_PTR)
+ set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
+endif()
+
+if(CMAKE_CXX_COMPILER_ABI)
+ set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
+endif()
+
+if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
+ set(CMAKE_LIBRARY_ARCHITECTURE "")
+endif()
+
+set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
+if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
+ set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
+endif()
+
+
+
+
+
+set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "")
+set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CMakeDetermineCompilerABI_C.bin b/Lib/CMakeFiles/3.18.0-rc3/CMakeDetermineCompilerABI_C.bin
new file mode 100644
index 0000000..6e9eb61
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CMakeDetermineCompilerABI_C.bin differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CMakeDetermineCompilerABI_CXX.bin b/Lib/CMakeFiles/3.18.0-rc3/CMakeDetermineCompilerABI_CXX.bin
new file mode 100644
index 0000000..f7c3f39
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CMakeDetermineCompilerABI_CXX.bin differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CMakeRCCompiler.cmake b/Lib/CMakeFiles/3.18.0-rc3/CMakeRCCompiler.cmake
new file mode 100644
index 0000000..0f61961
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CMakeRCCompiler.cmake
@@ -0,0 +1,6 @@
+set(CMAKE_RC_COMPILER "rc")
+set(CMAKE_RC_COMPILER_ARG1 "")
+set(CMAKE_RC_COMPILER_LOADED 1)
+set(CMAKE_RC_SOURCE_FILE_EXTENSIONS rc;RC)
+set(CMAKE_RC_OUTPUT_EXTENSION .res)
+set(CMAKE_RC_COMPILER_ENV_VAR "RC")
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CMakeSystem.cmake b/Lib/CMakeFiles/3.18.0-rc3/CMakeSystem.cmake
new file mode 100644
index 0000000..5014573
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CMakeSystem.cmake
@@ -0,0 +1,15 @@
+set(CMAKE_HOST_SYSTEM "Windows-10.0.18363")
+set(CMAKE_HOST_SYSTEM_NAME "Windows")
+set(CMAKE_HOST_SYSTEM_VERSION "10.0.18363")
+set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
+
+
+
+set(CMAKE_SYSTEM "Windows-10.0.18363")
+set(CMAKE_SYSTEM_NAME "Windows")
+set(CMAKE_SYSTEM_VERSION "10.0.18363")
+set(CMAKE_SYSTEM_PROCESSOR "AMD64")
+
+set(CMAKE_CROSSCOMPILING "FALSE")
+
+set(CMAKE_SYSTEM_LOADED 1)
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CMakeCCompilerId.c b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CMakeCCompilerId.c
new file mode 100644
index 0000000..6c0aa93
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CMakeCCompilerId.c
@@ -0,0 +1,674 @@
+#ifdef __cplusplus
+# error "A C++ compiler has been selected for C."
+#endif
+
+#if defined(__18CXX)
+# define ID_VOID_MAIN
+#endif
+#if defined(__CLASSIC_C__)
+/* cv-qualifiers did not exist in K&R C */
+# define const
+# define volatile
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+# endif
+ /* __INTEL_COMPILER = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_C)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_C >= 0x5100
+ /* __SUNPRO_C = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
+# endif
+
+#elif defined(__HP_cc)
+# define COMPILER_ID "HP"
+ /* __HP_cc = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
+
+#elif defined(__DECC)
+# define COMPILER_ID "Compaq"
+ /* __DECC_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
+
+#elif defined(__IBMC__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__ibmxl__) && defined(__clang__)
+# define COMPILER_ID "XLClang"
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+
+
+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMC__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
+# define COMPILER_ID "Fujitsu"
+
+#elif defined(__ghs__)
+# define COMPILER_ID "GHS"
+/* __GHS_VERSION_NUMBER = VVVVRP */
+# ifdef __GHS_VERSION_NUMBER
+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
+# endif
+
+#elif defined(__TINYC__)
+# define COMPILER_ID "TinyCC"
+
+#elif defined(__BCC__)
+# define COMPILER_ID "Bruce"
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__ARMCC_VERSION) && !defined(__clang__)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
+# define COMPILER_ID "ARMClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__GNUC__)
+# define COMPILER_ID "GNU"
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+# if defined(__VER__) && defined(__ICCARM__)
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# endif
+
+#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
+# define COMPILER_ID "SDCC"
+# if defined(__SDCC_VERSION_MAJOR)
+# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
+# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
+# else
+ /* SDCC = VRP */
+# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
+# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXE) || defined(__CRAYXC)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# elif defined(__VXWORKS__)
+# define PLATFORM_ID "VxWorks"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#elif defined(__INTEGRITY)
+# if defined(INT_178B)
+# define PLATFORM_ID "Integrity178"
+
+# else /* regular Integrity */
+# define PLATFORM_ID "Integrity"
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM64)
+# define ARCHITECTURE_ID "ARM64"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# if defined(__ICCARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__ICCRX__)
+# define ARCHITECTURE_ID "RX"
+
+# elif defined(__ICCRH850__)
+# define ARCHITECTURE_ID "RH850"
+
+# elif defined(__ICCRL78__)
+# define ARCHITECTURE_ID "RL78"
+
+# elif defined(__ICCRISCV__)
+# define ARCHITECTURE_ID "RISCV"
+
+# elif defined(__ICCAVR__)
+# define ARCHITECTURE_ID "AVR"
+
+# elif defined(__ICC430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__ICCV850__)
+# define ARCHITECTURE_ID "V850"
+
+# elif defined(__ICC8051__)
+# define ARCHITECTURE_ID "8051"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__ghs__)
+# if defined(__PPC64__)
+# define ARCHITECTURE_ID "PPC64"
+
+# elif defined(__ppc__)
+# define ARCHITECTURE_ID "PPC"
+
+# elif defined(__ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__x86_64__)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(__i386__)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number components. */
+#ifdef COMPILER_VERSION_MAJOR
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the internal version number. */
+#ifdef COMPILER_VERSION_INTERNAL
+char const info_version_internal[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
+ 'i','n','t','e','r','n','a','l','[',
+ COMPILER_VERSION_INTERNAL,']','\0'};
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+
+#if !defined(__STDC__)
+# if (defined(_MSC_VER) && !defined(__clang__)) \
+ || (defined(__ibmxl__) || defined(__IBMC__))
+# define C_DIALECT "90"
+# else
+# define C_DIALECT
+# endif
+#elif __STDC_VERSION__ >= 201000L
+# define C_DIALECT "11"
+#elif __STDC_VERSION__ >= 199901L
+# define C_DIALECT "99"
+#else
+# define C_DIALECT "90"
+#endif
+const char* info_language_dialect_default =
+ "INFO" ":" "dialect_default[" C_DIALECT "]";
+
+/*--------------------------------------------------------------------------*/
+
+#ifdef ID_VOID_MAIN
+void main() {}
+#else
+# if defined(__CLASSIC_C__)
+int main(argc, argv) int argc; char *argv[];
+# else
+int main(int argc, char* argv[])
+# endif
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+ require += info_arch[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef COMPILER_VERSION_INTERNAL
+ require += info_version_internal[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXE) || defined(__CRAYXC)
+ require += info_cray[argc];
+#endif
+ require += info_language_dialect_default[argc];
+ (void)argv;
+ return require;
+}
+#endif
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.exe b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.exe
new file mode 100644
index 0000000..d1d40a3
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.exe differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.vcxproj b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.vcxproj
new file mode 100644
index 0000000..c5f3f77
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.vcxproj
@@ -0,0 +1,71 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdC
+ Win32Proj
+
+
+ 10.0.18362.0
+
+
+
+
+
+
+
+
+
+
+
+ Application
+ v141
+ MultiByte
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+
+ false
+ Console
+
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
+
+
+
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CMakeCCompilerId.obj b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CMakeCCompilerId.obj
new file mode 100644
index 0000000..438c2d5
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CMakeCCompilerId.obj differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..407ef64
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.command.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..704c910
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.read.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..e0e2a99
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CL.write.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate
new file mode 100644
index 0000000..d5525db
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/CompilerIdC.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdC\|
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog
new file mode 100644
index 0000000..419837a
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.command.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog
new file mode 100644
index 0000000..af1f903
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.read.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog
new file mode 100644
index 0000000..c8e07dc
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdC/Debug/CompilerIdC.tlog/link.write.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CMakeCXXCompilerId.cpp b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CMakeCXXCompilerId.cpp
new file mode 100644
index 0000000..37c21ca
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CMakeCXXCompilerId.cpp
@@ -0,0 +1,663 @@
+/* This source file must have a .cpp extension so that all C++ compilers
+ recognize the extension without flags. Borland does not know .cxx for
+ example. */
+#ifndef __cplusplus
+# error "A C compiler has been selected for C++."
+#endif
+
+
+/* Version number components: V=Version, R=Revision, P=Patch
+ Version date components: YYYY=Year, MM=Month, DD=Day */
+
+#if defined(__COMO__)
+# define COMPILER_ID "Comeau"
+ /* __COMO_VERSION__ = VRR */
+# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
+# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
+
+#elif defined(__INTEL_COMPILER) || defined(__ICC)
+# define COMPILER_ID "Intel"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_ID "GNU"
+# endif
+ /* __INTEL_COMPILER = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
+# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
+# if defined(__INTEL_COMPILER_UPDATE)
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
+# else
+# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
+# endif
+# if defined(__INTEL_COMPILER_BUILD_DATE)
+ /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
+# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
+# endif
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# if defined(__GNUC__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
+# elif defined(__GNUG__)
+# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(__PATHCC__)
+# define COMPILER_ID "PathScale"
+# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
+# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
+# if defined(__PATHCC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
+# endif
+
+#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
+# define COMPILER_ID "Embarcadero"
+# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
+# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
+# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
+
+#elif defined(__BORLANDC__)
+# define COMPILER_ID "Borland"
+ /* __BORLANDC__ = 0xVRR */
+# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
+# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
+
+#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
+# define COMPILER_ID "Watcom"
+ /* __WATCOMC__ = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__WATCOMC__)
+# define COMPILER_ID "OpenWatcom"
+ /* __WATCOMC__ = VVRP + 1100 */
+# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
+# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
+# if (__WATCOMC__ % 10) > 0
+# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
+# endif
+
+#elif defined(__SUNPRO_CC)
+# define COMPILER_ID "SunPro"
+# if __SUNPRO_CC >= 0x5100
+ /* __SUNPRO_CC = 0xVRRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# else
+ /* __SUNPRO_CC = 0xVRP */
+# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
+# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
+# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
+# endif
+
+#elif defined(__HP_aCC)
+# define COMPILER_ID "HP"
+ /* __HP_aCC = VVRRPP */
+# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
+# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
+# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
+
+#elif defined(__DECCXX)
+# define COMPILER_ID "Compaq"
+ /* __DECCXX_VER = VVRRTPPPP */
+# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
+# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
+# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
+
+#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
+# define COMPILER_ID "zOS"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__ibmxl__) && defined(__clang__)
+# define COMPILER_ID "XLClang"
+# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
+# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
+# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
+# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
+
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
+# define COMPILER_ID "XL"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
+# define COMPILER_ID "VisualAge"
+ /* __IBMCPP__ = VRP */
+# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
+# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
+
+#elif defined(__PGI)
+# define COMPILER_ID "PGI"
+# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
+# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
+# if defined(__PGIC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
+# endif
+
+#elif defined(_CRAYC)
+# define COMPILER_ID "Cray"
+# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
+# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
+
+#elif defined(__TI_COMPILER_VERSION__)
+# define COMPILER_ID "TI"
+ /* __TI_COMPILER_VERSION__ = VVVRRRPPP */
+# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
+# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
+# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
+
+#elif defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)
+# define COMPILER_ID "Fujitsu"
+
+#elif defined(__ghs__)
+# define COMPILER_ID "GHS"
+/* __GHS_VERSION_NUMBER = VVVVRP */
+# ifdef __GHS_VERSION_NUMBER
+# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
+# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
+# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
+# endif
+
+#elif defined(__SCO_VERSION__)
+# define COMPILER_ID "SCO"
+
+#elif defined(__ARMCC_VERSION) && !defined(__clang__)
+# define COMPILER_ID "ARMCC"
+#if __ARMCC_VERSION >= 1000000
+ /* __ARMCC_VERSION = VRRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#else
+ /* __ARMCC_VERSION = VRPPPP */
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
+#endif
+
+
+#elif defined(__clang__) && defined(__apple_build_version__)
+# define COMPILER_ID "AppleClang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
+
+#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
+# define COMPILER_ID "ARMClang"
+ # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
+ # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
+ # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
+# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
+
+#elif defined(__clang__)
+# define COMPILER_ID "Clang"
+# if defined(_MSC_VER)
+# define SIMULATE_ID "MSVC"
+# endif
+# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
+# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
+# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
+# if defined(_MSC_VER)
+ /* _MSC_VER = VVRR */
+# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
+# endif
+
+#elif defined(__GNUC__) || defined(__GNUG__)
+# define COMPILER_ID "GNU"
+# if defined(__GNUC__)
+# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
+# else
+# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
+# endif
+# if defined(__GNUC_MINOR__)
+# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
+# endif
+# if defined(__GNUC_PATCHLEVEL__)
+# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
+# endif
+
+#elif defined(_MSC_VER)
+# define COMPILER_ID "MSVC"
+ /* _MSC_VER = VVRR */
+# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
+# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
+# if defined(_MSC_FULL_VER)
+# if _MSC_VER >= 1400
+ /* _MSC_FULL_VER = VVRRPPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
+# else
+ /* _MSC_FULL_VER = VVRRPPPP */
+# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
+# endif
+# endif
+# if defined(_MSC_BUILD)
+# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
+# endif
+
+#elif defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)
+# define COMPILER_ID "ADSP"
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define COMPILER_VERSION_MAJOR HEX(__VISUALDSPVERSION__>>24)
+# define COMPILER_VERSION_MINOR HEX(__VISUALDSPVERSION__>>16 & 0xFF)
+# define COMPILER_VERSION_PATCH HEX(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# define COMPILER_ID "IAR"
+# if defined(__VER__) && defined(__ICCARM__)
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
+# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
+# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__))
+# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
+# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
+# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
+# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
+# endif
+
+
+/* These compilers are either not known or too old to define an
+ identification macro. Try to identify the platform and guess that
+ it is the native compiler. */
+#elif defined(__hpux) || defined(__hpua)
+# define COMPILER_ID "HP"
+
+#else /* unknown compiler */
+# define COMPILER_ID ""
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
+#ifdef SIMULATE_ID
+char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
+#endif
+
+#ifdef __QNXNTO__
+char const* qnxnto = "INFO" ":" "qnxnto[]";
+#endif
+
+#if defined(__CRAYXE) || defined(__CRAYXC)
+char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
+#endif
+
+#define STRINGIFY_HELPER(X) #X
+#define STRINGIFY(X) STRINGIFY_HELPER(X)
+
+/* Identify known platforms by name. */
+#if defined(__linux) || defined(__linux__) || defined(linux)
+# define PLATFORM_ID "Linux"
+
+#elif defined(__CYGWIN__)
+# define PLATFORM_ID "Cygwin"
+
+#elif defined(__MINGW32__)
+# define PLATFORM_ID "MinGW"
+
+#elif defined(__APPLE__)
+# define PLATFORM_ID "Darwin"
+
+#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
+# define PLATFORM_ID "Windows"
+
+#elif defined(__FreeBSD__) || defined(__FreeBSD)
+# define PLATFORM_ID "FreeBSD"
+
+#elif defined(__NetBSD__) || defined(__NetBSD)
+# define PLATFORM_ID "NetBSD"
+
+#elif defined(__OpenBSD__) || defined(__OPENBSD)
+# define PLATFORM_ID "OpenBSD"
+
+#elif defined(__sun) || defined(sun)
+# define PLATFORM_ID "SunOS"
+
+#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
+# define PLATFORM_ID "AIX"
+
+#elif defined(__hpux) || defined(__hpux__)
+# define PLATFORM_ID "HP-UX"
+
+#elif defined(__HAIKU__)
+# define PLATFORM_ID "Haiku"
+
+#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
+# define PLATFORM_ID "BeOS"
+
+#elif defined(__QNX__) || defined(__QNXNTO__)
+# define PLATFORM_ID "QNX"
+
+#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
+# define PLATFORM_ID "Tru64"
+
+#elif defined(__riscos) || defined(__riscos__)
+# define PLATFORM_ID "RISCos"
+
+#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
+# define PLATFORM_ID "SINIX"
+
+#elif defined(__UNIX_SV__)
+# define PLATFORM_ID "UNIX_SV"
+
+#elif defined(__bsdos__)
+# define PLATFORM_ID "BSDOS"
+
+#elif defined(_MPRAS) || defined(MPRAS)
+# define PLATFORM_ID "MP-RAS"
+
+#elif defined(__osf) || defined(__osf__)
+# define PLATFORM_ID "OSF1"
+
+#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
+# define PLATFORM_ID "SCO_SV"
+
+#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
+# define PLATFORM_ID "ULTRIX"
+
+#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
+# define PLATFORM_ID "Xenix"
+
+#elif defined(__WATCOMC__)
+# if defined(__LINUX__)
+# define PLATFORM_ID "Linux"
+
+# elif defined(__DOS__)
+# define PLATFORM_ID "DOS"
+
+# elif defined(__OS2__)
+# define PLATFORM_ID "OS2"
+
+# elif defined(__WINDOWS__)
+# define PLATFORM_ID "Windows3x"
+
+# elif defined(__VXWORKS__)
+# define PLATFORM_ID "VxWorks"
+
+# else /* unknown platform */
+# define PLATFORM_ID
+# endif
+
+#elif defined(__INTEGRITY)
+# if defined(INT_178B)
+# define PLATFORM_ID "Integrity178"
+
+# else /* regular Integrity */
+# define PLATFORM_ID "Integrity"
+# endif
+
+#else /* unknown platform */
+# define PLATFORM_ID
+
+#endif
+
+/* For windows compilers MSVC and Intel we can determine
+ the architecture of the compiler being used. This is because
+ the compilers do not have flags that can change the architecture,
+ but rather depend on which compiler is being used
+*/
+#if defined(_WIN32) && defined(_MSC_VER)
+# if defined(_M_IA64)
+# define ARCHITECTURE_ID "IA64"
+
+# elif defined(_M_X64) || defined(_M_AMD64)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# elif defined(_M_ARM64)
+# define ARCHITECTURE_ID "ARM64"
+
+# elif defined(_M_ARM)
+# if _M_ARM == 4
+# define ARCHITECTURE_ID "ARMV4I"
+# elif _M_ARM == 5
+# define ARCHITECTURE_ID "ARMV5I"
+# else
+# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
+# endif
+
+# elif defined(_M_MIPS)
+# define ARCHITECTURE_ID "MIPS"
+
+# elif defined(_M_SH)
+# define ARCHITECTURE_ID "SHx"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__WATCOMC__)
+# if defined(_M_I86)
+# define ARCHITECTURE_ID "I86"
+
+# elif defined(_M_IX86)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
+# if defined(__ICCARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__ICCRX__)
+# define ARCHITECTURE_ID "RX"
+
+# elif defined(__ICCRH850__)
+# define ARCHITECTURE_ID "RH850"
+
+# elif defined(__ICCRL78__)
+# define ARCHITECTURE_ID "RL78"
+
+# elif defined(__ICCRISCV__)
+# define ARCHITECTURE_ID "RISCV"
+
+# elif defined(__ICCAVR__)
+# define ARCHITECTURE_ID "AVR"
+
+# elif defined(__ICC430__)
+# define ARCHITECTURE_ID "MSP430"
+
+# elif defined(__ICCV850__)
+# define ARCHITECTURE_ID "V850"
+
+# elif defined(__ICC8051__)
+# define ARCHITECTURE_ID "8051"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+
+#elif defined(__ghs__)
+# if defined(__PPC64__)
+# define ARCHITECTURE_ID "PPC64"
+
+# elif defined(__ppc__)
+# define ARCHITECTURE_ID "PPC"
+
+# elif defined(__ARM__)
+# define ARCHITECTURE_ID "ARM"
+
+# elif defined(__x86_64__)
+# define ARCHITECTURE_ID "x64"
+
+# elif defined(__i386__)
+# define ARCHITECTURE_ID "X86"
+
+# else /* unknown architecture */
+# define ARCHITECTURE_ID ""
+# endif
+#else
+# define ARCHITECTURE_ID
+#endif
+
+/* Convert integer to decimal digit literals. */
+#define DEC(n) \
+ ('0' + (((n) / 10000000)%10)), \
+ ('0' + (((n) / 1000000)%10)), \
+ ('0' + (((n) / 100000)%10)), \
+ ('0' + (((n) / 10000)%10)), \
+ ('0' + (((n) / 1000)%10)), \
+ ('0' + (((n) / 100)%10)), \
+ ('0' + (((n) / 10)%10)), \
+ ('0' + ((n) % 10))
+
+/* Convert integer to hex digit literals. */
+#define HEX(n) \
+ ('0' + ((n)>>28 & 0xF)), \
+ ('0' + ((n)>>24 & 0xF)), \
+ ('0' + ((n)>>20 & 0xF)), \
+ ('0' + ((n)>>16 & 0xF)), \
+ ('0' + ((n)>>12 & 0xF)), \
+ ('0' + ((n)>>8 & 0xF)), \
+ ('0' + ((n)>>4 & 0xF)), \
+ ('0' + ((n) & 0xF))
+
+/* Construct a string literal encoding the version number components. */
+#ifdef COMPILER_VERSION_MAJOR
+char const info_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
+ COMPILER_VERSION_MAJOR,
+# ifdef COMPILER_VERSION_MINOR
+ '.', COMPILER_VERSION_MINOR,
+# ifdef COMPILER_VERSION_PATCH
+ '.', COMPILER_VERSION_PATCH,
+# ifdef COMPILER_VERSION_TWEAK
+ '.', COMPILER_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct a string literal encoding the internal version number. */
+#ifdef COMPILER_VERSION_INTERNAL
+char const info_version_internal[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
+ 'i','n','t','e','r','n','a','l','[',
+ COMPILER_VERSION_INTERNAL,']','\0'};
+#endif
+
+/* Construct a string literal encoding the version number components. */
+#ifdef SIMULATE_VERSION_MAJOR
+char const info_simulate_version[] = {
+ 'I', 'N', 'F', 'O', ':',
+ 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
+ SIMULATE_VERSION_MAJOR,
+# ifdef SIMULATE_VERSION_MINOR
+ '.', SIMULATE_VERSION_MINOR,
+# ifdef SIMULATE_VERSION_PATCH
+ '.', SIMULATE_VERSION_PATCH,
+# ifdef SIMULATE_VERSION_TWEAK
+ '.', SIMULATE_VERSION_TWEAK,
+# endif
+# endif
+# endif
+ ']','\0'};
+#endif
+
+/* Construct the string literal in pieces to prevent the source from
+ getting matched. Store it in a pointer rather than an array
+ because some compilers will just produce instructions to fill the
+ array rather than assigning a pointer to a static array. */
+char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
+char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
+
+
+
+
+#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
+# if defined(__INTEL_CXX11_MODE__)
+# if defined(__cpp_aggregate_nsdmi)
+# define CXX_STD 201402L
+# else
+# define CXX_STD 201103L
+# endif
+# else
+# define CXX_STD 199711L
+# endif
+#elif defined(_MSC_VER) && defined(_MSVC_LANG)
+# define CXX_STD _MSVC_LANG
+#else
+# define CXX_STD __cplusplus
+#endif
+
+const char* info_language_dialect_default = "INFO" ":" "dialect_default["
+#if CXX_STD > 201703L
+ "20"
+#elif CXX_STD >= 201703L
+ "17"
+#elif CXX_STD >= 201402L
+ "14"
+#elif CXX_STD >= 201103L
+ "11"
+#else
+ "98"
+#endif
+"]";
+
+/*--------------------------------------------------------------------------*/
+
+int main(int argc, char* argv[])
+{
+ int require = 0;
+ require += info_compiler[argc];
+ require += info_platform[argc];
+#ifdef COMPILER_VERSION_MAJOR
+ require += info_version[argc];
+#endif
+#ifdef COMPILER_VERSION_INTERNAL
+ require += info_version_internal[argc];
+#endif
+#ifdef SIMULATE_ID
+ require += info_simulate[argc];
+#endif
+#ifdef SIMULATE_VERSION_MAJOR
+ require += info_simulate_version[argc];
+#endif
+#if defined(__CRAYXE) || defined(__CRAYXC)
+ require += info_cray[argc];
+#endif
+ require += info_language_dialect_default[argc];
+ (void)argv;
+ return require;
+}
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.exe b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.exe
new file mode 100644
index 0000000..ab2ef1a
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.exe differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.vcxproj b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.vcxproj
new file mode 100644
index 0000000..1703fce
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.vcxproj
@@ -0,0 +1,71 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {CAE07175-D007-4FC3-BFE8-47B392814159}
+ CompilerIdCXX
+ Win32Proj
+
+
+ 10.0.18362.0
+
+
+
+
+
+
+
+
+
+
+
+ Application
+ v141
+ MultiByte
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.30319.1
+ .\
+ $(Configuration)\
+ false
+
+
+
+ Disabled
+ %(PreprocessorDefinitions)
+ false
+ EnableFastChecks
+ MultiThreadedDebugDLL
+
+
+ TurnOffAllWarnings
+
+
+
+
+
+ false
+ Console
+
+
+
+ for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i
+
+
+
+
+
+
+
+
+
+
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj
new file mode 100644
index 0000000..d060b08
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CMakeCXXCompilerId.obj differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..032a472
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.command.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..d3aeb8e
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.read.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..577fef3
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CL.write.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate
new file mode 100644
index 0000000..33c35e5
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/CompilerIdCXX.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdCXX\|
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog
new file mode 100644
index 0000000..fc6b473
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.command.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog
new file mode 100644
index 0000000..13f4959
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.read.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog
new file mode 100644
index 0000000..e69deeb
Binary files /dev/null and b/Lib/CMakeFiles/3.18.0-rc3/CompilerIdCXX/Debug/CompilerIdCXX.tlog/link.write.1.tlog differ
diff --git a/Lib/CMakeFiles/3.18.0-rc3/VCTargetsPath.txt b/Lib/CMakeFiles/3.18.0-rc3/VCTargetsPath.txt
new file mode 100644
index 0000000..2245f95
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/VCTargetsPath.txt
@@ -0,0 +1 @@
+D:/Program Files/VS/2017/Common7/IDE/VC/VCTargets
diff --git a/Lib/CMakeFiles/3.18.0-rc3/VCTargetsPath.vcxproj b/Lib/CMakeFiles/3.18.0-rc3/VCTargetsPath.vcxproj
new file mode 100644
index 0000000..5e0f508
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/VCTargetsPath.vcxproj
@@ -0,0 +1,28 @@
+
+
+
+
+ Debug
+ x64
+
+
+
+ {F3FC6D86-508D-3FB1-96D2-995F08B142EC}
+ Win32Proj
+ x64
+ 10.0.18362.0
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+ echo VCTargetsPath=$(VCTargetsPath)
+
+
+
+
diff --git a/Lib/CMakeFiles/3.18.0-rc3/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate b/Lib/CMakeFiles/3.18.0-rc3/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate
new file mode 100644
index 0000000..774df0d
--- /dev/null
+++ b/Lib/CMakeFiles/3.18.0-rc3/x64/Debug/VCTargetsPath.tlog/VCTargetsPath.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Debug|x64|D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\|
diff --git a/Lib/CMakeFiles/42929ebe7cc9134a771d1bfc270d3071/INSTALL_force.rule b/Lib/CMakeFiles/42929ebe7cc9134a771d1bfc270d3071/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/42929ebe7cc9134a771d1bfc270d3071/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/476ad9930ac5816d1e2597c389278301/INSTALL_force.rule b/Lib/CMakeFiles/476ad9930ac5816d1e2597c389278301/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/476ad9930ac5816d1e2597c389278301/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/48a520eeaa9f623e73c7df40f462af68/INSTALL_force.rule b/Lib/CMakeFiles/48a520eeaa9f623e73c7df40f462af68/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/48a520eeaa9f623e73c7df40f462af68/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/550edc707f0e6159e1930ec05b0b9700/INSTALL_force.rule b/Lib/CMakeFiles/550edc707f0e6159e1930ec05b0b9700/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/550edc707f0e6159e1930ec05b0b9700/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/5c4abf0f53c155ae19d3844ac101a6f9/INSTALL_force.rule b/Lib/CMakeFiles/5c4abf0f53c155ae19d3844ac101a6f9/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/5c4abf0f53c155ae19d3844ac101a6f9/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/76f95a93c4970720455b52dd08ce1fd6/INSTALL_force.rule b/Lib/CMakeFiles/76f95a93c4970720455b52dd08ce1fd6/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/76f95a93c4970720455b52dd08ce1fd6/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/7eae69f9cb86813ce55fd92ee19f259f/INSTALL_force.rule b/Lib/CMakeFiles/7eae69f9cb86813ce55fd92ee19f259f/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/7eae69f9cb86813ce55fd92ee19f259f/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/865a610065f5b90e4b108efbb99db8a2/INSTALL_force.rule b/Lib/CMakeFiles/865a610065f5b90e4b108efbb99db8a2/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/865a610065f5b90e4b108efbb99db8a2/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/92bded8849f148072396df2f7ae121aa/INSTALL_force.rule b/Lib/CMakeFiles/92bded8849f148072396df2f7ae121aa/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/92bded8849f148072396df2f7ae121aa/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/942092d39ed92c0aecc68c09bdc74451/INSTALL_force.rule b/Lib/CMakeFiles/942092d39ed92c0aecc68c09bdc74451/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/942092d39ed92c0aecc68c09bdc74451/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/953e9b160b407464f1affdd09e90f290/INSTALL_force.rule b/Lib/CMakeFiles/953e9b160b407464f1affdd09e90f290/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/953e9b160b407464f1affdd09e90f290/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/97eb3a929b60fdd5e03ce89e21b3e1f1/INSTALL_force.rule b/Lib/CMakeFiles/97eb3a929b60fdd5e03ce89e21b3e1f1/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/97eb3a929b60fdd5e03ce89e21b3e1f1/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/CMakeOutput.log b/Lib/CMakeFiles/CMakeOutput.log
new file mode 100644
index 0000000..05a357c
--- /dev/null
+++ b/Lib/CMakeFiles/CMakeOutput.log
@@ -0,0 +1,143 @@
+The system is: Windows - 10.0.18363 - AMD64
+Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
+Compiler:
+Build flags:
+Id flags:
+
+The output was:
+0
+用于 .NET Framework 的 Microsoft (R) 生成引擎版本 15.9.21+g9802d43bc3
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+生成启动时间为 2020/7/3 22:49:43。
+节点 1 上的项目“D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdC\CompilerIdC.vcxproj”(默认目标)。
+PrepareForBuild:
+ 正在创建目录“Debug\”。
+ 正在创建目录“Debug\CompilerIdC.tlog\”。
+InitializeBuildStatus:
+ 正在创建“Debug\CompilerIdC.tlog\unsuccessfulbuild”,因为已指定“AlwaysCreate”。
+ClCompile:
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /nologo /W0 /WX- /diagnostics:classic /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\" /Fd"Debug\vc141.pdb" /Gd /TC /FC /errorReport:queue CMakeCCompilerId.c
+ CMakeCCompilerId.c
+Link:
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdC.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdC.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdC.lib" /MACHINE:X64 Debug\CMakeCCompilerId.obj
+ CompilerIdC.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdC\.\CompilerIdC.exe
+PostBuildEvent:
+ for %%i in (cl.exe) do @echo CMAKE_C_COMPILER=%%~$PATH:i
+ :VCEnd
+ CMAKE_C_COMPILER=D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\bin\Hostx86\x64\cl.exe
+FinalizeBuildStatus:
+ 正在删除文件“Debug\CompilerIdC.tlog\unsuccessfulbuild”。
+ 正在对“Debug\CompilerIdC.tlog\CompilerIdC.lastbuildstate”执行 Touch 任务。
+已完成生成项目“D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdC\CompilerIdC.vcxproj”(默认目标)的操作。
+
+已成功生成。
+ 0 个警告
+ 0 个错误
+
+已用时间 00:00:02.59
+
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.exe"
+
+Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CompilerIdC.vcxproj"
+
+The C compiler identification is MSVC, found in "D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/3.18.0-rc3/CompilerIdC/CompilerIdC.exe"
+
+Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
+Compiler:
+Build flags:
+Id flags:
+
+The output was:
+0
+用于 .NET Framework 的 Microsoft (R) 生成引擎版本 15.9.21+g9802d43bc3
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+生成启动时间为 2020/7/3 22:49:46。
+节点 1 上的项目“D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdCXX\CompilerIdCXX.vcxproj”(默认目标)。
+PrepareForBuild:
+ 正在创建目录“Debug\”。
+ 正在创建目录“Debug\CompilerIdCXX.tlog\”。
+InitializeBuildStatus:
+ 正在创建“Debug\CompilerIdCXX.tlog\unsuccessfulbuild”,因为已指定“AlwaysCreate”。
+ClCompile:
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\CL.exe /c /nologo /W0 /WX- /diagnostics:classic /Od /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"Debug\\" /Fd"Debug\vc141.pdb" /Gd /TP /FC /errorReport:queue CMakeCXXCompilerId.cpp
+ CMakeCXXCompilerId.cpp
+Link:
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\bin\HostX86\x64\link.exe /ERRORREPORT:QUEUE /OUT:".\CompilerIdCXX.exe" /INCREMENTAL:NO /NOLOGO kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /MANIFEST /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /manifest:embed /PDB:".\CompilerIdCXX.pdb" /SUBSYSTEM:CONSOLE /TLBID:1 /DYNAMICBASE /NXCOMPAT /IMPLIB:".\CompilerIdCXX.lib" /MACHINE:X64 Debug\CMakeCXXCompilerId.obj
+ CompilerIdCXX.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdCXX\.\CompilerIdCXX.exe
+PostBuildEvent:
+ for %%i in (cl.exe) do @echo CMAKE_CXX_COMPILER=%%~$PATH:i
+ :VCEnd
+ CMAKE_CXX_COMPILER=D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\bin\Hostx86\x64\cl.exe
+FinalizeBuildStatus:
+ 正在删除文件“Debug\CompilerIdCXX.tlog\unsuccessfulbuild”。
+ 正在对“Debug\CompilerIdCXX.tlog\CompilerIdCXX.lastbuildstate”执行 Touch 任务。
+已完成生成项目“D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\3.18.0-rc3\CompilerIdCXX\CompilerIdCXX.vcxproj”(默认目标)的操作。
+
+已成功生成。
+ 0 个警告
+ 0 个错误
+
+已用时间 00:00:02.15
+
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.exe"
+
+Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CompilerIdCXX.vcxproj"
+
+The CXX compiler identification is MSVC, found in "D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/3.18.0-rc3/CompilerIdCXX/CompilerIdCXX.exe"
+
+Detecting C compiler ABI info compiled with the following output:
+Change Dir: D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/CMakeTmp
+
+Run Build Command(s):D:/Program Files/VS/2017/MSBuild/15.0/Bin/MSBuild.exe cmTC_28eb7.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=15.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 15.9.21+g9802d43bc3
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.16.27041 版
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+
+ CMakeCCompilerABI.c
+ cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_28eb7.dir\Debug\\" /Fd"cmTC_28eb7.dir\Debug\vc141.pdb" /Gd /TC /errorReport:queue "D:\Program Files\cmake-3.18.0-rc3-win64-x64\share\cmake-3.18\Modules\CMakeCCompilerABI.c"
+
+ cmTC_28eb7.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\CMakeTmp\Debug\cmTC_28eb7.exe
+
+
+
+Detecting CXX compiler ABI info compiled with the following output:
+Change Dir: D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/CMakeTmp
+
+Run Build Command(s):D:/Program Files/VS/2017/MSBuild/15.0/Bin/MSBuild.exe cmTC_024c0.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=15.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 15.9.21+g9802d43bc3
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.16.27041 版
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+
+ CMakeCXXCompilerABI.cpp
+ cl /c /Zi /W3 /WX- /diagnostics:classic /Od /Ob0 /D WIN32 /D _WINDOWS /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /GR /Fo"cmTC_024c0.dir\Debug\\" /Fd"cmTC_024c0.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "D:\Program Files\cmake-3.18.0-rc3-win64-x64\share\cmake-3.18\Modules\CMakeCXXCompilerABI.cpp"
+
+ cmTC_024c0.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\CMakeTmp\Debug\cmTC_024c0.exe
+
+
+
+Performing C++ SOURCE FILE Test HAS_MSVC_GL_LTCG succeeded with the following output:
+Change Dir: D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/CMakeTmp
+
+Run Build Command(s):D:/Program Files/VS/2017/MSBuild/15.0/Bin/MSBuild.exe cmTC_bc71b.vcxproj /p:Configuration=Debug /p:Platform=x64 /p:VisualStudioVersion=15.0 /v:m && 用于 .NET Framework 的 Microsoft (R) 生成引擎版本 15.9.21+g9802d43bc3
+版权所有(C) Microsoft Corporation。保留所有权利。
+
+ 用于 x64 的 Microsoft (R) C/C++ 优化编译器 19.16.27041 版
+ 版权所有(C) Microsoft Corporation。保留所有权利。
+
+ src.cxx
+ cl /c /Zi /W4 /WX- /diagnostics:classic /MP /Od /Ob0 /GL /D HAS_MSVC_GL_LTCG /D "CMAKE_INTDIR=\"Debug\"" /D _MBCS /Gm- /EHsc /RTC1 /MDd /GS /fp:precise /Zc:wchar_t /Zc:forScope /Zc:inline /Fo"cmTC_bc71b.dir\Debug\\" /Fd"cmTC_bc71b.dir\Debug\vc141.pdb" /Gd /TP /errorReport:queue "D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\CMakeTmp\src.cxx"
+
+LINK : warning LNK4075: 忽略“/INCREMENTAL”(由于“/LTCG”规范) [D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\CMakeTmp\cmTC_bc71b.vcxproj]
+ 正在生成代码
+ 已完成代码的生成
+ cmTC_bc71b.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\CMakeTmp\Debug\cmTC_bc71b.exe
+
+
+Source file was:
+int main() { return 0; }
diff --git a/Lib/CMakeFiles/TargetDirectories.txt b/Lib/CMakeFiles/TargetDirectories.txt
new file mode 100644
index 0000000..2706bd9
--- /dev/null
+++ b/Lib/CMakeFiles/TargetDirectories.txt
@@ -0,0 +1,57 @@
+D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/ALL_BUILD.dir
+D:/BJTU/Python/openpose-master/build-2017/src/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/3d/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/calibration/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/core/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/face/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/filestream/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/gpu/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/gui/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/hand/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/net/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/pose/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/producer/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/thread/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/tracking/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/unity/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/utilities/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/wrapper/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/calibration/CMakeFiles/Calibration.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/calibration/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/openpose/CMakeFiles/OpenPoseDemo.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/openpose/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/CMakeFiles/1_custom_post_processing.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/01_body_from_image_default.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/02_whole_body_from_image_default.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/08_heatmaps_from_image.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/03_keypoints_from_image.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/05_keypoints_from_images_multi_gpu.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/04_keypoints_from_images.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/06_face_from_image.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/14_synchronous_custom_input.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/07_hand_from_image.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/09_keypoints_from_heatmaps.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/10_asynchronous_custom_input.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/11_asynchronous_custom_input_multi_camera.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/12_asynchronous_custom_output.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/13_asynchronous_custom_input_output_and_datum.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/15_synchronous_custom_preprocessing.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/16_synchronous_custom_postprocessing.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/17_synchronous_custom_output.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/CMakeFiles/18_synchronous_custom_all_and_datum.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_python/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/CMakeFiles/1_thread_user_processing_function.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/CMakeFiles/2_thread_user_input_processing_output_and_datum.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/examples/user_code/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/3rdparty/pybind11/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/3rdparty/pybind11/CMakeFiles/ALL_BUILD.dir
+D:/BJTU/Python/openpose-master/build-2017/python/CMakeFiles/INSTALL.dir
+D:/BJTU/Python/openpose-master/build-2017/python/openpose/CMakeFiles/pyopenpose.dir
+D:/BJTU/Python/openpose-master/build-2017/python/openpose/CMakeFiles/INSTALL.dir
diff --git a/Lib/CMakeFiles/aafe8682f30ee416ebace8f195dffe25/INSTALL_force.rule b/Lib/CMakeFiles/aafe8682f30ee416ebace8f195dffe25/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/aafe8682f30ee416ebace8f195dffe25/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/c08b02478fa4a1ea0ea541b202bdef36/INSTALL_force.rule b/Lib/CMakeFiles/c08b02478fa4a1ea0ea541b202bdef36/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/c08b02478fa4a1ea0ea541b202bdef36/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/c464b70d0a3f146f06ba1eb0f5a873a4/INSTALL_force.rule b/Lib/CMakeFiles/c464b70d0a3f146f06ba1eb0f5a873a4/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/c464b70d0a3f146f06ba1eb0f5a873a4/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/c9a2bd75baf1ca9947c08cf46c4290ba/INSTALL_force.rule b/Lib/CMakeFiles/c9a2bd75baf1ca9947c08cf46c4290ba/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/c9a2bd75baf1ca9947c08cf46c4290ba/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/cbefcb2ced4f960aad9871852a67f438/INSTALL_force.rule b/Lib/CMakeFiles/cbefcb2ced4f960aad9871852a67f438/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/cbefcb2ced4f960aad9871852a67f438/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/ccdfbb866cf051221246141690984831/INSTALL_force.rule b/Lib/CMakeFiles/ccdfbb866cf051221246141690984831/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/ccdfbb866cf051221246141690984831/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/ceb663e52ae089e314ecdc1625bac5ec/INSTALL_force.rule b/Lib/CMakeFiles/ceb663e52ae089e314ecdc1625bac5ec/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/ceb663e52ae089e314ecdc1625bac5ec/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/cmake.check_cache b/Lib/CMakeFiles/cmake.check_cache
new file mode 100644
index 0000000..3dccd73
--- /dev/null
+++ b/Lib/CMakeFiles/cmake.check_cache
@@ -0,0 +1 @@
+# This file is generated by cmake for dependency checking of the CMakeCache.txt file
diff --git a/Lib/CMakeFiles/dc4de5212f33107ed5c22d16cfae7092/INSTALL_force.rule b/Lib/CMakeFiles/dc4de5212f33107ed5c22d16cfae7092/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/dc4de5212f33107ed5c22d16cfae7092/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/e209e4f15df88f34c6e250dc32ea3da5/INSTALL_force.rule b/Lib/CMakeFiles/e209e4f15df88f34c6e250dc32ea3da5/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/e209e4f15df88f34c6e250dc32ea3da5/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/ec35444e7548a4314c52a49b13060be6/INSTALL_force.rule b/Lib/CMakeFiles/ec35444e7548a4314c52a49b13060be6/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/ec35444e7548a4314c52a49b13060be6/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/ed5233e3233d3140beaf8d23adb5d25c/INSTALL_force.rule b/Lib/CMakeFiles/ed5233e3233d3140beaf8d23adb5d25c/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/ed5233e3233d3140beaf8d23adb5d25c/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/fe3ae3cb2f585ea1d2b62f7c17fa130c/INSTALL_force.rule b/Lib/CMakeFiles/fe3ae3cb2f585ea1d2b62f7c17fa130c/INSTALL_force.rule
new file mode 100644
index 0000000..2d3998c
--- /dev/null
+++ b/Lib/CMakeFiles/fe3ae3cb2f585ea1d2b62f7c17fa130c/INSTALL_force.rule
@@ -0,0 +1 @@
+# generated from CMake
diff --git a/Lib/CMakeFiles/generate.stamp b/Lib/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/CMakeFiles/generate.stamp.depend b/Lib/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..758f348
--- /dev/null
+++ b/Lib/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,29 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/CMakeLists.txt
+D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/3.18.0-rc3/CMakeCCompiler.cmake
+D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/3.18.0-rc3/CMakeCXXCompiler.cmake
+D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/3.18.0-rc3/CMakeRCCompiler.cmake
+D:/BJTU/Python/openpose-master/build-2017/CMakeFiles/3.18.0-rc3/CMakeSystem.cmake
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeCInformation.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeCXXInformation.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeCommonLanguageInclude.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeDependentOption.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeGenericSystem.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeInitializeConfigs.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeLanguageInformation.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeRCInformation.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeSystemSpecificInformation.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/CMakeSystemSpecificInitialize.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Compiler/CMakeCommonCompilerMacros.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Compiler/MSVC-C.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Compiler/MSVC-CXX.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/select_compute_arch.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindPackageHandleStandardArgs.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindPackageMessage.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Platform/Windows-MSVC-C.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Platform/Windows-MSVC-CXX.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Platform/Windows-MSVC.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Platform/Windows.cmake
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/Platform/WindowsPaths.cmake
diff --git a/Lib/INSTALL.vcxproj b/Lib/INSTALL.vcxproj
new file mode 100644
index 0000000..008128e
--- /dev/null
+++ b/Lib/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/INSTALL.vcxproj.filters b/Lib/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..0467599
--- /dev/null
+++ b/Lib/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/OpenPose.sln b/Lib/OpenPose.sln
new file mode 100644
index 0000000..f1f9198
--- /dev/null
+++ b/Lib/OpenPose.sln
@@ -0,0 +1,326 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CMakePredefinedTargets", "CMakePredefinedTargets", "{627A9EC6-7F6A-39D5-AC38-33089FAAA6D3}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{C7E00158-624E-39D9-9C82-316A8D460528}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Tutorial", "Examples\Tutorial", "{EE30986F-9B8D-3C10-AF28-3605E85D0E3C}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "AddModule", "Examples\Tutorial\AddModule", "{3715A0A1-1E19-389C-82EA-12D575BFA578}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "C++ API", "Examples\Tutorial\C++ API", "{97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Thread API", "Examples\Tutorial\Thread API", "{FFFDA694-B89D-342C-99FD-4D46A64BCE03}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "OpenPose library", "OpenPose library", "{5ACEAFF9-2787-36DF-A122-544C1DCBA10C}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenPoseDemo", "examples\openpose\OpenPoseDemo.vcxproj", "{FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "01_body_from_image_default", "examples\tutorial_api_cpp\01_body_from_image_default.vcxproj", "{5D8E9189-05C6-34F3-A4E2-8713A3C8537E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "02_whole_body_from_image_default", "examples\tutorial_api_cpp\02_whole_body_from_image_default.vcxproj", "{D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "03_keypoints_from_image", "examples\tutorial_api_cpp\03_keypoints_from_image.vcxproj", "{75584824-2A5F-3172-AD57-F19C98E43ACA}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "04_keypoints_from_images", "examples\tutorial_api_cpp\04_keypoints_from_images.vcxproj", "{271951E6-1C8C-33C1-981D-783A3B02BA07}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "05_keypoints_from_images_multi_gpu", "examples\tutorial_api_cpp\05_keypoints_from_images_multi_gpu.vcxproj", "{EEC9366B-9078-3EEA-905D-9E1019445962}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "06_face_from_image", "examples\tutorial_api_cpp\06_face_from_image.vcxproj", "{9AF1546D-FB88-3A08-A407-45A482BE8EAB}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "07_hand_from_image", "examples\tutorial_api_cpp\07_hand_from_image.vcxproj", "{28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "08_heatmaps_from_image", "examples\tutorial_api_cpp\08_heatmaps_from_image.vcxproj", "{55E3E58F-DC57-3F14-A3D1-C04D57B6A289}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "09_keypoints_from_heatmaps", "examples\tutorial_api_cpp\09_keypoints_from_heatmaps.vcxproj", "{5509C517-EB61-3755-89BD-6684706E6832}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "10_asynchronous_custom_input", "examples\tutorial_api_cpp\10_asynchronous_custom_input.vcxproj", "{4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "11_asynchronous_custom_input_multi_camera", "examples\tutorial_api_cpp\11_asynchronous_custom_input_multi_camera.vcxproj", "{D4E53486-C21F-323C-9980-92CA1222E699}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "12_asynchronous_custom_output", "examples\tutorial_api_cpp\12_asynchronous_custom_output.vcxproj", "{287F3580-8C0A-3432-918D-ADB876C6170C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "13_asynchronous_custom_input_output_and_datum", "examples\tutorial_api_cpp\13_asynchronous_custom_input_output_and_datum.vcxproj", "{DEAAFF83-74BD-3F98-8755-2D79948C0D9A}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "14_synchronous_custom_input", "examples\tutorial_api_cpp\14_synchronous_custom_input.vcxproj", "{D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "15_synchronous_custom_preprocessing", "examples\tutorial_api_cpp\15_synchronous_custom_preprocessing.vcxproj", "{F20445FF-B3B9-3A04-8E64-7092DC57175C}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "16_synchronous_custom_postprocessing", "examples\tutorial_api_cpp\16_synchronous_custom_postprocessing.vcxproj", "{53982123-D444-3CB9-BF2F-A99748470C69}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "17_synchronous_custom_output", "examples\tutorial_api_cpp\17_synchronous_custom_output.vcxproj", "{AD608E28-4AD5-36A5-B5E6-DF4269F667B5}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "18_synchronous_custom_all_and_datum", "examples\tutorial_api_cpp\18_synchronous_custom_all_and_datum.vcxproj", "{4085AC6D-929C-3517-AF9F-A3CCDB89F06E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "1_custom_post_processing", "examples\tutorial_add_module\1_custom_post_processing.vcxproj", "{CFFE770E-D009-366A-B038-326CECEDF428}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "1_thread_user_processing_function", "examples\tutorial_api_thread\1_thread_user_processing_function.vcxproj", "{FEEDE782-93EF-3C19-88B1-617151419F17}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "2_thread_user_input_processing_output_and_datum", "examples\tutorial_api_thread\2_thread_user_input_processing_output_and_datum.vcxproj", "{BB4492F8-A7D7-376F-8C12-F133D7E99857}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ALL_BUILD", "ALL_BUILD.vcxproj", "{122B98FA-1CE8-3F5C-941A-0FCB757B1C38}"
+ ProjectSection(ProjectDependencies) = postProject
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E} = {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38} = {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}
+ {75584824-2A5F-3172-AD57-F19C98E43ACA} = {75584824-2A5F-3172-AD57-F19C98E43ACA}
+ {271951E6-1C8C-33C1-981D-783A3B02BA07} = {271951E6-1C8C-33C1-981D-783A3B02BA07}
+ {EEC9366B-9078-3EEA-905D-9E1019445962} = {EEC9366B-9078-3EEA-905D-9E1019445962}
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB} = {9AF1546D-FB88-3A08-A407-45A482BE8EAB}
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39} = {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289} = {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}
+ {5509C517-EB61-3755-89BD-6684706E6832} = {5509C517-EB61-3755-89BD-6684706E6832}
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8} = {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}
+ {D4E53486-C21F-323C-9980-92CA1222E699} = {D4E53486-C21F-323C-9980-92CA1222E699}
+ {287F3580-8C0A-3432-918D-ADB876C6170C} = {287F3580-8C0A-3432-918D-ADB876C6170C}
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A} = {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F} = {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C} = {F20445FF-B3B9-3A04-8E64-7092DC57175C}
+ {53982123-D444-3CB9-BF2F-A99748470C69} = {53982123-D444-3CB9-BF2F-A99748470C69}
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5} = {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E} = {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}
+ {CFFE770E-D009-366A-B038-326CECEDF428} = {CFFE770E-D009-366A-B038-326CECEDF428}
+ {FEEDE782-93EF-3C19-88B1-617151419F17} = {FEEDE782-93EF-3C19-88B1-617151419F17}
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857} = {BB4492F8-A7D7-376F-8C12-F133D7E99857}
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8} = {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E} = {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ {876F53EC-E55B-362B-BA39-361F314C6FBE} = {876F53EC-E55B-362B-BA39-361F314C6FBE}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Calibration", "examples\calibration\Calibration.vcxproj", "{60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "INSTALL", "INSTALL.vcxproj", "{639B265C-F24F-371C-BC88-C7923582563E}"
+ ProjectSection(ProjectDependencies) = postProject
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38} = {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "openpose", "src\openpose\openpose.vcxproj", "{A7EA9470-80A6-34D2-A73F-40B5F620B75B}"
+ ProjectSection(ProjectDependencies) = postProject
+ EndProjectSection
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pyopenpose", "python\openpose\pyopenpose.vcxproj", "{876F53EC-E55B-362B-BA39-361F314C6FBE}"
+ ProjectSection(ProjectDependencies) = postProject
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ EndProjectSection
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Release|x64 = Release|x64
+ Debug|x64 = Debug|x64
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}.Release|x64.ActiveCfg = Release|x64
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}.Release|x64.Build.0 = Release|x64
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}.Debug|x64.ActiveCfg = Debug|x64
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}.Debug|x64.Build.0 = Debug|x64
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}.Release|x64.ActiveCfg = Release|x64
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}.Release|x64.Build.0 = Release|x64
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}.Debug|x64.ActiveCfg = Debug|x64
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}.Debug|x64.Build.0 = Debug|x64
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}.Release|x64.ActiveCfg = Release|x64
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}.Release|x64.Build.0 = Release|x64
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}.Debug|x64.ActiveCfg = Debug|x64
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}.Debug|x64.Build.0 = Debug|x64
+ {75584824-2A5F-3172-AD57-F19C98E43ACA}.Release|x64.ActiveCfg = Release|x64
+ {75584824-2A5F-3172-AD57-F19C98E43ACA}.Release|x64.Build.0 = Release|x64
+ {75584824-2A5F-3172-AD57-F19C98E43ACA}.Debug|x64.ActiveCfg = Debug|x64
+ {75584824-2A5F-3172-AD57-F19C98E43ACA}.Debug|x64.Build.0 = Debug|x64
+ {271951E6-1C8C-33C1-981D-783A3B02BA07}.Release|x64.ActiveCfg = Release|x64
+ {271951E6-1C8C-33C1-981D-783A3B02BA07}.Release|x64.Build.0 = Release|x64
+ {271951E6-1C8C-33C1-981D-783A3B02BA07}.Debug|x64.ActiveCfg = Debug|x64
+ {271951E6-1C8C-33C1-981D-783A3B02BA07}.Debug|x64.Build.0 = Debug|x64
+ {EEC9366B-9078-3EEA-905D-9E1019445962}.Release|x64.ActiveCfg = Release|x64
+ {EEC9366B-9078-3EEA-905D-9E1019445962}.Release|x64.Build.0 = Release|x64
+ {EEC9366B-9078-3EEA-905D-9E1019445962}.Debug|x64.ActiveCfg = Debug|x64
+ {EEC9366B-9078-3EEA-905D-9E1019445962}.Debug|x64.Build.0 = Debug|x64
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB}.Release|x64.ActiveCfg = Release|x64
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB}.Release|x64.Build.0 = Release|x64
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB}.Debug|x64.ActiveCfg = Debug|x64
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB}.Debug|x64.Build.0 = Debug|x64
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}.Release|x64.ActiveCfg = Release|x64
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}.Release|x64.Build.0 = Release|x64
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}.Debug|x64.ActiveCfg = Debug|x64
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}.Debug|x64.Build.0 = Debug|x64
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}.Release|x64.ActiveCfg = Release|x64
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}.Release|x64.Build.0 = Release|x64
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}.Debug|x64.ActiveCfg = Debug|x64
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}.Debug|x64.Build.0 = Debug|x64
+ {5509C517-EB61-3755-89BD-6684706E6832}.Release|x64.ActiveCfg = Release|x64
+ {5509C517-EB61-3755-89BD-6684706E6832}.Release|x64.Build.0 = Release|x64
+ {5509C517-EB61-3755-89BD-6684706E6832}.Debug|x64.ActiveCfg = Debug|x64
+ {5509C517-EB61-3755-89BD-6684706E6832}.Debug|x64.Build.0 = Debug|x64
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}.Release|x64.ActiveCfg = Release|x64
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}.Release|x64.Build.0 = Release|x64
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}.Debug|x64.ActiveCfg = Debug|x64
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}.Debug|x64.Build.0 = Debug|x64
+ {D4E53486-C21F-323C-9980-92CA1222E699}.Release|x64.ActiveCfg = Release|x64
+ {D4E53486-C21F-323C-9980-92CA1222E699}.Release|x64.Build.0 = Release|x64
+ {D4E53486-C21F-323C-9980-92CA1222E699}.Debug|x64.ActiveCfg = Debug|x64
+ {D4E53486-C21F-323C-9980-92CA1222E699}.Debug|x64.Build.0 = Debug|x64
+ {287F3580-8C0A-3432-918D-ADB876C6170C}.Release|x64.ActiveCfg = Release|x64
+ {287F3580-8C0A-3432-918D-ADB876C6170C}.Release|x64.Build.0 = Release|x64
+ {287F3580-8C0A-3432-918D-ADB876C6170C}.Debug|x64.ActiveCfg = Debug|x64
+ {287F3580-8C0A-3432-918D-ADB876C6170C}.Debug|x64.Build.0 = Debug|x64
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}.Release|x64.ActiveCfg = Release|x64
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}.Release|x64.Build.0 = Release|x64
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}.Debug|x64.ActiveCfg = Debug|x64
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}.Debug|x64.Build.0 = Debug|x64
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}.Release|x64.ActiveCfg = Release|x64
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}.Release|x64.Build.0 = Release|x64
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}.Debug|x64.ActiveCfg = Debug|x64
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}.Debug|x64.Build.0 = Debug|x64
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C}.Release|x64.ActiveCfg = Release|x64
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C}.Release|x64.Build.0 = Release|x64
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C}.Debug|x64.ActiveCfg = Debug|x64
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C}.Debug|x64.Build.0 = Debug|x64
+ {53982123-D444-3CB9-BF2F-A99748470C69}.Release|x64.ActiveCfg = Release|x64
+ {53982123-D444-3CB9-BF2F-A99748470C69}.Release|x64.Build.0 = Release|x64
+ {53982123-D444-3CB9-BF2F-A99748470C69}.Debug|x64.ActiveCfg = Debug|x64
+ {53982123-D444-3CB9-BF2F-A99748470C69}.Debug|x64.Build.0 = Debug|x64
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}.Release|x64.ActiveCfg = Release|x64
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}.Release|x64.Build.0 = Release|x64
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}.Debug|x64.ActiveCfg = Debug|x64
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}.Debug|x64.Build.0 = Debug|x64
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}.Release|x64.ActiveCfg = Release|x64
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}.Release|x64.Build.0 = Release|x64
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}.Debug|x64.ActiveCfg = Debug|x64
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}.Debug|x64.Build.0 = Debug|x64
+ {CFFE770E-D009-366A-B038-326CECEDF428}.Release|x64.ActiveCfg = Release|x64
+ {CFFE770E-D009-366A-B038-326CECEDF428}.Release|x64.Build.0 = Release|x64
+ {CFFE770E-D009-366A-B038-326CECEDF428}.Debug|x64.ActiveCfg = Debug|x64
+ {CFFE770E-D009-366A-B038-326CECEDF428}.Debug|x64.Build.0 = Debug|x64
+ {FEEDE782-93EF-3C19-88B1-617151419F17}.Release|x64.ActiveCfg = Release|x64
+ {FEEDE782-93EF-3C19-88B1-617151419F17}.Release|x64.Build.0 = Release|x64
+ {FEEDE782-93EF-3C19-88B1-617151419F17}.Debug|x64.ActiveCfg = Debug|x64
+ {FEEDE782-93EF-3C19-88B1-617151419F17}.Debug|x64.Build.0 = Debug|x64
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857}.Release|x64.ActiveCfg = Release|x64
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857}.Release|x64.Build.0 = Release|x64
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857}.Debug|x64.ActiveCfg = Debug|x64
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857}.Debug|x64.Build.0 = Debug|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Release|x64.ActiveCfg = Release|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Release|x64.Build.0 = Release|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Debug|x64.ActiveCfg = Debug|x64
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}.Debug|x64.Build.0 = Debug|x64
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}.Release|x64.ActiveCfg = Release|x64
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}.Release|x64.Build.0 = Release|x64
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}.Debug|x64.ActiveCfg = Debug|x64
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}.Debug|x64.Build.0 = Debug|x64
+ {639B265C-F24F-371C-BC88-C7923582563E}.Release|x64.ActiveCfg = Release|x64
+ {639B265C-F24F-371C-BC88-C7923582563E}.Debug|x64.ActiveCfg = Debug|x64
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}.Release|x64.ActiveCfg = Release|x64
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}.Release|x64.Build.0 = Release|x64
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}.Debug|x64.ActiveCfg = Debug|x64
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}.Debug|x64.Build.0 = Debug|x64
+ {876F53EC-E55B-362B-BA39-361F314C6FBE}.Release|x64.ActiveCfg = Release|x64
+ {876F53EC-E55B-362B-BA39-361F314C6FBE}.Release|x64.Build.0 = Release|x64
+ {876F53EC-E55B-362B-BA39-361F314C6FBE}.Debug|x64.ActiveCfg = Debug|x64
+ {876F53EC-E55B-362B-BA39-361F314C6FBE}.Debug|x64.Build.0 = Debug|x64
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38} = {627A9EC6-7F6A-39D5-AC38-33089FAAA6D3}
+ {639B265C-F24F-371C-BC88-C7923582563E} = {627A9EC6-7F6A-39D5-AC38-33089FAAA6D3}
+ {EE30986F-9B8D-3C10-AF28-3605E85D0E3C} = {C7E00158-624E-39D9-9C82-316A8D460528}
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8} = {C7E00158-624E-39D9-9C82-316A8D460528}
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E} = {C7E00158-624E-39D9-9C82-316A8D460528}
+ {3715A0A1-1E19-389C-82EA-12D575BFA578} = {EE30986F-9B8D-3C10-AF28-3605E85D0E3C}
+ {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D} = {EE30986F-9B8D-3C10-AF28-3605E85D0E3C}
+ {FFFDA694-B89D-342C-99FD-4D46A64BCE03} = {EE30986F-9B8D-3C10-AF28-3605E85D0E3C}
+ {CFFE770E-D009-366A-B038-326CECEDF428} = {3715A0A1-1E19-389C-82EA-12D575BFA578}
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {75584824-2A5F-3172-AD57-F19C98E43ACA} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {271951E6-1C8C-33C1-981D-783A3B02BA07} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {EEC9366B-9078-3EEA-905D-9E1019445962} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {5509C517-EB61-3755-89BD-6684706E6832} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {D4E53486-C21F-323C-9980-92CA1222E699} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {287F3580-8C0A-3432-918D-ADB876C6170C} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {53982123-D444-3CB9-BF2F-A99748470C69} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E} = {97FBEAA6-73CA-3FA8-B2C7-5D325CF9FF1D}
+ {FEEDE782-93EF-3C19-88B1-617151419F17} = {FFFDA694-B89D-342C-99FD-4D46A64BCE03}
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857} = {FFFDA694-B89D-342C-99FD-4D46A64BCE03}
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B} = {5ACEAFF9-2787-36DF-A122-544C1DCBA10C}
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {CBE679A3-0D91-3045-913C-06204BB3DA77}
+ EndGlobalSection
+ GlobalSection(ExtensibilityAddIns) = postSolution
+ EndGlobalSection
+EndGlobal
diff --git a/Lib/bin/VCRUNTIME140.dll b/Lib/bin/VCRUNTIME140.dll
new file mode 100644
index 0000000..a6964e3
--- /dev/null
+++ b/Lib/bin/VCRUNTIME140.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d89c7b863fc1ac3a179d45d5fe1b9fd35fb6fbd45171ca68d0d68ab1c1ad04fb
+size 87888
diff --git a/Lib/bin/boost_filesystem-vc141-mt-gd-x64-1_69.dll b/Lib/bin/boost_filesystem-vc141-mt-gd-x64-1_69.dll
new file mode 100644
index 0000000..1de83bf
--- /dev/null
+++ b/Lib/bin/boost_filesystem-vc141-mt-gd-x64-1_69.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:917b51b68d785f280b5cb386c2ad59a5d434fb51052eb21aecae5f5b92cedee4
+size 236544
diff --git a/Lib/bin/boost_filesystem-vc141-mt-x64-1_69.dll b/Lib/bin/boost_filesystem-vc141-mt-x64-1_69.dll
new file mode 100644
index 0000000..d20f423
--- /dev/null
+++ b/Lib/bin/boost_filesystem-vc141-mt-x64-1_69.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:dd62c8c506ad61e273551f4b9a33849e92be5ce69b5a3d6ca3fd295b945acf31
+size 130560
diff --git a/Lib/bin/boost_thread-vc141-mt-gd-x64-1_69.dll b/Lib/bin/boost_thread-vc141-mt-gd-x64-1_69.dll
new file mode 100644
index 0000000..8a58634
--- /dev/null
+++ b/Lib/bin/boost_thread-vc141-mt-gd-x64-1_69.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b5fe5a673fe2fff447125a62f6b8ea33d6a0e4c6dcdc5898ae42b1035e8f3b3f
+size 228864
diff --git a/Lib/bin/boost_thread-vc141-mt-x64-1_69.dll b/Lib/bin/boost_thread-vc141-mt-x64-1_69.dll
new file mode 100644
index 0000000..3776c63
--- /dev/null
+++ b/Lib/bin/boost_thread-vc141-mt-x64-1_69.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9098978b1f5e2bc76bdc855239bbf030a5192cedcdcfc862041d5229a75cc03b
+size 97280
diff --git a/Lib/bin/caffe-d.dll b/Lib/bin/caffe-d.dll
new file mode 100644
index 0000000..0885c7d
--- /dev/null
+++ b/Lib/bin/caffe-d.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:79051da0e88094996dfffca404bf4264a7c9366db5f99016b58191295fe52d2e
+size 34192896
diff --git a/Lib/bin/caffe.dll b/Lib/bin/caffe.dll
new file mode 100644
index 0000000..51b04c9
--- /dev/null
+++ b/Lib/bin/caffe.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:1351cbe28b9f391a3f243c04ab0d1359064b073c541daea63453b632ab963163
+size 18942976
diff --git a/Lib/bin/caffehdf5.dll b/Lib/bin/caffehdf5.dll
new file mode 100644
index 0000000..0b564e3
--- /dev/null
+++ b/Lib/bin/caffehdf5.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:26d69a5eb59d53463a07d9c7da85b0f12203ad63ca3368e581b803e7ccf9b8f9
+size 2307072
diff --git a/Lib/bin/caffehdf5_D.dll b/Lib/bin/caffehdf5_D.dll
new file mode 100644
index 0000000..4b85832
--- /dev/null
+++ b/Lib/bin/caffehdf5_D.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bc176bfe161c9a13ebe8ec12e476d471d3a6b7cdc63e0c3ed2d43bb23c2283ce
+size 17643520
diff --git a/Lib/bin/caffehdf5_hl.dll b/Lib/bin/caffehdf5_hl.dll
new file mode 100644
index 0000000..bcd8890
--- /dev/null
+++ b/Lib/bin/caffehdf5_hl.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5eb9ae3963f451123b176f8731f8c0ecd0ef00e15f6729b26b08ebeb4007b276
+size 104448
diff --git a/Lib/bin/caffehdf5_hl_D.dll b/Lib/bin/caffehdf5_hl_D.dll
new file mode 100644
index 0000000..34ecd6c
--- /dev/null
+++ b/Lib/bin/caffehdf5_hl_D.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d9eb801ceda08397403411fb2ae61f18fd4904af7abecc6c227a01cdf4ce9c12
+size 228864
diff --git a/Lib/bin/caffezlib1.dll b/Lib/bin/caffezlib1.dll
new file mode 100644
index 0000000..f4aac83
--- /dev/null
+++ b/Lib/bin/caffezlib1.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:78c8d736ead1904ba4b7d499a918331adb68f39f43668c62dcbe00607a025594
+size 82432
diff --git a/Lib/bin/caffezlibd1.dll b/Lib/bin/caffezlibd1.dll
new file mode 100644
index 0000000..db686c7
--- /dev/null
+++ b/Lib/bin/caffezlibd1.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:c03623ba1b05b10d5781320a5a1a21a86f513f1f81482f52648fc7ec004d92a9
+size 201216
diff --git a/Lib/bin/cublas64_100.dll b/Lib/bin/cublas64_100.dll
new file mode 100644
index 0000000..afd440d
--- /dev/null
+++ b/Lib/bin/cublas64_100.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:85fd45be66ad91bfb3cced55d0a0890cac38597a3a8b9a0155992111a4002184
+size 67318784
diff --git a/Lib/bin/cudart64_100.dll b/Lib/bin/cudart64_100.dll
new file mode 100644
index 0000000..b34f331
--- /dev/null
+++ b/Lib/bin/cudart64_100.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7ca2ea3675f211078a7b0921bdfb49d633f0adbddcbc80f7faf5fcab136eb413
+size 416256
diff --git a/Lib/bin/cudnn64_7.dll b/Lib/bin/cudnn64_7.dll
new file mode 100644
index 0000000..4d87b75
--- /dev/null
+++ b/Lib/bin/cudnn64_7.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:26495e7008bc239cacf0e65704b5717b862ba5ca250c641ec4ad4b114efc0cff
+size 349596160
diff --git a/Lib/bin/curand64_100.dll b/Lib/bin/curand64_100.dll
new file mode 100644
index 0000000..9cbbdcc
--- /dev/null
+++ b/Lib/bin/curand64_100.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ca23f0a2334a6a736b4513a69675cffe6caced6fa38baa3f325ef4a18a78c37f
+size 49751040
diff --git a/Lib/bin/gflags.dll b/Lib/bin/gflags.dll
new file mode 100644
index 0000000..2e67b6f
--- /dev/null
+++ b/Lib/bin/gflags.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4cb11cccd0fad125f9bbb0845be38fa2e2b066923c1af640bb397b70a4cdb3f3
+size 139776
diff --git a/Lib/bin/gflagsd.dll b/Lib/bin/gflagsd.dll
new file mode 100644
index 0000000..053abec
--- /dev/null
+++ b/Lib/bin/gflagsd.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:63a3eedf1a6cba3113cdb896c146aa202e9ec08b9d46119211672694029e15d4
+size 557056
diff --git a/Lib/bin/glog.dll b/Lib/bin/glog.dll
new file mode 100644
index 0000000..d0f34f3
--- /dev/null
+++ b/Lib/bin/glog.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a831ce2d426a6b53456f828ae1de592a08f2d1590035ac3439960c1de6ec1630
+size 114176
diff --git a/Lib/bin/glogd.dll b/Lib/bin/glogd.dll
new file mode 100644
index 0000000..0bffabb
--- /dev/null
+++ b/Lib/bin/glogd.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:f7fa445f48425b05a5a1ce216ec9ff7d9fc83308abc95f92ebb5af4925b5970a
+size 326656
diff --git a/Lib/bin/libgcc_s_seh-1.dll b/Lib/bin/libgcc_s_seh-1.dll
new file mode 100644
index 0000000..cca9f87
--- /dev/null
+++ b/Lib/bin/libgcc_s_seh-1.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:621b30e0febd769e24b5b78c2ce77011595e8b9d7c2b4f05bfed75b2a1f53d7a
+size 82432
diff --git a/Lib/bin/libgfortran-3.dll b/Lib/bin/libgfortran-3.dll
new file mode 100644
index 0000000..d2c7a73
--- /dev/null
+++ b/Lib/bin/libgfortran-3.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b1abd767efd9f1bd3ab1a5d3bba3f9f332a051680c3a72cf45d475765e401a5b
+size 1279488
diff --git a/Lib/bin/libopenblas.dll b/Lib/bin/libopenblas.dll
new file mode 100644
index 0000000..439acad
--- /dev/null
+++ b/Lib/bin/libopenblas.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:7ce8bd02b8218a4156a09456607c4b2f9a1ac4318c65755f2e435e68d93e74b2
+size 38340126
diff --git a/Lib/bin/libquadmath-0.dll b/Lib/bin/libquadmath-0.dll
new file mode 100644
index 0000000..1f70afa
--- /dev/null
+++ b/Lib/bin/libquadmath-0.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:de6c30fcc5bc94120647ab0a382fd9dd8b2d1c031b1e629ddb8f54d36d575558
+size 331776
diff --git a/Lib/bin/opencv_videoio_ffmpeg420_64.dll b/Lib/bin/opencv_videoio_ffmpeg420_64.dll
new file mode 100644
index 0000000..7382aee
--- /dev/null
+++ b/Lib/bin/opencv_videoio_ffmpeg420_64.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bc6cca11924263d28c5716afba6208101574d190301ce9281af942c6d5c6b4dd
+size 22066688
diff --git a/Lib/bin/opencv_world420.dll b/Lib/bin/opencv_world420.dll
new file mode 100644
index 0000000..fa1ce67
--- /dev/null
+++ b/Lib/bin/opencv_world420.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ebf0e8976d76623addfd3f902ede9b9caf627b1f35018bc9a3002f2fe1c8e217
+size 59127808
diff --git a/Lib/bin/opencv_world420d.dll b/Lib/bin/opencv_world420d.dll
new file mode 100644
index 0000000..29290e7
--- /dev/null
+++ b/Lib/bin/opencv_world420d.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:76837bc159fa286f0f619165871ae9ebf8a397d036633763e6305b19004528c0
+size 111518208
diff --git a/Lib/cmake_install.cmake b/Lib/cmake_install.cmake
new file mode 100644
index 0000000..fb538df
--- /dev/null
+++ b/Lib/cmake_install.cmake
@@ -0,0 +1,53 @@
+# Install script for directory: D:/BJTU/Python/openpose-master
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("D:/BJTU/Python/openpose-master/build-2017/src/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/3rdparty/pybind11/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/python/cmake_install.cmake")
+
+endif()
+
+if(CMAKE_INSTALL_COMPONENT)
+ set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
+else()
+ set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
+endif()
+
+string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
+ "${CMAKE_INSTALL_MANIFEST_FILES}")
+file(WRITE "D:/BJTU/Python/openpose-master/build-2017/${CMAKE_INSTALL_MANIFEST}"
+ "${CMAKE_INSTALL_MANIFEST_CONTENT}")
diff --git a/Lib/examples/CMakeFiles/generate.stamp b/Lib/examples/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/CMakeFiles/generate.stamp.depend b/Lib/examples/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..cd509f1
--- /dev/null
+++ b/Lib/examples/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/examples/CMakeLists.txt
diff --git a/Lib/examples/INSTALL.vcxproj b/Lib/examples/INSTALL.vcxproj
new file mode 100644
index 0000000..f465880
--- /dev/null
+++ b/Lib/examples/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/INSTALL.vcxproj.filters b/Lib/examples/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..c059dbf
--- /dev/null
+++ b/Lib/examples/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/calibration/CMakeFiles/generate.stamp b/Lib/examples/calibration/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/calibration/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/calibration/CMakeFiles/generate.stamp.depend b/Lib/examples/calibration/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..93d385f
--- /dev/null
+++ b/Lib/examples/calibration/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/OpenPose.vcxproj.user
+D:/BJTU/Python/openpose-master/examples/calibration/CMakeLists.txt
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.log b/Lib/examples/calibration/Calibration.dir/Release/Calibration.log
new file mode 100644
index 0000000..a0aafbf
--- /dev/null
+++ b/Lib/examples/calibration/Calibration.dir/Release/Calibration.log
@@ -0,0 +1,3 @@
+ calibration.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/calibration/Release/Calibration.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/calibration/Release/Calibration.exp
+ Calibration.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\Calibration.exe
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.command.1.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..8e563b3
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.read.1.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..7aef170
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.write.1.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..078d0b8
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/Calibration.lastbuildstate b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/Calibration.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/Calibration.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/Calibration.write.1u.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/Calibration.write.1u.tlog
new file mode 100644
index 0000000..7339aff
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/Calibration.write.1u.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.command.1.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.command.1.tlog
new file mode 100644
index 0000000..77812a4
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.read.1.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.read.1.tlog
new file mode 100644
index 0000000..8e83b08
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.write.1.tlog b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.write.1.tlog
new file mode 100644
index 0000000..f9f1a1b
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/Calibration.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/calibration/Calibration.dir/Release/calibration.obj b/Lib/examples/calibration/Calibration.dir/Release/calibration.obj
new file mode 100644
index 0000000..d569bb3
Binary files /dev/null and b/Lib/examples/calibration/Calibration.dir/Release/calibration.obj differ
diff --git a/Lib/examples/calibration/Calibration.vcxproj b/Lib/examples/calibration/Calibration.vcxproj
new file mode 100644
index 0000000..2ae87bd
--- /dev/null
+++ b/Lib/examples/calibration/Calibration.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ Calibration
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ Calibration.dir\Release\
+ Calibration
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ Calibration.dir\Debug\
+ Calibration
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/calibration/Release/Calibration.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/Calibration.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/calibration/Debug/Calibration.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/Calibration.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/calibration/Calibration.vcxproj.filters b/Lib/examples/calibration/Calibration.vcxproj.filters
new file mode 100644
index 0000000..ead6842
--- /dev/null
+++ b/Lib/examples/calibration/Calibration.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/calibration/Calibration.vcxproj.user b/Lib/examples/calibration/Calibration.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/calibration/Calibration.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/calibration/INSTALL.vcxproj b/Lib/examples/calibration/INSTALL.vcxproj
new file mode 100644
index 0000000..a60d787
--- /dev/null
+++ b/Lib/examples/calibration/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\calibration\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\calibration\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/calibration/INSTALL.vcxproj.filters b/Lib/examples/calibration/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..8d3458a
--- /dev/null
+++ b/Lib/examples/calibration/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/calibration/Release/Calibration.exp b/Lib/examples/calibration/Release/Calibration.exp
new file mode 100644
index 0000000..4a07dba
Binary files /dev/null and b/Lib/examples/calibration/Release/Calibration.exp differ
diff --git a/Lib/examples/calibration/Release/Calibration.lib b/Lib/examples/calibration/Release/Calibration.lib
new file mode 100644
index 0000000..03bb081
Binary files /dev/null and b/Lib/examples/calibration/Release/Calibration.lib differ
diff --git a/Lib/examples/calibration/cmake_install.cmake b/Lib/examples/calibration/cmake_install.cmake
new file mode 100644
index 0000000..5c5aca3
--- /dev/null
+++ b/Lib/examples/calibration/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/calibration
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/examples/cmake_install.cmake b/Lib/examples/cmake_install.cmake
new file mode 100644
index 0000000..99f3fe5
--- /dev/null
+++ b/Lib/examples/cmake_install.cmake
@@ -0,0 +1,46 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/calibration/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/openpose/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_python/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/examples/user_code/cmake_install.cmake")
+
+endif()
+
diff --git a/Lib/examples/openpose/CMakeFiles/generate.stamp b/Lib/examples/openpose/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/openpose/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/openpose/CMakeFiles/generate.stamp.depend b/Lib/examples/openpose/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..c900018
--- /dev/null
+++ b/Lib/examples/openpose/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/OpenPose.vcxproj.user
+D:/BJTU/Python/openpose-master/examples/openpose/CMakeLists.txt
diff --git a/Lib/examples/openpose/INSTALL.vcxproj b/Lib/examples/openpose/INSTALL.vcxproj
new file mode 100644
index 0000000..8c96fef
--- /dev/null
+++ b/Lib/examples/openpose/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\openpose\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\openpose\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/openpose/INSTALL.vcxproj.filters b/Lib/examples/openpose/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..83c9285
--- /dev/null
+++ b/Lib/examples/openpose/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.log b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.log
new file mode 100644
index 0000000..918b472
--- /dev/null
+++ b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.log
@@ -0,0 +1,4 @@
+ openpose.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/openpose/Release/OpenPoseDemo.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/openpose/Release/OpenPoseDemo.exp
+ OpenPoseDemo.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\OpenPoseDemo.exe
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.command.1.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..f250b70
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.read.1.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..b4b66d4
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.write.1.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..67747d5
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/OpenPoseDemo.lastbuildstate b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/OpenPoseDemo.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/OpenPoseDemo.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/OpenPoseDemo.write.1u.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/OpenPoseDemo.write.1u.tlog
new file mode 100644
index 0000000..ccd3d05
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/OpenPoseDemo.write.1u.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.command.1.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.command.1.tlog
new file mode 100644
index 0000000..c13727e
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.read.1.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.read.1.tlog
new file mode 100644
index 0000000..31b6d13
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.write.1.tlog b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.write.1.tlog
new file mode 100644
index 0000000..93eadae
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/OpenPoseDemo.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.dir/Release/openpose.obj b/Lib/examples/openpose/OpenPoseDemo.dir/Release/openpose.obj
new file mode 100644
index 0000000..4af13d7
Binary files /dev/null and b/Lib/examples/openpose/OpenPoseDemo.dir/Release/openpose.obj differ
diff --git a/Lib/examples/openpose/OpenPoseDemo.vcxproj b/Lib/examples/openpose/OpenPoseDemo.vcxproj
new file mode 100644
index 0000000..d0b58ec
--- /dev/null
+++ b/Lib/examples/openpose/OpenPoseDemo.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ OpenPoseDemo
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ OpenPoseDemo.dir\Release\
+ OpenPoseDemo
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ OpenPoseDemo.dir\Debug\
+ OpenPoseDemo
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/openpose/Release/OpenPoseDemo.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/OpenPoseDemo.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/openpose/Debug/OpenPoseDemo.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/OpenPoseDemo.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/openpose/OpenPoseDemo.vcxproj.filters b/Lib/examples/openpose/OpenPoseDemo.vcxproj.filters
new file mode 100644
index 0000000..e7e0a8a
--- /dev/null
+++ b/Lib/examples/openpose/OpenPoseDemo.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/openpose/OpenPoseDemo.vcxproj.user b/Lib/examples/openpose/OpenPoseDemo.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/openpose/OpenPoseDemo.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/openpose/Release/OpenPoseDemo.exp b/Lib/examples/openpose/Release/OpenPoseDemo.exp
new file mode 100644
index 0000000..489ee8e
Binary files /dev/null and b/Lib/examples/openpose/Release/OpenPoseDemo.exp differ
diff --git a/Lib/examples/openpose/Release/OpenPoseDemo.lib b/Lib/examples/openpose/Release/OpenPoseDemo.lib
new file mode 100644
index 0000000..6bf1593
Binary files /dev/null and b/Lib/examples/openpose/Release/OpenPoseDemo.lib differ
diff --git a/Lib/examples/openpose/cmake_install.cmake b/Lib/examples/openpose/cmake_install.cmake
new file mode 100644
index 0000000..a02e729
--- /dev/null
+++ b/Lib/examples/openpose/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/openpose
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/1_custom_post_processing.lastbuildstate b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/1_custom_post_processing.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/1_custom_post_processing.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/1_custom_post_processing.write.1u.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/1_custom_post_processing.write.1u.tlog
new file mode 100644
index 0000000..c2bdd14
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/1_custom_post_processing.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.command.1.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..a7467e9
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.read.1.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..0482b9e
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.write.1.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..cabaefd
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.command.1.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.command.1.tlog
new file mode 100644
index 0000000..38db8b2
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.read.1.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.read.1.tlog
new file mode 100644
index 0000000..03e1745
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.write.1.tlog b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.write.1.tlog
new file mode 100644
index 0000000..bc6c6c3
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom.CFFE770E.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom_post_processing.log b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom_post_processing.log
new file mode 100644
index 0000000..41c15ce
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom_post_processing.log
@@ -0,0 +1,4 @@
+ 1_custom_post_processing.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/Release/1_custom_post_processing.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/Release/1_custom_post_processing.exp
+ 1_custom_post_processing.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\1_custom_post_processing.exe
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom_post_processing.obj b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom_post_processing.obj
new file mode 100644
index 0000000..cc752e6
Binary files /dev/null and b/Lib/examples/tutorial_add_module/1_custom_post_processing.dir/Release/1_custom_post_processing.obj differ
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj b/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj
new file mode 100644
index 0000000..21a0934
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {CFFE770E-D009-366A-B038-326CECEDF428}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 1_custom_post_processing
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 1_custom_post_processing.dir\Release\
+ 1_custom_post_processing
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 1_custom_post_processing.dir\Debug\
+ 1_custom_post_processing
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/Release/1_custom_post_processing.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/1_custom_post_processing.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_add_module/Debug/1_custom_post_processing.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/1_custom_post_processing.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj.filters b/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj.filters
new file mode 100644
index 0000000..537d603
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj.user b/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/1_custom_post_processing.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_add_module/CMakeFiles/generate.stamp b/Lib/examples/tutorial_add_module/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/tutorial_add_module/CMakeFiles/generate.stamp.depend b/Lib/examples/tutorial_add_module/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..f3dac10
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,4 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/OpenPose.vcxproj.user
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/examples/tutorial_add_module/CMakeLists.txt
diff --git a/Lib/examples/tutorial_add_module/INSTALL.vcxproj b/Lib/examples/tutorial_add_module/INSTALL.vcxproj
new file mode 100644
index 0000000..873afb7
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_add_module\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_add_module\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_add_module/INSTALL.vcxproj.filters b/Lib/examples/tutorial_add_module/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..c5fb596
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/tutorial_add_module/Release/1_custom_post_processing.exp b/Lib/examples/tutorial_add_module/Release/1_custom_post_processing.exp
new file mode 100644
index 0000000..fe29a1e
Binary files /dev/null and b/Lib/examples/tutorial_add_module/Release/1_custom_post_processing.exp differ
diff --git a/Lib/examples/tutorial_add_module/Release/1_custom_post_processing.lib b/Lib/examples/tutorial_add_module/Release/1_custom_post_processing.lib
new file mode 100644
index 0000000..f9e4cea
Binary files /dev/null and b/Lib/examples/tutorial_add_module/Release/1_custom_post_processing.lib differ
diff --git a/Lib/examples/tutorial_add_module/cmake_install.cmake b/Lib/examples/tutorial_add_module/cmake_install.cmake
new file mode 100644
index 0000000..ae141e5
--- /dev/null
+++ b/Lib/examples/tutorial_add_module/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/tutorial_add_module
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/01_body_from_image_default.lastbuildstate b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/01_body_from_image_default.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/01_body_from_image_default.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/01_body_from_image_default.write.1u.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/01_body_from_image_default.write.1u.tlog
new file mode 100644
index 0000000..6f9ba16
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/01_body_from_image_default.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..2674d33
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..2f7552b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..bc8f0b3
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.command.1.tlog
new file mode 100644
index 0000000..4dbb814
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.read.1.tlog
new file mode 100644
index 0000000..52ce4b5
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.write.1.tlog
new file mode 100644
index 0000000..70dd661
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_.5D8E9189.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_from_image_default.log b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_from_image_default.log
new file mode 100644
index 0000000..772b5c8
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_from_image_default.log
@@ -0,0 +1,3 @@
+ 01_body_from_image_default.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/01_body_from_image_default.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/01_body_from_image_default.exp
+ 01_body_from_image_default.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\01_body_from_image_default.exe
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_from_image_default.obj b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_from_image_default.obj
new file mode 100644
index 0000000..1826df3
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.dir/Release/01_body_from_image_default.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj
new file mode 100644
index 0000000..f4270e7
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {5D8E9189-05C6-34F3-A4E2-8713A3C8537E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 01_body_from_image_default
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 01_body_from_image_default.dir\Release\
+ 01_body_from_image_default
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 01_body_from_image_default.dir\Debug\
+ 01_body_from_image_default
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/01_body_from_image_default.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/01_body_from_image_default.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/01_body_from_image_default.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/01_body_from_image_default.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj.filters b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj.filters
new file mode 100644
index 0000000..d7f3067
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj.user b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/01_body_from_image_default.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/02_whole_body_from_image_default.lastbuildstate b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/02_whole_body_from_image_default.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/02_whole_body_from_image_default.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/02_whole_body_from_image_default.write.1u.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/02_whole_body_from_image_default.write.1u.tlog
new file mode 100644
index 0000000..e1862ca
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/02_whole_body_from_image_default.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..4bf2364
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..f23be28
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..b62e8c0
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.command.1.tlog
new file mode 100644
index 0000000..d88d4bc
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.read.1.tlog
new file mode 100644
index 0000000..31404fc
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.write.1.tlog
new file mode 100644
index 0000000..4dbea6c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole.D2A5968D.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole_body_from_image_default.log b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole_body_from_image_default.log
new file mode 100644
index 0000000..014270d
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole_body_from_image_default.log
@@ -0,0 +1,3 @@
+ 02_whole_body_from_image_default.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.exp
+ 02_whole_body_from_image_default.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\02_whole_body_from_image_default.exe
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole_body_from_image_default.obj b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole_body_from_image_default.obj
new file mode 100644
index 0000000..48d5cc9
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.dir/Release/02_whole_body_from_image_default.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj
new file mode 100644
index 0000000..40ebb05
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 02_whole_body_from_image_default
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 02_whole_body_from_image_default.dir\Release\
+ 02_whole_body_from_image_default
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 02_whole_body_from_image_default.dir\Debug\
+ 02_whole_body_from_image_default
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/02_whole_body_from_image_default.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/02_whole_body_from_image_default.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/02_whole_body_from_image_default.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj.filters b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj.filters
new file mode 100644
index 0000000..92d927f
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj.user b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/02_whole_body_from_image_default.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/03_keypoints_from_image.lastbuildstate b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/03_keypoints_from_image.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/03_keypoints_from_image.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/03_keypoints_from_image.write.1u.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/03_keypoints_from_image.write.1u.tlog
new file mode 100644
index 0000000..810333c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/03_keypoints_from_image.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..dc99616
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..a44efc1
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..4baff1b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.command.1.tlog
new file mode 100644
index 0000000..35f3b1f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.read.1.tlog
new file mode 100644
index 0000000..000de78
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.write.1.tlog
new file mode 100644
index 0000000..dffccec
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypo.75584824.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypoints_from_image.log b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypoints_from_image.log
new file mode 100644
index 0000000..3719cd5
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypoints_from_image.log
@@ -0,0 +1,3 @@
+ 03_keypoints_from_image.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/03_keypoints_from_image.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/03_keypoints_from_image.exp
+ 03_keypoints_from_image.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\03_keypoints_from_image.exe
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypoints_from_image.obj b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypoints_from_image.obj
new file mode 100644
index 0000000..429777a
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.dir/Release/03_keypoints_from_image.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj
new file mode 100644
index 0000000..8be07da
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {75584824-2A5F-3172-AD57-F19C98E43ACA}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 03_keypoints_from_image
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 03_keypoints_from_image.dir\Release\
+ 03_keypoints_from_image
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 03_keypoints_from_image.dir\Debug\
+ 03_keypoints_from_image
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/03_keypoints_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/03_keypoints_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/03_keypoints_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/03_keypoints_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj.filters b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj.filters
new file mode 100644
index 0000000..306c139
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj.user b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/03_keypoints_from_image.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/04_keypoints_from_images.lastbuildstate b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/04_keypoints_from_images.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/04_keypoints_from_images.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/04_keypoints_from_images.write.1u.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/04_keypoints_from_images.write.1u.tlog
new file mode 100644
index 0000000..80d4f16
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/04_keypoints_from_images.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..0a4e88b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..80dd6b5
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..68672ac
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.command.1.tlog
new file mode 100644
index 0000000..10243a4
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.read.1.tlog
new file mode 100644
index 0000000..22b7c5c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.write.1.tlog
new file mode 100644
index 0000000..3dd94a2
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypo.271951E6.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypoints_from_images.log b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypoints_from_images.log
new file mode 100644
index 0000000..b7d6c2f
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypoints_from_images.log
@@ -0,0 +1,3 @@
+ 04_keypoints_from_images.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/04_keypoints_from_images.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/04_keypoints_from_images.exp
+ 04_keypoints_from_images.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\04_keypoints_from_images.exe
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypoints_from_images.obj b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypoints_from_images.obj
new file mode 100644
index 0000000..d63538a
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.dir/Release/04_keypoints_from_images.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj
new file mode 100644
index 0000000..e7c727f
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {271951E6-1C8C-33C1-981D-783A3B02BA07}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 04_keypoints_from_images
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 04_keypoints_from_images.dir\Release\
+ 04_keypoints_from_images
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 04_keypoints_from_images.dir\Debug\
+ 04_keypoints_from_images
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/04_keypoints_from_images.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/04_keypoints_from_images.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/04_keypoints_from_images.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/04_keypoints_from_images.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj.filters b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj.filters
new file mode 100644
index 0000000..4278194
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj.user b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/04_keypoints_from_images.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/05_keypoints_from_images_multi_gpu.lastbuildstate b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/05_keypoints_from_images_multi_gpu.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/05_keypoints_from_images_multi_gpu.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/05_keypoints_from_images_multi_gpu.write.1u.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/05_keypoints_from_images_multi_gpu.write.1u.tlog
new file mode 100644
index 0000000..1f0498f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/05_keypoints_from_images_multi_gpu.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..50c57a1
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..542cb5f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..9e9dfd9
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.command.1.tlog
new file mode 100644
index 0000000..a44d2ab
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.read.1.tlog
new file mode 100644
index 0000000..eeb64ee
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.write.1.tlog
new file mode 100644
index 0000000..8232226
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypo.EEC9366B.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypoints_from_images_multi_gpu.log b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypoints_from_images_multi_gpu.log
new file mode 100644
index 0000000..4ba1d10
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypoints_from_images_multi_gpu.log
@@ -0,0 +1,3 @@
+ 05_keypoints_from_images_multi_gpu.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.exp
+ 05_keypoints_from_images_multi_gpu.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\05_keypoints_from_images_multi_gpu.exe
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypoints_from_images_multi_gpu.obj b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypoints_from_images_multi_gpu.obj
new file mode 100644
index 0000000..fa48934
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.dir/Release/05_keypoints_from_images_multi_gpu.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj
new file mode 100644
index 0000000..cae1e7a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {EEC9366B-9078-3EEA-905D-9E1019445962}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 05_keypoints_from_images_multi_gpu
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 05_keypoints_from_images_multi_gpu.dir\Release\
+ 05_keypoints_from_images_multi_gpu
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 05_keypoints_from_images_multi_gpu.dir\Debug\
+ 05_keypoints_from_images_multi_gpu
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/05_keypoints_from_images_multi_gpu.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/05_keypoints_from_images_multi_gpu.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/05_keypoints_from_images_multi_gpu.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj.filters b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj.filters
new file mode 100644
index 0000000..d925a1c
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj.user b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/05_keypoints_from_images_multi_gpu.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/06_face_from_image.lastbuildstate b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/06_face_from_image.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/06_face_from_image.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/06_face_from_image.write.1u.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/06_face_from_image.write.1u.tlog
new file mode 100644
index 0000000..6e5f1ad
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/06_face_from_image.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..e8390b5
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..c772206
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..4813a6e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.command.1.tlog
new file mode 100644
index 0000000..26f9864
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.read.1.tlog
new file mode 100644
index 0000000..a33ed94
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.write.1.tlog
new file mode 100644
index 0000000..0c0a5d8
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_.9AF1546D.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_from_image.log b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_from_image.log
new file mode 100644
index 0000000..5035e58
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_from_image.log
@@ -0,0 +1,3 @@
+ 06_face_from_image.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/06_face_from_image.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/06_face_from_image.exp
+ 06_face_from_image.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\06_face_from_image.exe
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_from_image.obj b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_from_image.obj
new file mode 100644
index 0000000..25d86f9
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/06_face_from_image.dir/Release/06_face_from_image.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj b/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj
new file mode 100644
index 0000000..54d2cae
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {9AF1546D-FB88-3A08-A407-45A482BE8EAB}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 06_face_from_image
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 06_face_from_image.dir\Release\
+ 06_face_from_image
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 06_face_from_image.dir\Debug\
+ 06_face_from_image
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/06_face_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/06_face_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/06_face_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/06_face_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj.filters b/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj.filters
new file mode 100644
index 0000000..43cdd3f
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj.user b/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/06_face_from_image.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/07_hand_from_image.lastbuildstate b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/07_hand_from_image.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/07_hand_from_image.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/07_hand_from_image.write.1u.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/07_hand_from_image.write.1u.tlog
new file mode 100644
index 0000000..87e987f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/07_hand_from_image.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..69e230d
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..179d0f4
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..702e8e4
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.command.1.tlog
new file mode 100644
index 0000000..6db79c4
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.read.1.tlog
new file mode 100644
index 0000000..6229445
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.write.1.tlog
new file mode 100644
index 0000000..c492337
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_.28B7E283.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_from_image.log b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_from_image.log
new file mode 100644
index 0000000..1322db1
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_from_image.log
@@ -0,0 +1,3 @@
+ 07_hand_from_image.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/07_hand_from_image.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/07_hand_from_image.exp
+ 07_hand_from_image.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\07_hand_from_image.exe
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_from_image.obj b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_from_image.obj
new file mode 100644
index 0000000..5cbda98
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/07_hand_from_image.dir/Release/07_hand_from_image.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj b/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj
new file mode 100644
index 0000000..a5a132c
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 07_hand_from_image
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 07_hand_from_image.dir\Release\
+ 07_hand_from_image
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 07_hand_from_image.dir\Debug\
+ 07_hand_from_image
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/07_hand_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/07_hand_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/07_hand_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/07_hand_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj.filters b/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj.filters
new file mode 100644
index 0000000..df1eba1
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj.user b/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/07_hand_from_image.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/08_heatmaps_from_image.lastbuildstate b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/08_heatmaps_from_image.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/08_heatmaps_from_image.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/08_heatmaps_from_image.write.1u.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/08_heatmaps_from_image.write.1u.tlog
new file mode 100644
index 0000000..9daf903
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/08_heatmaps_from_image.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..54b0652
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..56f2d5e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..581241b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.command.1.tlog
new file mode 100644
index 0000000..155440e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.read.1.tlog
new file mode 100644
index 0000000..ad5cad8
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.write.1.tlog
new file mode 100644
index 0000000..b582f4f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatm.55E3E58F.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatmaps_from_image.log b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatmaps_from_image.log
new file mode 100644
index 0000000..65f17de
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatmaps_from_image.log
@@ -0,0 +1,3 @@
+ 08_heatmaps_from_image.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.exp
+ 08_heatmaps_from_image.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\08_heatmaps_from_image.exe
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatmaps_from_image.obj b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatmaps_from_image.obj
new file mode 100644
index 0000000..ae17097
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.dir/Release/08_heatmaps_from_image.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj
new file mode 100644
index 0000000..6b62a97
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {55E3E58F-DC57-3F14-A3D1-C04D57B6A289}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 08_heatmaps_from_image
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 08_heatmaps_from_image.dir\Release\
+ 08_heatmaps_from_image
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 08_heatmaps_from_image.dir\Debug\
+ 08_heatmaps_from_image
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/08_heatmaps_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/08_heatmaps_from_image.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/08_heatmaps_from_image.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj.filters b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj.filters
new file mode 100644
index 0000000..fa47b9e
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj.user b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/08_heatmaps_from_image.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/09_keypoints_from_heatmaps.lastbuildstate b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/09_keypoints_from_heatmaps.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/09_keypoints_from_heatmaps.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/09_keypoints_from_heatmaps.write.1u.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/09_keypoints_from_heatmaps.write.1u.tlog
new file mode 100644
index 0000000..30c1a6a
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/09_keypoints_from_heatmaps.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..2fe0f4c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..6f9a981
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..08cbc2c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.command.1.tlog
new file mode 100644
index 0000000..fc873c6
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.read.1.tlog
new file mode 100644
index 0000000..d8858fc
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.write.1.tlog
new file mode 100644
index 0000000..a41789f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypo.5509C517.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypoints_from_heatmaps.log b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypoints_from_heatmaps.log
new file mode 100644
index 0000000..d056bcd
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypoints_from_heatmaps.log
@@ -0,0 +1,3 @@
+ 09_keypoints_from_heatmaps.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.exp
+ 09_keypoints_from_heatmaps.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\09_keypoints_from_heatmaps.exe
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypoints_from_heatmaps.obj b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypoints_from_heatmaps.obj
new file mode 100644
index 0000000..278c1f2
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.dir/Release/09_keypoints_from_heatmaps.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj
new file mode 100644
index 0000000..b7df6ab
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {5509C517-EB61-3755-89BD-6684706E6832}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 09_keypoints_from_heatmaps
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 09_keypoints_from_heatmaps.dir\Release\
+ 09_keypoints_from_heatmaps
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 09_keypoints_from_heatmaps.dir\Debug\
+ 09_keypoints_from_heatmaps
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/09_keypoints_from_heatmaps.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/09_keypoints_from_heatmaps.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/09_keypoints_from_heatmaps.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj.filters b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj.filters
new file mode 100644
index 0000000..76a1e6c
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj.user b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/09_keypoints_from_heatmaps.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/10_asynchronous_custom_input.lastbuildstate b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/10_asynchronous_custom_input.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/10_asynchronous_custom_input.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/10_asynchronous_custom_input.write.1u.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/10_asynchronous_custom_input.write.1u.tlog
new file mode 100644
index 0000000..ac4208d
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/10_asynchronous_custom_input.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..c91433d
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..a72babc
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..731973c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.command.1.tlog
new file mode 100644
index 0000000..745ff0c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.read.1.tlog
new file mode 100644
index 0000000..e471268
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.write.1.tlog
new file mode 100644
index 0000000..230e4f1
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_async.4EF89EB0.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_asynchronous_custom_input.log b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_asynchronous_custom_input.log
new file mode 100644
index 0000000..5116018
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_asynchronous_custom_input.log
@@ -0,0 +1,3 @@
+ 10_asynchronous_custom_input.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.exp
+ 10_asynchronous_custom_input.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\10_asynchronous_custom_input.exe
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_asynchronous_custom_input.obj b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_asynchronous_custom_input.obj
new file mode 100644
index 0000000..6b2c1fb
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.dir/Release/10_asynchronous_custom_input.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj
new file mode 100644
index 0000000..a2dbf6e
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 10_asynchronous_custom_input
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 10_asynchronous_custom_input.dir\Release\
+ 10_asynchronous_custom_input
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 10_asynchronous_custom_input.dir\Debug\
+ 10_asynchronous_custom_input
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/10_asynchronous_custom_input.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/10_asynchronous_custom_input.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/10_asynchronous_custom_input.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj.filters b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj.filters
new file mode 100644
index 0000000..2074ef9
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj.user b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/10_asynchronous_custom_input.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/11_asynchronous_custom_input_multi_camera.lastbuildstate b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/11_asynchronous_custom_input_multi_camera.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/11_asynchronous_custom_input_multi_camera.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/11_asynchronous_custom_input_multi_camera.write.1u.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/11_asynchronous_custom_input_multi_camera.write.1u.tlog
new file mode 100644
index 0000000..7f4b247
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/11_asynchronous_custom_input_multi_camera.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..236b4b6
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..dcc6f20
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..5f89ee4
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.command.1.tlog
new file mode 100644
index 0000000..89b8c27
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.read.1.tlog
new file mode 100644
index 0000000..f51f804
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.write.1.tlog
new file mode 100644
index 0000000..9d941ce
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_async.D4E53486.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_asynchronous_custom_input_multi_camera.log b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_asynchronous_custom_input_multi_camera.log
new file mode 100644
index 0000000..5043643
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_asynchronous_custom_input_multi_camera.log
@@ -0,0 +1,3 @@
+ 11_asynchronous_custom_input_multi_camera.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.exp
+ 11_asynchronous_custom_input_multi_camera.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\11_asynchronous_custom_input_multi_camera.exe
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_asynchronous_custom_input_multi_camera.obj b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_asynchronous_custom_input_multi_camera.obj
new file mode 100644
index 0000000..9ff86b6
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.dir/Release/11_asynchronous_custom_input_multi_camera.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj
new file mode 100644
index 0000000..b9cdc9d
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {D4E53486-C21F-323C-9980-92CA1222E699}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 11_asynchronous_custom_input_multi_camera
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 11_asynchronous_custom_input_multi_camera.dir\Release\
+ 11_asynchronous_custom_input_multi_camera
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 11_asynchronous_custom_input_multi_camera.dir\Debug\
+ 11_asynchronous_custom_input_multi_camera
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/11_asynchronous_custom_input_multi_camera.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/11_asynchronous_custom_input_multi_camera.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/11_asynchronous_custom_input_multi_camera.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj.filters b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj.filters
new file mode 100644
index 0000000..7ab7eaf
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj.user b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/11_asynchronous_custom_input_multi_camera.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/12_asynchronous_custom_output.lastbuildstate b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/12_asynchronous_custom_output.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/12_asynchronous_custom_output.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/12_asynchronous_custom_output.write.1u.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/12_asynchronous_custom_output.write.1u.tlog
new file mode 100644
index 0000000..e5ada09
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/12_asynchronous_custom_output.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..b104889
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..a0e8fa2
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..5298a9f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.command.1.tlog
new file mode 100644
index 0000000..130ae0b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.read.1.tlog
new file mode 100644
index 0000000..2feeed1
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.write.1.tlog
new file mode 100644
index 0000000..18249a1
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_async.287F3580.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_asynchronous_custom_output.log b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_asynchronous_custom_output.log
new file mode 100644
index 0000000..f96e658
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_asynchronous_custom_output.log
@@ -0,0 +1,4 @@
+ 12_asynchronous_custom_output.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.exp
+ 12_asynchronous_custom_output.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\12_asynchronous_custom_output.exe
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_asynchronous_custom_output.obj b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_asynchronous_custom_output.obj
new file mode 100644
index 0000000..9a9d320
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.dir/Release/12_asynchronous_custom_output.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj
new file mode 100644
index 0000000..974decd
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {287F3580-8C0A-3432-918D-ADB876C6170C}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 12_asynchronous_custom_output
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 12_asynchronous_custom_output.dir\Release\
+ 12_asynchronous_custom_output
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 12_asynchronous_custom_output.dir\Debug\
+ 12_asynchronous_custom_output
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/12_asynchronous_custom_output.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/12_asynchronous_custom_output.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/12_asynchronous_custom_output.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj.filters b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj.filters
new file mode 100644
index 0000000..ef606cf
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj.user b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/12_asynchronous_custom_output.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/13_asynchronous_custom_input_output_and_datum.lastbuildstate b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/13_asynchronous_custom_input_output_and_datum.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/13_asynchronous_custom_input_output_and_datum.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/13_asynchronous_custom_input_output_and_datum.write.1u.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/13_asynchronous_custom_input_output_and_datum.write.1u.tlog
new file mode 100644
index 0000000..b4b93ba
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/13_asynchronous_custom_input_output_and_datum.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..a04d523
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..c2e3f69
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..6ca34ab
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.command.1.tlog
new file mode 100644
index 0000000..0928e85
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.read.1.tlog
new file mode 100644
index 0000000..0cb6758
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.write.1.tlog
new file mode 100644
index 0000000..96ef728
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_async.DEAAFF83.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_asynchronous_custom_input_output_and_datum.log b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_asynchronous_custom_input_output_and_datum.log
new file mode 100644
index 0000000..27f5201
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_asynchronous_custom_input_output_and_datum.log
@@ -0,0 +1,3 @@
+ 13_asynchronous_custom_input_output_and_datum.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.exp
+ 13_asynchronous_custom_input_output_and_datum.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\13_asynchronous_custom_input_output_and_datum.exe
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_asynchronous_custom_input_output_and_datum.obj b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_asynchronous_custom_input_output_and_datum.obj
new file mode 100644
index 0000000..cb6338f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.dir/Release/13_asynchronous_custom_input_output_and_datum.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj
new file mode 100644
index 0000000..81102c6
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {DEAAFF83-74BD-3F98-8755-2D79948C0D9A}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 13_asynchronous_custom_input_output_and_datum
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 13_asynchronous_custom_input_output_and_datum.dir\Release\
+ 13_asynchronous_custom_input_output_and_datum
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 13_asynchronous_custom_input_output_and_datum.dir\Debug\
+ 13_asynchronous_custom_input_output_and_datum
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/13_asynchronous_custom_input_output_and_datum.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/13_asynchronous_custom_input_output_and_datum.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/13_asynchronous_custom_input_output_and_datum.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj.filters b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj.filters
new file mode 100644
index 0000000..f3e569a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj.user b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/13_asynchronous_custom_input_output_and_datum.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/14_synchronous_custom_input.lastbuildstate b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/14_synchronous_custom_input.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/14_synchronous_custom_input.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/14_synchronous_custom_input.write.1u.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/14_synchronous_custom_input.write.1u.tlog
new file mode 100644
index 0000000..7a82ea7
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/14_synchronous_custom_input.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..767c7f3
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..05b4e1c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..b579bbf
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.command.1.tlog
new file mode 100644
index 0000000..09f32f7
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.read.1.tlog
new file mode 100644
index 0000000..9704b3b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.write.1.tlog
new file mode 100644
index 0000000..39cc69b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synch.D0D9F45D.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synchronous_custom_input.log b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synchronous_custom_input.log
new file mode 100644
index 0000000..dddd909
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synchronous_custom_input.log
@@ -0,0 +1,3 @@
+ 14_synchronous_custom_input.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.exp
+ 14_synchronous_custom_input.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\14_synchronous_custom_input.exe
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synchronous_custom_input.obj b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synchronous_custom_input.obj
new file mode 100644
index 0000000..466a141
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.dir/Release/14_synchronous_custom_input.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj
new file mode 100644
index 0000000..fc63ec8
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 14_synchronous_custom_input
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 14_synchronous_custom_input.dir\Release\
+ 14_synchronous_custom_input
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 14_synchronous_custom_input.dir\Debug\
+ 14_synchronous_custom_input
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/14_synchronous_custom_input.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/14_synchronous_custom_input.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/14_synchronous_custom_input.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj.filters b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj.filters
new file mode 100644
index 0000000..56ee427
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj.user b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/14_synchronous_custom_input.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/15_synchronous_custom_preprocessing.lastbuildstate b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/15_synchronous_custom_preprocessing.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/15_synchronous_custom_preprocessing.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/15_synchronous_custom_preprocessing.write.1u.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/15_synchronous_custom_preprocessing.write.1u.tlog
new file mode 100644
index 0000000..d1b41c7
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/15_synchronous_custom_preprocessing.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..c92f425
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..a565e7e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..3b89eeb
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.command.1.tlog
new file mode 100644
index 0000000..ae5dd7e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.read.1.tlog
new file mode 100644
index 0000000..dd97bb6
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.write.1.tlog
new file mode 100644
index 0000000..2cdeb02
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synch.F20445FF.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synchronous_custom_preprocessing.log b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synchronous_custom_preprocessing.log
new file mode 100644
index 0000000..0fb1683
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synchronous_custom_preprocessing.log
@@ -0,0 +1,4 @@
+ 15_synchronous_custom_preprocessing.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.exp
+ 15_synchronous_custom_preprocessing.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\15_synchronous_custom_preprocessing.exe
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synchronous_custom_preprocessing.obj b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synchronous_custom_preprocessing.obj
new file mode 100644
index 0000000..b1f0647
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.dir/Release/15_synchronous_custom_preprocessing.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj
new file mode 100644
index 0000000..e7cf897
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {F20445FF-B3B9-3A04-8E64-7092DC57175C}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 15_synchronous_custom_preprocessing
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 15_synchronous_custom_preprocessing.dir\Release\
+ 15_synchronous_custom_preprocessing
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 15_synchronous_custom_preprocessing.dir\Debug\
+ 15_synchronous_custom_preprocessing
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/15_synchronous_custom_preprocessing.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/15_synchronous_custom_preprocessing.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/15_synchronous_custom_preprocessing.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj.filters b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj.filters
new file mode 100644
index 0000000..f6b8bc2
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj.user b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/15_synchronous_custom_preprocessing.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/16_synchronous_custom_postprocessing.lastbuildstate b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/16_synchronous_custom_postprocessing.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/16_synchronous_custom_postprocessing.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/16_synchronous_custom_postprocessing.write.1u.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/16_synchronous_custom_postprocessing.write.1u.tlog
new file mode 100644
index 0000000..14cbf45
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/16_synchronous_custom_postprocessing.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..3009f69
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..b5b68f3
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..3a8bf02
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.command.1.tlog
new file mode 100644
index 0000000..aee890e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.read.1.tlog
new file mode 100644
index 0000000..55dd148
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.write.1.tlog
new file mode 100644
index 0000000..3573dfa
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synch.53982123.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synchronous_custom_postprocessing.log b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synchronous_custom_postprocessing.log
new file mode 100644
index 0000000..6568c23
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synchronous_custom_postprocessing.log
@@ -0,0 +1,4 @@
+ 16_synchronous_custom_postprocessing.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.exp
+ 16_synchronous_custom_postprocessing.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\16_synchronous_custom_postprocessing.exe
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synchronous_custom_postprocessing.obj b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synchronous_custom_postprocessing.obj
new file mode 100644
index 0000000..3ad0be3
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.dir/Release/16_synchronous_custom_postprocessing.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj
new file mode 100644
index 0000000..a088ef8
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {53982123-D444-3CB9-BF2F-A99748470C69}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 16_synchronous_custom_postprocessing
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 16_synchronous_custom_postprocessing.dir\Release\
+ 16_synchronous_custom_postprocessing
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 16_synchronous_custom_postprocessing.dir\Debug\
+ 16_synchronous_custom_postprocessing
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/16_synchronous_custom_postprocessing.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/16_synchronous_custom_postprocessing.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/16_synchronous_custom_postprocessing.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj.filters b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj.filters
new file mode 100644
index 0000000..8df214d
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj.user b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/16_synchronous_custom_postprocessing.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/17_synchronous_custom_output.lastbuildstate b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/17_synchronous_custom_output.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/17_synchronous_custom_output.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/17_synchronous_custom_output.write.1u.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/17_synchronous_custom_output.write.1u.tlog
new file mode 100644
index 0000000..36a5f9f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/17_synchronous_custom_output.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..04bd01b
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..5eee74f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..329a70c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.command.1.tlog
new file mode 100644
index 0000000..e39fe51
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.read.1.tlog
new file mode 100644
index 0000000..99e65a2
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.write.1.tlog
new file mode 100644
index 0000000..84b52d7
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synch.AD608E28.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synchronous_custom_output.log b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synchronous_custom_output.log
new file mode 100644
index 0000000..5f28270
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synchronous_custom_output.log
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synchronous_custom_output.obj b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synchronous_custom_output.obj
new file mode 100644
index 0000000..83d26ff
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.dir/Release/17_synchronous_custom_output.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj
new file mode 100644
index 0000000..be39996
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {AD608E28-4AD5-36A5-B5E6-DF4269F667B5}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 17_synchronous_custom_output
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 17_synchronous_custom_output.dir\Release\
+ 17_synchronous_custom_output
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 17_synchronous_custom_output.dir\Debug\
+ 17_synchronous_custom_output
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/17_synchronous_custom_output.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/17_synchronous_custom_output.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/17_synchronous_custom_output.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj.filters b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj.filters
new file mode 100644
index 0000000..4b14cd4
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj.user b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/17_synchronous_custom_output.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/18_synchronous_custom_all_and_datum.lastbuildstate b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/18_synchronous_custom_all_and_datum.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/18_synchronous_custom_all_and_datum.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/18_synchronous_custom_all_and_datum.write.1u.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/18_synchronous_custom_all_and_datum.write.1u.tlog
new file mode 100644
index 0000000..d504551
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/18_synchronous_custom_all_and_datum.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..d96c56e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..69b822c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..cb5db40
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.command.1.tlog
new file mode 100644
index 0000000..19f8bb9
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.read.1.tlog
new file mode 100644
index 0000000..6051f45
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.write.1.tlog
new file mode 100644
index 0000000..d023f76
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synch.4085AC6D.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synchronous_custom_all_and_datum.log b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synchronous_custom_all_and_datum.log
new file mode 100644
index 0000000..23e2d0b
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synchronous_custom_all_and_datum.log
@@ -0,0 +1,3 @@
+ 18_synchronous_custom_all_and_datum.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.exp
+ 18_synchronous_custom_all_and_datum.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\18_synchronous_custom_all_and_datum.exe
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synchronous_custom_all_and_datum.obj b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synchronous_custom_all_and_datum.obj
new file mode 100644
index 0000000..56ad587
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.dir/Release/18_synchronous_custom_all_and_datum.obj differ
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj
new file mode 100644
index 0000000..0cd775d
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {4085AC6D-929C-3517-AF9F-A3CCDB89F06E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 18_synchronous_custom_all_and_datum
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 18_synchronous_custom_all_and_datum.dir\Release\
+ 18_synchronous_custom_all_and_datum
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 18_synchronous_custom_all_and_datum.dir\Debug\
+ 18_synchronous_custom_all_and_datum
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/18_synchronous_custom_all_and_datum.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_cpp/Debug/18_synchronous_custom_all_and_datum.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/18_synchronous_custom_all_and_datum.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj.filters b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj.filters
new file mode 100644
index 0000000..71a51ce
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj.user b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/18_synchronous_custom_all_and_datum.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/CMakeFiles/generate.stamp b/Lib/examples/tutorial_api_cpp/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/tutorial_api_cpp/CMakeFiles/generate.stamp.depend b/Lib/examples/tutorial_api_cpp/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..f45084e
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,4 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/OpenPose.vcxproj.user
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/examples/tutorial_api_cpp/CMakeLists.txt
diff --git a/Lib/examples/tutorial_api_cpp/INSTALL.vcxproj b/Lib/examples/tutorial_api_cpp/INSTALL.vcxproj
new file mode 100644
index 0000000..835e808
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_cpp/INSTALL.vcxproj.filters b/Lib/examples/tutorial_api_cpp/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..b37aab2
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/tutorial_api_cpp/Release/01_body_from_image_default.exp b/Lib/examples/tutorial_api_cpp/Release/01_body_from_image_default.exp
new file mode 100644
index 0000000..b006906
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/01_body_from_image_default.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/01_body_from_image_default.lib b/Lib/examples/tutorial_api_cpp/Release/01_body_from_image_default.lib
new file mode 100644
index 0000000..464789c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/01_body_from_image_default.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.exp b/Lib/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.exp
new file mode 100644
index 0000000..075e311
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.lib b/Lib/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.lib
new file mode 100644
index 0000000..eb3fa25
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/02_whole_body_from_image_default.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/03_keypoints_from_image.exp b/Lib/examples/tutorial_api_cpp/Release/03_keypoints_from_image.exp
new file mode 100644
index 0000000..e0b613a
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/03_keypoints_from_image.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/03_keypoints_from_image.lib b/Lib/examples/tutorial_api_cpp/Release/03_keypoints_from_image.lib
new file mode 100644
index 0000000..4036c91
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/03_keypoints_from_image.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/04_keypoints_from_images.exp b/Lib/examples/tutorial_api_cpp/Release/04_keypoints_from_images.exp
new file mode 100644
index 0000000..f7562a8
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/04_keypoints_from_images.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/04_keypoints_from_images.lib b/Lib/examples/tutorial_api_cpp/Release/04_keypoints_from_images.lib
new file mode 100644
index 0000000..b9c7dde
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/04_keypoints_from_images.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.exp b/Lib/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.exp
new file mode 100644
index 0000000..7235700
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.lib b/Lib/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.lib
new file mode 100644
index 0000000..864af58
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/05_keypoints_from_images_multi_gpu.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/06_face_from_image.exp b/Lib/examples/tutorial_api_cpp/Release/06_face_from_image.exp
new file mode 100644
index 0000000..babf8f4
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/06_face_from_image.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/06_face_from_image.lib b/Lib/examples/tutorial_api_cpp/Release/06_face_from_image.lib
new file mode 100644
index 0000000..6b89d48
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/06_face_from_image.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/07_hand_from_image.exp b/Lib/examples/tutorial_api_cpp/Release/07_hand_from_image.exp
new file mode 100644
index 0000000..45a517c
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/07_hand_from_image.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/07_hand_from_image.lib b/Lib/examples/tutorial_api_cpp/Release/07_hand_from_image.lib
new file mode 100644
index 0000000..343762d
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/07_hand_from_image.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.exp b/Lib/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.exp
new file mode 100644
index 0000000..5634627
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.lib b/Lib/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.lib
new file mode 100644
index 0000000..0ae45f8
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/08_heatmaps_from_image.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.exp b/Lib/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.exp
new file mode 100644
index 0000000..b182782
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.lib b/Lib/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.lib
new file mode 100644
index 0000000..9ef88c3
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/09_keypoints_from_heatmaps.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.exp b/Lib/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.exp
new file mode 100644
index 0000000..061a767
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.lib b/Lib/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.lib
new file mode 100644
index 0000000..76b6833
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/10_asynchronous_custom_input.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.exp b/Lib/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.exp
new file mode 100644
index 0000000..0217b6f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.lib b/Lib/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.lib
new file mode 100644
index 0000000..18673dd
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/11_asynchronous_custom_input_multi_camera.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.exp b/Lib/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.exp
new file mode 100644
index 0000000..60c9ff0
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.lib b/Lib/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.lib
new file mode 100644
index 0000000..916e269
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/12_asynchronous_custom_output.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.exp b/Lib/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.exp
new file mode 100644
index 0000000..6505d9d
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.lib b/Lib/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.lib
new file mode 100644
index 0000000..8e27d65
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/13_asynchronous_custom_input_output_and_datum.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.exp b/Lib/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.exp
new file mode 100644
index 0000000..71d8cd5
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.lib b/Lib/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.lib
new file mode 100644
index 0000000..f3fdc16
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/14_synchronous_custom_input.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.exp b/Lib/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.exp
new file mode 100644
index 0000000..8e4f883
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.lib b/Lib/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.lib
new file mode 100644
index 0000000..2ec881f
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/15_synchronous_custom_preprocessing.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.exp b/Lib/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.exp
new file mode 100644
index 0000000..e86d38e
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.lib b/Lib/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.lib
new file mode 100644
index 0000000..68739a0
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/16_synchronous_custom_postprocessing.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.exp b/Lib/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.exp
new file mode 100644
index 0000000..a59fef5
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.lib b/Lib/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.lib
new file mode 100644
index 0000000..ad35f41
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/17_synchronous_custom_output.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.exp b/Lib/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.exp
new file mode 100644
index 0000000..01482f7
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.exp differ
diff --git a/Lib/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.lib b/Lib/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.lib
new file mode 100644
index 0000000..efc95f8
Binary files /dev/null and b/Lib/examples/tutorial_api_cpp/Release/18_synchronous_custom_all_and_datum.lib differ
diff --git a/Lib/examples/tutorial_api_cpp/cmake_install.cmake b/Lib/examples/tutorial_api_cpp/cmake_install.cmake
new file mode 100644
index 0000000..80b8f0a
--- /dev/null
+++ b/Lib/examples/tutorial_api_cpp/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/tutorial_api_cpp
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/examples/tutorial_api_python/01_body_from_image.py b/Lib/examples/tutorial_api_python/01_body_from_image.py
new file mode 100644
index 0000000..b7a3206
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/01_body_from_image.py
@@ -0,0 +1,71 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000192.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Process Image
+ datum = op.Datum()
+ imageToProcess = cv2.imread(args[0].image_path)
+ datum.cvInputData = imageToProcess
+ opWrapper.emplaceAndPop([datum])
+
+ # Display Image
+ print("Body keypoints: \n" + str(datum.poseKeypoints))
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ cv2.waitKey(0)
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/02_whole_body_from_image.py b/Lib/examples/tutorial_api_python/02_whole_body_from_image.py
new file mode 100644
index 0000000..7776671
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/02_whole_body_from_image.py
@@ -0,0 +1,76 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000241.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["face"] = True
+ params["hand"] = True
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Process Image
+ datum = op.Datum()
+ imageToProcess = cv2.imread(args[0].image_path)
+ datum.cvInputData = imageToProcess
+ opWrapper.emplaceAndPop([datum])
+
+ # Display Image
+ print("Body keypoints: \n" + str(datum.poseKeypoints))
+ print("Face keypoints: \n" + str(datum.faceKeypoints))
+ print("Left hand keypoints: \n" + str(datum.handKeypoints[0]))
+ print("Right hand keypoints: \n" + str(datum.handKeypoints[1]))
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ cv2.waitKey(0)
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/04_keypoints_from_images.py b/Lib/examples/tutorial_api_python/04_keypoints_from_images.py
new file mode 100644
index 0000000..f9f9dfc
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/04_keypoints_from_images.py
@@ -0,0 +1,83 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+import time
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_dir", default="../../../examples/media/", help="Process a directory of images. Read all standard formats (jpg, png, bmp, etc.).")
+ parser.add_argument("--no_display", default=False, help="Enable to disable the visual display.")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Read frames on directory
+ imagePaths = op.get_images_on_directory(args[0].image_dir);
+ start = time.time()
+
+ # Process and display images
+ for imagePath in imagePaths:
+ datum = op.Datum()
+ imageToProcess = cv2.imread(imagePath)
+ datum.cvInputData = imageToProcess
+ opWrapper.emplaceAndPop([datum])
+
+ print("Body keypoints: \n" + str(datum.poseKeypoints))
+
+ if not args[0].no_display:
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ key = cv2.waitKey(15)
+ if key == 27: break
+
+ end = time.time()
+ print("OpenPose demo successfully finished. Total time: " + str(end - start) + " seconds")
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/05_keypoints_from_images_multi_gpu.py b/Lib/examples/tutorial_api_python/05_keypoints_from_images_multi_gpu.py
new file mode 100644
index 0000000..a99995e
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/05_keypoints_from_images_multi_gpu.py
@@ -0,0 +1,110 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+import time
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_dir", default="../../../examples/media/", help="Process a directory of images. Read all standard formats (jpg, png, bmp, etc.).")
+ parser.add_argument("--no_display", default=False, help="Enable to disable the visual display.")
+ parser.add_argument("--num_gpu", default=op.get_gpu_number(), help="Number of GPUs.")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["num_gpu"] = int(vars(args[0])["num_gpu"])
+ numberGPUs = int(params["num_gpu"])
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Read frames on directory
+ imagePaths = op.get_images_on_directory(args[0].image_dir);
+
+ # Read number of GPUs in your system
+ start = time.time()
+
+ # Process and display images
+ for imageBaseId in range(0, len(imagePaths), numberGPUs):
+
+ # Create datums
+ datums = []
+ images = []
+
+ # Read and push images into OpenPose wrapper
+ for gpuId in range(0, numberGPUs):
+
+ imageId = imageBaseId+gpuId
+ if imageId < len(imagePaths):
+
+ imagePath = imagePaths[imageBaseId+gpuId]
+ datum = op.Datum()
+ images.append(cv2.imread(imagePath))
+ datum.cvInputData = images[-1]
+ datums.append(datum)
+ opWrapper.waitAndEmplace([datums[-1]])
+
+ # Retrieve processed results from OpenPose wrapper
+ for gpuId in range(0, numberGPUs):
+
+ imageId = imageBaseId+gpuId
+ if imageId < len(imagePaths):
+
+ datum = datums[gpuId]
+ opWrapper.waitAndPop([datum])
+
+ print("Body keypoints: \n" + str(datum.poseKeypoints))
+
+ if not args[0].no_display:
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ key = cv2.waitKey(15)
+ if key == 27: break
+
+ end = time.time()
+ print("OpenPose demo successfully finished. Total time: " + str(end - start) + " seconds")
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/06_face_from_image.py b/Lib/examples/tutorial_api_python/06_face_from_image.py
new file mode 100644
index 0000000..40387e4
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/06_face_from_image.py
@@ -0,0 +1,83 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+import time
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000241.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["face"] = True
+ params["face_detector"] = 2
+ params["body"] = 0
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Read image and face rectangle locations
+ imageToProcess = cv2.imread(args[0].image_path)
+ faceRectangles = [
+ op.Rectangle(330.119385, 277.532715, 48.717274, 48.717274),
+ op.Rectangle(24.036991, 267.918793, 65.175171, 65.175171),
+ op.Rectangle(151.803436, 32.477852, 108.295761, 108.295761),
+ ]
+
+ # Create new datum
+ datum = op.Datum()
+ datum.cvInputData = imageToProcess
+ datum.faceRectangles = faceRectangles
+
+ # Process and display image
+ opWrapper.emplaceAndPop([datum])
+ print("Face keypoints: \n" + str(datum.faceKeypoints))
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ cv2.waitKey(0)
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/07_hand_from_image.py b/Lib/examples/tutorial_api_python/07_hand_from_image.py
new file mode 100644
index 0000000..5227bf5
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/07_hand_from_image.py
@@ -0,0 +1,96 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+import time
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000241.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["hand"] = True
+ params["hand_detector"] = 2
+ params["body"] = 0
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Read image and face rectangle locations
+ imageToProcess = cv2.imread(args[0].image_path)
+ handRectangles = [
+ # Left/Right hands person 0
+ [
+ op.Rectangle(320.035889, 377.675049, 69.300949, 69.300949),
+ op.Rectangle(0., 0., 0., 0.),
+ ],
+ # Left/Right hands person 1
+ [
+ op.Rectangle(80.155792, 407.673492, 80.812706, 80.812706),
+ op.Rectangle(46.449715, 404.559753, 98.898178, 98.898178),
+ ],
+ # Left/Right hands person 2
+ [
+ op.Rectangle(185.692673, 303.112244, 157.587555, 157.587555),
+ op.Rectangle(88.984360, 268.866547, 117.818230, 117.818230),
+ ]
+ ]
+
+ # Create new datum
+ datum = op.Datum()
+ datum.cvInputData = imageToProcess
+ datum.handRectangles = handRectangles
+
+ # Process and display image
+ opWrapper.emplaceAndPop([datum])
+ print("Left hand keypoints: \n" + str(datum.handKeypoints[0]))
+ print("Right hand keypoints: \n" + str(datum.handKeypoints[1]))
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ cv2.waitKey(0)
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/08_heatmaps_from_image.py b/Lib/examples/tutorial_api_python/08_heatmaps_from_image.py
new file mode 100644
index 0000000..9f0ced1
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/08_heatmaps_from_image.py
@@ -0,0 +1,91 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000192.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["heatmaps_add_parts"] = True
+ params["heatmaps_add_bkg"] = True
+ params["heatmaps_add_PAFs"] = True
+ params["heatmaps_scale"] = 2
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Process Image
+ datum = op.Datum()
+ imageToProcess = cv2.imread(args[0].image_path)
+ datum.cvInputData = imageToProcess
+ opWrapper.emplaceAndPop([datum])
+
+ # Process outputs
+ outputImageF = (datum.inputNetData[0].copy())[0,:,:,:] + 0.5
+ outputImageF = cv2.merge([outputImageF[0,:,:], outputImageF[1,:,:], outputImageF[2,:,:]])
+ outputImageF = (outputImageF*255.).astype(dtype='uint8')
+ heatmaps = datum.poseHeatMaps.copy()
+ heatmaps = (heatmaps).astype(dtype='uint8')
+
+ # Display Image
+ counter = 0
+ while 1:
+ num_maps = heatmaps.shape[0]
+ heatmap = heatmaps[counter, :, :].copy()
+ heatmap = cv2.applyColorMap(heatmap, cv2.COLORMAP_JET)
+ combined = cv2.addWeighted(outputImageF, 0.5, heatmap, 0.5, 0)
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", combined)
+ key = cv2.waitKey(-1)
+ if key == 27:
+ break
+ counter += 1
+ counter = counter % num_maps
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/09_keypoints_from_heatmaps.py b/Lib/examples/tutorial_api_python/09_keypoints_from_heatmaps.py
new file mode 100644
index 0000000..35fdbd5
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/09_keypoints_from_heatmaps.py
@@ -0,0 +1,88 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+import numpy as np
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000294.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Load image
+ imageToProcess = cv2.imread(args[0].image_path)
+
+ def get_sample_heatmaps():
+ # These parameters are globally set. You need to unset variables set here if you have a new OpenPose object. See *
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["heatmaps_add_parts"] = True
+ params["heatmaps_add_bkg"] = True
+ params["heatmaps_add_PAFs"] = True
+ params["heatmaps_scale"] = 3
+ params["upsampling_ratio"] = 1
+ params["body"] = 1
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Process Image and get heatmap
+ datum = op.Datum()
+ imageToProcess = cv2.imread(args[0].image_path)
+ datum.cvInputData = imageToProcess
+ opWrapper.emplaceAndPop([datum])
+ poseHeatMaps = datum.poseHeatMaps.copy()
+ opWrapper.stop()
+
+ return poseHeatMaps
+
+ # Get Heatmap
+ poseHeatMaps = get_sample_heatmaps()
+
+ # Starting OpenPose
+ params = dict()
+ params["model_folder"] = "../../../models/"
+ params["body"] = 2 # Disable OP Network
+ params["upsampling_ratio"] = 0 # * Unset this variable
+ opWrapper = op.WrapperPython()
+ opWrapper.configure(params)
+ opWrapper.start()
+
+ # Pass Heatmap and Run OP
+ datum = op.Datum()
+ datum.cvInputData = imageToProcess
+ datum.poseNetOutput = poseHeatMaps
+ opWrapper.emplaceAndPop([datum])
+
+ # Display Image
+ print("Body keypoints: \n" + str(datum.poseKeypoints))
+ cv2.imshow("OpenPose 1.6.0 - Tutorial Python API", datum.cvOutputData)
+ cv2.waitKey(0)
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_python/CMakeFiles/generate.stamp b/Lib/examples/tutorial_api_python/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/tutorial_api_python/CMakeFiles/generate.stamp.depend b/Lib/examples/tutorial_api_python/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..c1c2f4b
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,11 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/01_body_from_image.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/02_whole_body_from_image.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/04_keypoints_from_images.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/05_keypoints_from_images_multi_gpu.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/06_face_from_image.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/07_hand_from_image.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/08_heatmaps_from_image.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/09_keypoints_from_heatmaps.py
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/CMakeLists.txt
+D:/BJTU/Python/openpose-master/examples/tutorial_api_python/openpose_python.py
diff --git a/Lib/examples/tutorial_api_python/INSTALL.vcxproj b/Lib/examples/tutorial_api_python/INSTALL.vcxproj
new file mode 100644
index 0000000..567aa61
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_python\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_python\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_python/INSTALL.vcxproj.filters b/Lib/examples/tutorial_api_python/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..ab47c15
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/tutorial_api_python/cmake_install.cmake b/Lib/examples/tutorial_api_python/cmake_install.cmake
new file mode 100644
index 0000000..2ab256e
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/tutorial_api_python
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/examples/tutorial_api_python/openpose_python.py b/Lib/examples/tutorial_api_python/openpose_python.py
new file mode 100644
index 0000000..8c6630c
--- /dev/null
+++ b/Lib/examples/tutorial_api_python/openpose_python.py
@@ -0,0 +1,60 @@
+# From Python
+# It requires OpenCV installed for Python
+import sys
+import cv2
+import os
+from sys import platform
+import argparse
+
+try:
+ # Import Openpose (Windows/Ubuntu/OSX)
+ dir_path = os.path.dirname(os.path.realpath(__file__))
+ try:
+ # Windows Import
+ if platform == "win32":
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append(dir_path + '/../../python/openpose/Release');
+ os.environ['PATH'] = os.environ['PATH'] + ';' + dir_path + '/../../x64/Release;' + dir_path + '/../../bin;'
+ import pyopenpose as op
+ else:
+ # Change these variables to point to the correct folder (Release/x64 etc.)
+ sys.path.append('../../python');
+ # If you run `make install` (default path is `/usr/local/python` for Ubuntu), you can also access the OpenPose/python module from there. This will install OpenPose and the python library at your desired installation path. Ensure that this is in your python path in order to use it.
+ # sys.path.append('/usr/local/python')
+ from openpose import pyopenpose as op
+ except ImportError as e:
+ print('Error: OpenPose library could not be found. Did you enable `BUILD_PYTHON` in CMake and have this Python script in the right folder?')
+ raise e
+
+ # Flags
+ parser = argparse.ArgumentParser()
+ parser.add_argument("--image_path", default="../../../examples/media/COCO_val2014_000000000192.jpg", help="Process an image. Read all standard formats (jpg, png, bmp, etc.).")
+ args = parser.parse_known_args()
+
+ # Custom Params (refer to include/openpose/flags.hpp for more parameters)
+ params = dict()
+ params["model_folder"] = "../../../models/"
+
+ # Add others in path?
+ for i in range(0, len(args[1])):
+ curr_item = args[1][i]
+ if i != len(args[1])-1: next_item = args[1][i+1]
+ else: next_item = "1"
+ if "--" in curr_item and "--" in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = "1"
+ elif "--" in curr_item and "--" not in next_item:
+ key = curr_item.replace('-','')
+ if key not in params: params[key] = next_item
+
+ # Construct it from system arguments
+ # op.init_argv(args[1])
+ # oppython = op.OpenposePython()
+
+ # Starting OpenPose
+ opWrapper = op.WrapperPython(3)
+ opWrapper.configure(params)
+ opWrapper.execute()
+except Exception as e:
+ print(e)
+ sys.exit(-1)
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/1_thread_user_processing_function.lastbuildstate b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/1_thread_user_processing_function.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/1_thread_user_processing_function.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/1_thread_user_processing_function.write.1u.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/1_thread_user_processing_function.write.1u.tlog
new file mode 100644
index 0000000..e500633
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/1_thread_user_processing_function.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..78c0ec9
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..482c0ed
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..ae35725
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.command.1.tlog
new file mode 100644
index 0000000..ca12716
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.read.1.tlog
new file mode 100644
index 0000000..bec609b
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.write.1.tlog
new file mode 100644
index 0000000..1aff92b
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread.FEEDE782.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread_user_processing_function.log b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread_user_processing_function.log
new file mode 100644
index 0000000..be3a02f
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread_user_processing_function.log
@@ -0,0 +1,4 @@
+ 1_thread_user_processing_function.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Release/1_thread_user_processing_function.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Release/1_thread_user_processing_function.exp
+ 1_thread_user_processing_function.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\1_thread_user_processing_function.exe
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread_user_processing_function.obj b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread_user_processing_function.obj
new file mode 100644
index 0000000..7bbaca6
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.dir/Release/1_thread_user_processing_function.obj differ
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj
new file mode 100644
index 0000000..1cec681
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {FEEDE782-93EF-3C19-88B1-617151419F17}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 1_thread_user_processing_function
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 1_thread_user_processing_function.dir\Release\
+ 1_thread_user_processing_function
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 1_thread_user_processing_function.dir\Debug\
+ 1_thread_user_processing_function
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Release/1_thread_user_processing_function.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/1_thread_user_processing_function.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Debug/1_thread_user_processing_function.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/1_thread_user_processing_function.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj.filters b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj.filters
new file mode 100644
index 0000000..f23df2a
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj.user b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/1_thread_user_processing_function.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/2_thread_user_input_processing_output_and_datum.lastbuildstate b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/2_thread_user_input_processing_output_and_datum.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/2_thread_user_input_processing_output_and_datum.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/2_thread_user_input_processing_output_and_datum.write.1u.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/2_thread_user_input_processing_output_and_datum.write.1u.tlog
new file mode 100644
index 0000000..8619567
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/2_thread_user_input_processing_output_and_datum.write.1u.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.command.1.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..2a38757
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.read.1.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..a79a6d8
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.write.1.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..8f7d720
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/CL.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.command.1.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.command.1.tlog
new file mode 100644
index 0000000..0b78dc2
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.command.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.read.1.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.read.1.tlog
new file mode 100644
index 0000000..1f25a88
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.read.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.write.1.tlog b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.write.1.tlog
new file mode 100644
index 0000000..b58ebf0
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread.BB4492F8.tlog/link.write.1.tlog differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread_user_input_processing_output_and_datum.log b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread_user_input_processing_output_and_datum.log
new file mode 100644
index 0000000..29b0a15
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread_user_input_processing_output_and_datum.log
@@ -0,0 +1,3 @@
+ 2_thread_user_input_processing_output_and_datum.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.exp
+ 2_thread_user_input_processing_output_and_datum.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\2_thread_user_input_processing_output_and_datum.exe
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread_user_input_processing_output_and_datum.obj b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread_user_input_processing_output_and_datum.obj
new file mode 100644
index 0000000..3e7b748
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.dir/Release/2_thread_user_input_processing_output_and_datum.obj differ
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj
new file mode 100644
index 0000000..b7ff954
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj
@@ -0,0 +1,153 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {BB4492F8-A7D7-376F-8C12-F133D7E99857}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ 2_thread_user_input_processing_output_and_datum
+ NoUpgrade
+
+
+
+ Application
+ MultiByte
+ v141
+
+
+ Application
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 2_thread_user_input_processing_output_and_datum.dir\Release\
+ 2_thread_user_input_processing_output_and_datum
+ .exe
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ 2_thread_user_input_processing_output_and_datum.dir\Debug\
+ 2_thread_user_input_processing_output_and_datum
+ .exe
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Release\openpose.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/2_thread_user_input_processing_output_and_datum.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ ..\..\src\openpose\Debug\openposed.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/examples/tutorial_api_thread/Debug/2_thread_user_input_processing_output_and_datum.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/2_thread_user_input_processing_output_and_datum.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj.filters b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj.filters
new file mode 100644
index 0000000..d396d3b
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj.user b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj.user
new file mode 100644
index 0000000..b620afc
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/2_thread_user_input_processing_output_and_datum.vcxproj.user
@@ -0,0 +1,16 @@
+
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
+ PATH=%PATH%;3rdparty\windows\caffe\bin\;3rdparty\windows\opencv\x64\vc14\bin;3rdparty\windows\freeglut\bin\;3rdparty\windows\spinnaker\bin\
+ WindowsLocalDebugger
+ ..\..\..
+
+
+
diff --git a/Lib/examples/tutorial_api_thread/CMakeFiles/generate.stamp b/Lib/examples/tutorial_api_thread/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/tutorial_api_thread/CMakeFiles/generate.stamp.depend b/Lib/examples/tutorial_api_thread/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..c1c330a
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/OpenPose.vcxproj.user
+D:/BJTU/Python/openpose-master/examples/tutorial_api_thread/CMakeLists.txt
diff --git a/Lib/examples/tutorial_api_thread/INSTALL.vcxproj b/Lib/examples/tutorial_api_thread/INSTALL.vcxproj
new file mode 100644
index 0000000..d9c2e99
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_thread\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_thread\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/tutorial_api_thread/INSTALL.vcxproj.filters b/Lib/examples/tutorial_api_thread/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..5608770
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/tutorial_api_thread/Release/1_thread_user_processing_function.exp b/Lib/examples/tutorial_api_thread/Release/1_thread_user_processing_function.exp
new file mode 100644
index 0000000..08148b2
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/Release/1_thread_user_processing_function.exp differ
diff --git a/Lib/examples/tutorial_api_thread/Release/1_thread_user_processing_function.lib b/Lib/examples/tutorial_api_thread/Release/1_thread_user_processing_function.lib
new file mode 100644
index 0000000..4e6fee4
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/Release/1_thread_user_processing_function.lib differ
diff --git a/Lib/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.exp b/Lib/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.exp
new file mode 100644
index 0000000..d623bd8
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.exp differ
diff --git a/Lib/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.lib b/Lib/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.lib
new file mode 100644
index 0000000..69e07fe
Binary files /dev/null and b/Lib/examples/tutorial_api_thread/Release/2_thread_user_input_processing_output_and_datum.lib differ
diff --git a/Lib/examples/tutorial_api_thread/cmake_install.cmake b/Lib/examples/tutorial_api_thread/cmake_install.cmake
new file mode 100644
index 0000000..0ba76a5
--- /dev/null
+++ b/Lib/examples/tutorial_api_thread/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/tutorial_api_thread
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/examples/user_code/CMakeFiles/generate.stamp b/Lib/examples/user_code/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/examples/user_code/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/examples/user_code/CMakeFiles/generate.stamp.depend b/Lib/examples/user_code/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..d25c8a7
--- /dev/null
+++ b/Lib/examples/user_code/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/examples/user_code/CMakeLists.txt
diff --git a/Lib/examples/user_code/INSTALL.vcxproj b/Lib/examples/user_code/INSTALL.vcxproj
new file mode 100644
index 0000000..b5395ef
--- /dev/null
+++ b/Lib/examples/user_code/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\user_code\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\examples\user_code\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/examples/user_code/INSTALL.vcxproj.filters b/Lib/examples/user_code/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..783008b
--- /dev/null
+++ b/Lib/examples/user_code/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/examples/user_code/cmake_install.cmake b/Lib/examples/user_code/cmake_install.cmake
new file mode 100644
index 0000000..cecab77
--- /dev/null
+++ b/Lib/examples/user_code/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/examples/user_code
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/python/CMakeFiles/generate.stamp b/Lib/python/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/python/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/python/CMakeFiles/generate.stamp.depend b/Lib/python/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..7d4b904
--- /dev/null
+++ b/Lib/python/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/python/CMakeLists.txt
diff --git a/Lib/python/INSTALL.vcxproj b/Lib/python/INSTALL.vcxproj
new file mode 100644
index 0000000..1916055
--- /dev/null
+++ b/Lib/python/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\python\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\python\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/python/INSTALL.vcxproj.filters b/Lib/python/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..348ed90
--- /dev/null
+++ b/Lib/python/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/python/cmake_install.cmake b/Lib/python/cmake_install.cmake
new file mode 100644
index 0000000..1294b1a
--- /dev/null
+++ b/Lib/python/cmake_install.cmake
@@ -0,0 +1,40 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/python
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("D:/BJTU/Python/openpose-master/build-2017/python/openpose/cmake_install.cmake")
+
+endif()
+
diff --git a/Lib/python/openpose/CMakeFiles/generate.stamp b/Lib/python/openpose/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/python/openpose/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/python/openpose/CMakeFiles/generate.stamp.depend b/Lib/python/openpose/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..582a203
--- /dev/null
+++ b/Lib/python/openpose/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/python/openpose/CMakeLists.txt
+D:/BJTU/Python/openpose-master/python/openpose/__init__.py
diff --git a/Lib/python/openpose/INSTALL.vcxproj b/Lib/python/openpose/INSTALL.vcxproj
new file mode 100644
index 0000000..0817fac
--- /dev/null
+++ b/Lib/python/openpose/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\python\openpose\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\python\openpose\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/python/openpose/INSTALL.vcxproj.filters b/Lib/python/openpose/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..3dc9e01
--- /dev/null
+++ b/Lib/python/openpose/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/python/openpose/Release/pyopenpose.cp37-win_amd64.pyd b/Lib/python/openpose/Release/pyopenpose.cp37-win_amd64.pyd
new file mode 100644
index 0000000..76a20b8
Binary files /dev/null and b/Lib/python/openpose/Release/pyopenpose.cp37-win_amd64.pyd differ
diff --git a/Lib/python/openpose/Release/pyopenpose.exp b/Lib/python/openpose/Release/pyopenpose.exp
new file mode 100644
index 0000000..9cf37ec
Binary files /dev/null and b/Lib/python/openpose/Release/pyopenpose.exp differ
diff --git a/Lib/python/openpose/Release/pyopenpose.lib b/Lib/python/openpose/Release/pyopenpose.lib
new file mode 100644
index 0000000..fbdaeb3
Binary files /dev/null and b/Lib/python/openpose/Release/pyopenpose.lib differ
diff --git a/Lib/python/openpose/__init__.py b/Lib/python/openpose/__init__.py
new file mode 100644
index 0000000..37d1fdb
--- /dev/null
+++ b/Lib/python/openpose/__init__.py
@@ -0,0 +1 @@
+from . import pyopenpose as pyopenpose
diff --git a/Lib/python/openpose/cmake_install.cmake b/Lib/python/openpose/cmake_install.cmake
new file mode 100644
index 0000000..26fd90a
--- /dev/null
+++ b/Lib/python/openpose/cmake_install.cmake
@@ -0,0 +1,50 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/python/openpose
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ if("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Rr][Ee][Ll][Ee][Aa][Ss][Ee])$")
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/python" TYPE MODULE FILES "D:/BJTU/Python/openpose-master/build-2017/python/openpose/Release/pyopenpose.cp37-win_amd64.pyd")
+ elseif("${CMAKE_INSTALL_CONFIG_NAME}" MATCHES "^([Dd][Ee][Bb][Uu][Gg])$")
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/python" TYPE MODULE FILES "D:/BJTU/Python/openpose-master/build-2017/python/openpose/Debug/pyopenpose.cp37-win_amd64.pyd")
+ endif()
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/python/openpose" TYPE DIRECTORY FILES "D:/BJTU/Python/openpose-master/build-2017/python/openpose/" FILES_MATCHING REGEX "/[^/]*\\.so$")
+endif()
+
+if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT)
+ file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/python/openpose" TYPE DIRECTORY FILES "D:/BJTU/Python/openpose-master/build-2017/python/openpose/" FILES_MATCHING REGEX "/[^/]*\\.py$")
+endif()
+
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/openpose_python.obj b/Lib/python/openpose/pyopenpose.dir/Release/openpose_python.obj
new file mode 100644
index 0000000..8d5a5fb
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/openpose_python.obj differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.log b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.log
new file mode 100644
index 0000000..f4b161f
--- /dev/null
+++ b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.log
@@ -0,0 +1,102 @@
+ openpose_python.cpp
+D:\BJTU\Python\openpose-master\include\openpose/flags.hpp(49): warning C4245: “初始化”: 从“int”转换到“google::uint64”,有符号/无符号不匹配
+D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\xmemory0(881): warning C4244: “初始化”: 从“_Ty”转换到“_Objty”,可能丢失数据
+ with
+ [
+ _Ty=Py_ssize_t
+ ]
+ and
+ [
+ _Objty=int
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\xmemory(164): note: 参见对正在编译的函数 模板 实例化“void std::_Default_allocator_traits<_Alloc>::construct<_Ty,__int64&>(_Alloc &,_Objty *const ,__int64 &)”的引用
+ with
+ [
+ _Alloc=std::allocator,
+ _Ty=int,
+ _Objty=int
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\xmemory(164): note: 参见对正在编译的函数 模板 实例化“void std::_Default_allocator_traits<_Alloc>::construct<_Ty,__int64&>(_Alloc &,_Objty *const ,__int64 &)”的引用
+ with
+ [
+ _Alloc=std::allocator,
+ _Ty=int,
+ _Objty=int
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\xmemory(190): note: 参见对正在编译的函数 模板 实例化“void std::_Uninitialized_backout_al<_FwdIt,_Alloc>::_Emplace_back<_Ty&>(_Ty &)”的引用
+ with
+ [
+ _FwdIt=int *,
+ _Alloc=std::allocator,
+ _Ty=Py_ssize_t
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\xmemory(190): note: 参见对正在编译的函数 模板 实例化“void std::_Uninitialized_backout_al<_FwdIt,_Alloc>::_Emplace_back<_Ty&>(_Ty &)”的引用
+ with
+ [
+ _FwdIt=int *,
+ _Alloc=std::allocator,
+ _Ty=Py_ssize_t
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\xmemory(217): note: 参见对正在编译的函数 模板 实例化“_FwdIt std::_Uninitialized_copy_al_unchecked<_Ty*,int*,_Alloc>(_InIt,const _InIt,const _FwdIt,_Alloc &,std::_General_ptr_iterator_tag,std::_Any_tag)”的引用
+ with
+ [
+ _FwdIt=int *,
+ _Ty=Py_ssize_t,
+ _Alloc=std::allocator,
+ _InIt=Py_ssize_t *
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(1823): note: 参见对正在编译的函数 模板 实例化“_FwdIt *std::_Uninitialized_copy<_Iter,int*,std::allocator<_Ty>>(const _InIt,const _InIt,_FwdIt,_Alloc &)”的引用
+ with
+ [
+ _FwdIt=int *,
+ _Iter=__int64 *,
+ _Ty=int,
+ _InIt=__int64 *,
+ _Alloc=std::allocator
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(708): note: 参见对正在编译的函数 模板 实例化“int *std::vector>::_Ucopy<_Iter>(_Iter,_Iter,int *)”的引用
+ with
+ [
+ _Ty=int,
+ _Iter=__int64 *
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(708): note: 参见对正在编译的函数 模板 实例化“int *std::vector>::_Ucopy<_Iter>(_Iter,_Iter,int *)”的引用
+ with
+ [
+ _Ty=int,
+ _Iter=__int64 *
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(723): note: 参见对正在编译的函数 模板 实例化“void std::vector>::_Range_construct_or_tidy<__int64*>(_Iter,_Iter,std::forward_iterator_tag)”的引用
+ with
+ [
+ _Ty=int,
+ _Iter=__int64 *
+ ]
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(723): note: 参见对正在编译的函数 模板 实例化“void std::vector>::_Range_construct_or_tidy<__int64*>(_Iter,_Iter,std::forward_iterator_tag)”的引用
+ with
+ [
+ _Ty=int,
+ _Iter=__int64 *
+ ]
+ D:\BJTU\Python\openpose-master\python\openpose\openpose_python.cpp(413): note: 参见对正在编译的函数 模板 实例化“std::vector>::vector>>,void>(_Iter,_Iter,const _Alloc &)”的引用
+ with
+ [
+ _Ty=int,
+ _Iter=std::_Vector_iterator>>,
+ _Alloc=std::allocator
+ ]
+ D:\BJTU\Python\openpose-master\python\openpose\openpose_python.cpp(413): note: 参见对正在编译的函数 模板 实例化“std::vector>::vector>>,void>(_Iter,_Iter,const _Alloc &)”的引用
+ with
+ [
+ _Ty=int,
+ _Iter=std::_Vector_iterator>>,
+ _Alloc=std::allocator
+ ]
+ D:\BJTU\Python\openpose-master\python\openpose\openpose_python.cpp(397): note: 参见对正在编译的 类 模板 实例化 "pybind11::detail::descr<13>" 的引用
+ d:\bjtu\python\openpose-master\3rdparty\pybind11\include\pybind11\cast.h(1556): note: 参见对正在编译的 类 模板 实例化 "pybind11::detail::descr<8>" 的引用
+ d:\bjtu\python\openpose-master\3rdparty\pybind11\include\pybind11\cast.h(1554): note: 参见对正在编译的 类 模板 实例化 "pybind11::detail::descr<5>" 的引用
+ d:\bjtu\python\openpose-master\3rdparty\pybind11\include\pybind11\cast.h(1109): note: 参见对正在编译的 类 模板 实例化 "pybind11::detail::descr<7>" 的引用
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/python/openpose/Release/pyopenpose.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/python/openpose/Release/pyopenpose.exp
+ 正在生成代码
+ 已完成代码的生成
+ pyopenpose.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\python\openpose\Release\pyopenpose.cp37-win_amd64.pyd
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.command.1.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..98f773b
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.command.1.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.read.1.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..2b3053a
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.read.1.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.write.1.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..0633988
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/CL.write.1.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.command.1.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.command.1.tlog
new file mode 100644
index 0000000..08c851d
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.command.1.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.read.1.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.read.1.tlog
new file mode 100644
index 0000000..d10785f
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.read.1.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.write.1.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.write.1.tlog
new file mode 100644
index 0000000..7c36c73
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/link.write.1.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/pyopenpose.lastbuildstate b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/pyopenpose.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/pyopenpose.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/pyopenpose.write.1u.tlog b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/pyopenpose.write.1u.tlog
new file mode 100644
index 0000000..3ddcb8e
Binary files /dev/null and b/Lib/python/openpose/pyopenpose.dir/Release/pyopenpose.tlog/pyopenpose.write.1u.tlog differ
diff --git a/Lib/python/openpose/pyopenpose.vcxproj b/Lib/python/openpose/pyopenpose.vcxproj
new file mode 100644
index 0000000..12041f3
--- /dev/null
+++ b/Lib/python/openpose/pyopenpose.vcxproj
@@ -0,0 +1,158 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {876F53EC-E55B-362B-BA39-361F314C6FBE}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ pyopenpose
+ NoUpgrade
+
+
+
+ DynamicLibrary
+ MultiByte
+ v141
+
+
+ DynamicLibrary
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\python\openpose\Release\
+ pyopenpose.dir\Release\
+ pyopenpose.cp37-win_amd64
+ .pyd
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\python\openpose\Debug\
+ pyopenpose.dir\Debug\
+ pyopenpose.cp37-win_amd64
+ .pyd
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;D:\BJTU\Python\openpose-master\3rdparty\pybind11\include;C:\Programs\python-3\include;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /bigobj
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ stdcpp14
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ true
+ NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";pyopenpose_EXPORTS;%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";pyopenpose_EXPORTS;%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;D:\BJTU\Python\openpose-master\3rdparty\pybind11\include;C:\Programs\python-3\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;D:\BJTU\Python\openpose-master\3rdparty\pybind11\include;C:\Programs\python-3\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ C:\Programs\python-3\libs\Python37.lib;-LTCG;..\..\src\openpose\Release\openpose.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;C:\Programs\python-3\libs\Python37.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/python/openpose/Release/pyopenpose.lib
+ D:/BJTU/Python/openpose-master/build-2017/python/openpose/Release/pyopenpose.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;D:\BJTU\Python\openpose-master\3rdparty\pybind11\include;C:\Programs\python-3\include;%(AdditionalIncludeDirectories)
+ %(AdditionalOptions) /bigobj
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ stdcpp14
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";pyopenpose_EXPORTS;%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";pyopenpose_EXPORTS;%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;D:\BJTU\Python\openpose-master\3rdparty\pybind11\include;C:\Programs\python-3\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;D:\BJTU\Python\openpose-master\3rdparty\pybind11\include;C:\Programs\python-3\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ C:\Programs\python-3\libs\Python37.lib;..\..\src\openpose\Debug\openposed.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;C:\Programs\python-3\libs\Python37.lib;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/python/openpose/Debug/pyopenpose.lib
+ D:/BJTU/Python/openpose-master/build-2017/python/openpose/Debug/pyopenpose.pdb
+ Console
+
+
+ false
+
+
+
+
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ openpose
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/python/openpose/pyopenpose.vcxproj.filters b/Lib/python/openpose/pyopenpose.vcxproj.filters
new file mode 100644
index 0000000..b5f60b6
--- /dev/null
+++ b/Lib/python/openpose/pyopenpose.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ Source Files
+
+
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+
diff --git a/Lib/src/CMakeFiles/generate.stamp b/Lib/src/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/CMakeFiles/generate.stamp.depend b/Lib/src/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..58c5254
--- /dev/null
+++ b/Lib/src/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,2 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/src/CMakeLists.txt
diff --git a/Lib/src/INSTALL.vcxproj b/Lib/src/INSTALL.vcxproj
new file mode 100644
index 0000000..913e699
--- /dev/null
+++ b/Lib/src/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/INSTALL.vcxproj.filters b/Lib/src/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..08e26f7
--- /dev/null
+++ b/Lib/src/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/cmake_install.cmake b/Lib/src/cmake_install.cmake
new file mode 100644
index 0000000..5055a9f
--- /dev/null
+++ b/Lib/src/cmake_install.cmake
@@ -0,0 +1,40 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/cmake_install.cmake")
+
+endif()
+
diff --git a/Lib/src/openpose/3d/CMakeFiles/generate.stamp b/Lib/src/openpose/3d/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/3d/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/3d/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/3d/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..5eb6f2e
--- /dev/null
+++ b/Lib/src/openpose/3d/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/3d/CMakeLists.txt
diff --git a/Lib/src/openpose/3d/INSTALL.vcxproj b/Lib/src/openpose/3d/INSTALL.vcxproj
new file mode 100644
index 0000000..e216e78
--- /dev/null
+++ b/Lib/src/openpose/3d/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\3d\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\3d\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/3d/INSTALL.vcxproj.filters b/Lib/src/openpose/3d/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..441bc2b
--- /dev/null
+++ b/Lib/src/openpose/3d/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/3d/cmake_install.cmake b/Lib/src/openpose/3d/cmake_install.cmake
new file mode 100644
index 0000000..124af11
--- /dev/null
+++ b/Lib/src/openpose/3d/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/3d
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/CMakeFiles/generate.stamp b/Lib/src/openpose/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..22d2843
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,22 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.cmake.pre-gen
+D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/CMakeLists.txt
+D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/run_nvcc.cmake
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/face/Release/openpose_generated_renderFace.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/face/Release/openpose_generated_renderFace.cu.obj
new file mode 100644
index 0000000..684b739
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/face/Release/openpose_generated_renderFace.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Debug.cmake
new file mode 100644
index 0000000..acfe2f6
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/face/renderFace.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Release.cmake
new file mode 100644
index 0000000..acfe2f6
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/face/renderFace.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..62cc9d9
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/face/renderFace.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend
new file mode 100644
index 0000000..e223077
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.depend
@@ -0,0 +1,192 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/face/faceParameters.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/face/renderFace.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParameters.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParametersRender.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/gpu/cuda.hu"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/utilities/render.hu"
+ "D:/BJTU/Python/openpose-master/src/openpose/face/renderFace.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/map"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtree"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/Release/openpose_generated_cuda.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/Release/openpose_generated_cuda.cu.obj
new file mode 100644
index 0000000..b56b464
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/Release/openpose_generated_cuda.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Debug.cmake
new file mode 100644
index 0000000..b51ad73
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/gpu/cuda.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Release.cmake
new file mode 100644
index 0000000..b51ad73
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/gpu/cuda.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..e97d942
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/gpu/cuda.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend
new file mode 100644
index 0000000..514971e
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.depend
@@ -0,0 +1,184 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/gpu/cuda.hu"
+ "D:/BJTU/Python/openpose-master/src/openpose/gpu/cuda.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/hand/Release/openpose_generated_renderHand.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/Release/openpose_generated_renderHand.cu.obj
new file mode 100644
index 0000000..52d7904
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/Release/openpose_generated_renderHand.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Debug.cmake
new file mode 100644
index 0000000..29c75ed
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/hand/renderHand.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Release.cmake
new file mode 100644
index 0000000..29c75ed
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/hand/renderHand.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..845b5d8
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/hand/renderHand.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend
new file mode 100644
index 0000000..8880ce5
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.depend
@@ -0,0 +1,192 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/hand/handParameters.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/hand/renderHand.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParameters.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParametersRender.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/gpu/cuda.hu"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/utilities/render.hu"
+ "D:/BJTU/Python/openpose-master/src/openpose/hand/renderHand.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/map"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtree"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_bodyPartConnectorBase.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_bodyPartConnectorBase.cu.obj
new file mode 100644
index 0000000..900d1ee
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_bodyPartConnectorBase.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_maximumBase.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_maximumBase.cu.obj
new file mode 100644
index 0000000..c38c1d4
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_maximumBase.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_nmsBase.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_nmsBase.cu.obj
new file mode 100644
index 0000000..7d951f7
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_nmsBase.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_resizeAndMergeBase.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_resizeAndMergeBase.cu.obj
new file mode 100644
index 0000000..6f43872
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_resizeAndMergeBase.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Debug.cmake
new file mode 100644
index 0000000..0bc1ec0
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/bodyPartConnectorBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Release.cmake
new file mode 100644
index 0000000..0bc1ec0
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/bodyPartConnectorBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..b40c27f
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/bodyPartConnectorBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend
new file mode 100644
index 0000000..814374c
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.depend
@@ -0,0 +1,188 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/net/bodyPartConnectorBase.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParameters.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/fastMath.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/src/openpose/net/bodyPartConnectorBase.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/map"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtree"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Debug.cmake
new file mode 100644
index 0000000..8daaf42
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/maximumBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Release.cmake
new file mode 100644
index 0000000..8daaf42
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/maximumBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..2412459
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/maximumBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend
new file mode 100644
index 0000000..9e52662
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.depend
@@ -0,0 +1,741 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_fp16.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_fp16.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_occupancy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/advance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/advance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/alignment.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/allocator_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/allocator_traits.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/copy_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/copy_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/default_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/default_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/destroy_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/destroy_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/fill_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/fill_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/no_throw_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/tagged_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/tagged_allocator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/temporary_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/temporary_allocator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/compiler.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/compiler_fence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/debug.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/device_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/exec_check_disable.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/forceinline.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/global_workarounds.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/host_device.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/host_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/simple_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/contiguous_storage.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/contiguous_storage.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/count.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/cstdint.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_free.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_malloc.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_ptr.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_reference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_vector.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/dispatch/is_trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/distance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/equal.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/execute_with_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/extrema.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/find.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/for_each.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/actor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/actor.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/argument.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/composite.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/arithmetic_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/assignment_operator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/bitwise_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/compound_assignment_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/logical_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/operator_adaptors.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/relational_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/placeholder.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/generate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/get_iterator_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/host_vector.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/integer_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/internal_functional.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/minmax.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/mismatch.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/mpl/math.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/numeric_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/overlapped_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/pair.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/partition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/pointer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/pointer.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/range/head_flags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/raw_pointer_cast.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/raw_reference_cast.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reference_forward_declaration.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/remove.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/replace.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reverse.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/scatter.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/seq.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/sequence.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/set_operations.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/static_assert.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/swap.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/swap_ranges.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tabulate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/temporary_array.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/temporary_array.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/transform.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/transform_reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/trivial_sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tuple.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tuple_meta_transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tuple_transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/algorithm/intermediate_type_from_function_and_iterators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/function_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/has_member_function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/has_nested_type.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/has_trivial_assign.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/is_call_possible.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/is_metafunction_defined.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/iterator/is_output_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/minimum_type.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/pointer_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/result_of_adaptable_function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/uninitialized_fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/unique.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/use_default.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/util/blocking.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/vector_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/vector_base.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_malloc.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_malloc_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_ptr.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_reference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_vector.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/distance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/functional.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/host_vector.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/constant_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/counting_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/any_assign.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/any_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/constant_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/counting_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/device_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/distance_from_result.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/host_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/is_iterator_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/is_trivial_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_adaptor_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_category_to_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_category_to_traversal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_category_with_system_and_traversal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_facade_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_traits.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_traversal_tags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/minimum_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/minimum_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/normal_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/permutation_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/reverse_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/reverse_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/tagged_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/transform_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/tuple_of_iterator_references.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/universal_categories.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/zip_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/zip_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_adaptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_categories.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_facade.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/permutation_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/reverse_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/transform_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/zip_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/memory.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/pair.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/inner_product.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/logical.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/par.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/transform_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/uninitialized_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/agent_launcher.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/alignment.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/triple_chevron_launch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/util.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cross_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_radix_sort_downsweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_radix_sort_upsweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_reduce_by_key.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_select_if.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/single_pass_scan_operators.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_adjacent_difference.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_discontinuity.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_exchange.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_load.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_radix_rank.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_raking_layout.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_store.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_raking.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_raking_commutative_only.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_warp_reductions.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_scan_raking.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_scan_warp_scans.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_partition.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_select.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_reduce_by_key.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_select_if.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/grid/grid_even_share.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/grid/grid_mapping.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/grid/grid_queue.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/iterator/arg_index_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/iterator/cache_modified_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/iterator/constant_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_load.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_operators.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_store.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_arch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_debug.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_device.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_macro.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_namespace.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_ptx.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_type.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_reduce_shfl.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_reduce_smem.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_scan_shfl.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_scan_smem.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/warp_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/warp_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/error.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/guarded_cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/guarded_driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/inner_product.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/internal/copy_cross_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/internal/copy_device_to_device.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/par.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/par_to_seq.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/parallel_for.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/terminate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/transform_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/uninitialized_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/util.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/bad_alloc.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/errno.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/error_category.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/error_code.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/error_condition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/advance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/advance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/count.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/distance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/distance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/equal.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/extrema.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/find.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/generate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/memory.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/memory.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/mismatch.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/partition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/remove.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/replace.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reverse.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scatter.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/select_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sequence.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/set_operations.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/swap_ranges.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/tabulate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/temporary_buffer.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform_reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/type_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/uninitialized_fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy_backward.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/general_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/insertion_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_merge_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_merge_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_primitive_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_primitive_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_radix_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_radix_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/system_error.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/error_code.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/system_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/tuple.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/version.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/net/maximumBase.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/src/openpose/net/maximumBase.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ammintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cassert"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/emmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/immintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/mmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/nmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/pmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/setjmp.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/smmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/wmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/zmmintrin.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Debug.cmake
new file mode 100644
index 0000000..22ca42f
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/nmsBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Release.cmake
new file mode 100644
index 0000000..22ca42f
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/nmsBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..6cac070
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/nmsBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend
new file mode 100644
index 0000000..087dd29
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.depend
@@ -0,0 +1,743 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_fp16.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_fp16.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_occupancy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/advance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/advance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/alignment.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/allocator_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/allocator_traits.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/copy_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/copy_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/default_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/default_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/destroy_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/destroy_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/fill_construct_range.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/fill_construct_range.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/no_throw_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/tagged_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/tagged_allocator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/temporary_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/allocator/temporary_allocator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/compiler.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/compiler_fence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/debug.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/device_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/exec_check_disable.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/forceinline.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/global_workarounds.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/host_device.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/host_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/config/simple_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/contiguous_storage.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/contiguous_storage.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/count.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/cstdint.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_free.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_malloc.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_ptr.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_reference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/device_vector.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/dispatch/is_trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/distance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/equal.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/execute_with_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/extrema.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/find.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/for_each.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/actor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/actor.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/argument.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/composite.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/arithmetic_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/assignment_operator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/bitwise_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/compound_assignment_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/logical_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/operator_adaptors.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/operators/relational_operators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/placeholder.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/functional/value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/generate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/get_iterator_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/host_vector.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/integer_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/internal_functional.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/minmax.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/mismatch.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/mpl/math.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/numeric_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/overlapped_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/pair.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/partition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/pointer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/pointer.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/range/head_flags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/raw_pointer_cast.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/raw_reference_cast.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reference_forward_declaration.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/remove.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/replace.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/reverse.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/scatter.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/seq.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/sequence.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/set_operations.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/static_assert.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/swap.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/swap_ranges.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tabulate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/temporary_array.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/temporary_array.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/transform.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/transform_reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/trivial_sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tuple.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tuple_meta_transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/tuple_transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/algorithm/intermediate_type_from_function_and_iterators.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/function_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/has_member_function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/has_nested_type.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/has_trivial_assign.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/is_call_possible.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/is_metafunction_defined.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/iterator/is_output_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/minimum_type.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/pointer_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/type_traits/result_of_adaptable_function.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/uninitialized_fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/unique.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/use_default.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/util/blocking.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/vector_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/detail/vector_base.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_malloc.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_malloc_allocator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_ptr.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_reference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/device_vector.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/distance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/functional.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/host_vector.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/constant_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/counting_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/any_assign.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/any_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/constant_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/counting_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/device_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/distance_from_result.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/host_system_tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/is_iterator_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/is_trivial_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_adaptor_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_category_to_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_category_to_traversal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_category_with_system_and_traversal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_facade_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_traits.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/iterator_traversal_tags.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/minimum_category.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/minimum_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/normal_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/permutation_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/reverse_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/reverse_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/tagged_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/transform_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/tuple_of_iterator_references.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/universal_categories.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/zip_iterator.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/detail/zip_iterator_base.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_adaptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_categories.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_facade.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/iterator_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/permutation_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/reverse_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/transform_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/iterator/zip_iterator.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/memory.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/pair.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/inner_product.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/logical.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/par.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/transform_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/uninitialized_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/detail/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cpp/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/agent_launcher.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/alignment.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/triple_chevron_launch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/core/util.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cross_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_radix_sort_downsweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_radix_sort_upsweep.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_reduce_by_key.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/agent_select_if.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/agent/single_pass_scan_operators.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_adjacent_difference.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_discontinuity.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_exchange.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_load.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_radix_rank.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_raking_layout.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/block_store.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_raking.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_raking_commutative_only.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_reduce_warp_reductions.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_scan_raking.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/block/specializations/block_scan_warp_scans.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_partition.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/device_select.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_radix_sort.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_reduce_by_key.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/device/dispatch/dispatch_select_if.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/grid/grid_even_share.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/grid/grid_mapping.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/grid/grid_queue.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/iterator/arg_index_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/iterator/cache_modified_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/iterator/constant_input_iterator.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_load.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_operators.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/thread/thread_store.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_arch.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_debug.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_device.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_macro.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_namespace.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_ptx.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/util_type.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_reduce_shfl.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_reduce_smem.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_scan_shfl.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/specializations/warp_scan_smem.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/warp_reduce.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/cub/warp/warp_scan.cuh"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/error.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/gather.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/guarded_cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/guarded_driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/inner_product.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/internal/copy_cross_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/internal/copy_device_to_device.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/par.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/par_to_seq.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/parallel_for.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/terminate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/transform_scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/uninitialized_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/detail/util.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/cuda/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/adl/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/bad_alloc.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/errno.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/error_category.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/error_code.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/error_condition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/adjacent_difference.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/advance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/advance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/copy_if.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/count.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/distance.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/distance.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/equal.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/extrema.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/find.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/generate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/memory.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/memory.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/mismatch.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/partition.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reduce_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/remove.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/replace.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/reverse.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scan_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/scatter.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/select_system.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sequence.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/set_operations.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/swap_ranges.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/tabulate.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/tag.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/temporary_buffer.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/transform_reduce.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/type_traits.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/uninitialized_fill.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/generic/unique_by_key.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/adjacent_difference.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/assign_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/binary_search.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy_backward.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/copy_if.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/count.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/equal.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/execution_policy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/extrema.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/find.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/for_each.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/general_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/generate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/get_value.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/insertion_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/iter_swap.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/malloc_and_free.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/merge.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/merge.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/mismatch.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/partition.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/reduce_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/remove.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/replace.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/reverse.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/scan.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/scan_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/scatter.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/sequence.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/set_operations.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_merge_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_merge_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_primitive_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_primitive_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_radix_sort.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/stable_radix_sort.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/swap_ranges.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/temporary_buffer.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/trivial_copy.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/sequential/unique_by_key.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/detail/system_error.inl"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/error_code.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system/system_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/system_error.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/tabulate.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/transform.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/transform_reduce.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/tuple.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/uninitialized_fill.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/unique.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/thrust/version.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/net/nmsBase.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/gpu/cuda.hu"
+ "D:/BJTU/Python/openpose-master/src/openpose/net/nmsBase.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ammintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cassert"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/emmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/immintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/mmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/nmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/pmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/setjmp.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/smmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/wmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/zmmintrin.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Debug.cmake
new file mode 100644
index 0000000..a2b9374
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/resizeAndMergeBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Release.cmake
new file mode 100644
index 0000000..a2b9374
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/resizeAndMergeBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..be115ee
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/net/resizeAndMergeBase.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend
new file mode 100644
index 0000000..78dd8d0
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.depend
@@ -0,0 +1,185 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/net/resizeAndMergeBase.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/gpu/cuda.hu"
+ "D:/BJTU/Python/openpose-master/src/openpose/net/resizeAndMergeBase.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/pose/Release/openpose_generated_renderPose.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/Release/openpose_generated_renderPose.cu.obj
new file mode 100644
index 0000000..52cc93f
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/Release/openpose_generated_renderPose.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Debug.cmake
new file mode 100644
index 0000000..7d308ca
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/pose/renderPose.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Release.cmake
new file mode 100644
index 0000000..7d308ca
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/pose/renderPose.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..a95a303
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/pose/renderPose.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend
new file mode 100644
index 0000000..9b470ea
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.depend
@@ -0,0 +1,191 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/gpu/cuda.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParameters.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/poseParametersRender.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/pose/renderPose.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/gpu/cuda.hu"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/utilities/render.hu"
+ "D:/BJTU/Python/openpose-master/src/openpose/pose/renderPose.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/map"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtree"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+)
+
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/Release/openpose_generated_pyramidalLK.cu.obj b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/Release/openpose_generated_pyramidalLK.cu.obj
new file mode 100644
index 0000000..f6abeb6
Binary files /dev/null and b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/Release/openpose_generated_pyramidalLK.cu.obj differ
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Debug.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Debug.cmake
new file mode 100644
index 0000000..b58a948
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Debug.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/tracking/pyramidalLK.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Release.cmake b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Release.cmake
new file mode 100644
index 0000000..b58a948
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Release.cmake
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/tracking/pyramidalLK.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/include;D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe/include2;C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;D:/BJTU/Python/openpose-master/3rdparty/windows/caffe3rdparty/include]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.cmake.pre-gen b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.cmake.pre-gen
new file mode 100644
index 0000000..6c982bd
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.cmake.pre-gen
@@ -0,0 +1,314 @@
+# James Bigler, NVIDIA Corp (nvidia.com - jbigler)
+#
+# Copyright (c) 2008 - 2009 NVIDIA Corporation. All rights reserved.
+#
+# This code is licensed under the MIT License. See the FindCUDA.cmake script
+# for the text of the license.
+
+# The MIT License
+#
+# License for the specific language governing rights and limitations under
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the "Software"),
+# to deal in the Software without restriction, including without limitation
+# the rights to use, copy, modify, merge, publish, distribute, sublicense,
+# and/or sell copies of the Software, and to permit persons to whom the
+# Software is furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+# DEALINGS IN THE SOFTWARE.
+
+
+##########################################################################
+# This file runs the nvcc commands to produce the desired output file along with
+# the dependency file needed by CMake to compute dependencies. In addition the
+# file checks the output of each command and if the command fails it deletes the
+# output files.
+
+# Input variables
+#
+# verbose:BOOL=<> OFF: Be as quiet as possible (default)
+# ON : Describe each step
+#
+# build_configuration:STRING=<> Typically one of Debug, MinSizeRel, Release, or
+# RelWithDebInfo, but it should match one of the
+# entries in CUDA_HOST_FLAGS. This is the build
+# configuration used when compiling the code. If
+# blank or unspecified Debug is assumed as this is
+# what CMake does.
+#
+# generated_file:STRING=<> File to generate. This argument must be passed in.
+#
+# generated_cubin_file:STRING=<> File to generate. This argument must be passed
+# in if build_cubin is true.
+
+cmake_policy(PUSH)
+cmake_policy(SET CMP0007 NEW)
+if(NOT generated_file)
+ message(FATAL_ERROR "You must specify generated_file on the command line")
+endif()
+
+# Set these up as variables to make reading the generated file easier
+set(CMAKE_COMMAND "D:/Program Files/cmake-3.18.0-rc3-win64-x64/bin/cmake.exe") # path
+set(source_file "D:/BJTU/Python/openpose-master/src/openpose/tracking/pyramidalLK.cu") # path
+set(NVCC_generated_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.NVCC-depend") # path
+set(cmake_dependency_file "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend") # path
+set(CUDA_make2cmake "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/make2cmake.cmake") # path
+set(CUDA_parse_cubin "D:/Program Files/cmake-3.18.0-rc3-win64-x64/share/cmake-3.18/Modules/FindCUDA/parse_cubin.cmake") # path
+set(build_cubin OFF) # bool
+set(CUDA_HOST_COMPILER "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)") # path
+# We won't actually use these variables for now, but we need to set this, in
+# order to force this file to be run again if it changes.
+set(generated_file_path "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)") # path
+set(generated_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj") # path
+set(generated_cubin_file_internal "D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj.cubin.txt") # path
+
+set(CUDA_NVCC_EXECUTABLE "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/nvcc.exe") # path
+set(CUDA_NVCC_FLAGS ;; ) # list
+# Build specific configuration flags
+set(CUDA_NVCC_FLAGS_RELEASE ; )
+set(CUDA_NVCC_FLAGS_DEBUG ; )
+set(CUDA_NVCC_FLAGS_MINSIZEREL ; )
+set(CUDA_NVCC_FLAGS_RELWITHDEBINFO ; )
+set(nvcc_flags -m64;-Dopenpose_EXPORTS) # list
+set(CUDA_NVCC_INCLUDE_DIRS [==[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include;$]==]) # list (needs to be in lua quotes to address backslashes)
+string(REPLACE "\\" "/" CUDA_NVCC_INCLUDE_DIRS "${CUDA_NVCC_INCLUDE_DIRS}")
+set(CUDA_NVCC_COMPILE_DEFINITIONS [==[$]==]) # list (needs to be in lua quotes see #16510 ).
+set(format_flag "-c") # string
+set(cuda_language_flag ) # list
+
+# Clean up list of include directories and add -I flags
+list(REMOVE_DUPLICATES CUDA_NVCC_INCLUDE_DIRS)
+set(CUDA_NVCC_INCLUDE_ARGS)
+foreach(dir ${CUDA_NVCC_INCLUDE_DIRS})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ list(APPEND CUDA_NVCC_INCLUDE_ARGS "-I${dir}")
+endforeach()
+
+# Clean up list of compile definitions, add -D flags, and append to nvcc_flags
+list(REMOVE_DUPLICATES CUDA_NVCC_COMPILE_DEFINITIONS)
+foreach(def ${CUDA_NVCC_COMPILE_DEFINITIONS})
+ list(APPEND nvcc_flags "-D${def}")
+endforeach()
+
+if(build_cubin AND NOT generated_cubin_file)
+ message(FATAL_ERROR "You must specify generated_cubin_file on the command line")
+endif()
+
+# This is the list of host compilation flags. It C or CXX should already have
+# been chosen by FindCUDA.cmake.
+set(CMAKE_HOST_FLAGS /W4 /EHsc /MP )
+set(CMAKE_HOST_FLAGS_RELEASE /MD /Ox /DNDEBUG /Ot /Oi /Gy /Z7)
+set(CMAKE_HOST_FLAGS_DEBUG /MDd /Zi /Ob0 /Od /RTC1)
+set(CMAKE_HOST_FLAGS_MINSIZEREL /MD /O1 /Ob1 /DNDEBUG)
+set(CMAKE_HOST_FLAGS_RELWITHDEBINFO /MD /Zi /O2 /Ob1 /DNDEBUG)
+
+# Take the compiler flags and package them up to be sent to the compiler via -Xcompiler
+set(nvcc_host_compiler_flags "")
+# If we weren't given a build_configuration, use Debug.
+if(NOT build_configuration)
+ set(build_configuration Debug)
+endif()
+string(TOUPPER "${build_configuration}" build_configuration)
+#message("CUDA_NVCC_HOST_COMPILER_FLAGS = ${CUDA_NVCC_HOST_COMPILER_FLAGS}")
+foreach(flag ${CMAKE_HOST_FLAGS} ${CMAKE_HOST_FLAGS_${build_configuration}})
+ # Extra quotes are added around each flag to help nvcc parse out flags with spaces.
+ string(APPEND nvcc_host_compiler_flags ",\"${flag}\"")
+endforeach()
+if (nvcc_host_compiler_flags)
+ set(nvcc_host_compiler_flags "-Xcompiler" ${nvcc_host_compiler_flags})
+endif()
+#message("nvcc_host_compiler_flags = \"${nvcc_host_compiler_flags}\"")
+# Add the build specific configuration flags
+list(APPEND CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS_${build_configuration}})
+
+# Any -ccbin existing in CUDA_NVCC_FLAGS gets highest priority
+list( FIND CUDA_NVCC_FLAGS "-ccbin" ccbin_found0 )
+list( FIND CUDA_NVCC_FLAGS "--compiler-bindir" ccbin_found1 )
+if( ccbin_found0 LESS 0 AND ccbin_found1 LESS 0 AND CUDA_HOST_COMPILER )
+ if (CUDA_HOST_COMPILER STREQUAL "$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" AND DEFINED CCBIN)
+ set(CCBIN -ccbin "${CCBIN}")
+ else()
+ set(CCBIN -ccbin "${CUDA_HOST_COMPILER}")
+ endif()
+endif()
+
+# cuda_execute_process - Executes a command with optional command echo and status message.
+#
+# status - Status message to print if verbose is true
+# command - COMMAND argument from the usual execute_process argument structure
+# ARGN - Remaining arguments are the command with arguments
+#
+# CUDA_result - return value from running the command
+#
+# Make this a macro instead of a function, so that things like RESULT_VARIABLE
+# and other return variables are present after executing the process.
+macro(cuda_execute_process status command)
+ set(_command ${command})
+ if(NOT "x${_command}" STREQUAL "xCOMMAND")
+ message(FATAL_ERROR "Malformed call to cuda_execute_process. Missing COMMAND as second argument. (command = ${command})")
+ endif()
+ if(verbose)
+ execute_process(COMMAND "${CMAKE_COMMAND}" -E echo -- ${status})
+ # Now we need to build up our command string. We are accounting for quotes
+ # and spaces, anything else is left up to the user to fix if they want to
+ # copy and paste a runnable command line.
+ set(cuda_execute_process_string)
+ foreach(arg ${ARGN})
+ # If there are quotes, excape them, so they come through.
+ string(REPLACE "\"" "\\\"" arg ${arg})
+ # Args with spaces need quotes around them to get them to be parsed as a single argument.
+ if(arg MATCHES " ")
+ list(APPEND cuda_execute_process_string "\"${arg}\"")
+ else()
+ list(APPEND cuda_execute_process_string ${arg})
+ endif()
+ endforeach()
+ # Echo the command
+ execute_process(COMMAND ${CMAKE_COMMAND} -E echo ${cuda_execute_process_string})
+ endif()
+ # Run the command
+ execute_process(COMMAND ${ARGN} RESULT_VARIABLE CUDA_result )
+endmacro()
+
+# Delete the target file
+cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+
+# For CUDA 2.3 and below, -G -M doesn't work, so remove the -G flag
+# for dependency generation and hope for the best.
+set(depends_CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS}")
+set(CUDA_VERSION 10.0)
+if(CUDA_VERSION VERSION_LESS "3.0")
+ # Note that this will remove all occurrences of -G.
+ list(REMOVE_ITEM depends_CUDA_NVCC_FLAGS "-G")
+endif()
+
+# nvcc doesn't define __CUDACC__ for some reason when generating dependency files. This
+# can cause incorrect dependencies when #including files based on this macro which is
+# defined in the generating passes of nvcc invocation. We will go ahead and manually
+# define this for now until a future version fixes this bug.
+set(CUDACC_DEFINE -D__CUDACC__)
+
+# Generate the dependency file
+cuda_execute_process(
+ "Generating dependency file: ${NVCC_generated_dependency_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ -M
+ ${CUDACC_DEFINE}
+ "${source_file}"
+ -o "${NVCC_generated_dependency_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${depends_CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the cmake readable dependency file to a temp file. Don't put the
+# quotes just around the filenames for the input_file and output_file variables.
+# CMake will pass the quotes through and not be able to find the file.
+cuda_execute_process(
+ "Generating temporary cmake readable file: ${cmake_dependency_file}.tmp"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:FILEPATH=${NVCC_generated_dependency_file}"
+ -D "output_file:FILEPATH=${cmake_dependency_file}.tmp"
+ -D "verbose=${verbose}"
+ -P "${CUDA_make2cmake}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Copy the file if it is different
+cuda_execute_process(
+ "Copy if different ${cmake_dependency_file}.tmp to ${cmake_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E copy_if_different "${cmake_dependency_file}.tmp" "${cmake_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Delete the temporary file
+cuda_execute_process(
+ "Removing ${cmake_dependency_file}.tmp and ${NVCC_generated_dependency_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${cmake_dependency_file}.tmp" "${NVCC_generated_dependency_file}"
+ )
+
+if(CUDA_result)
+ message(FATAL_ERROR "Error generating ${generated_file}")
+endif()
+
+# Generate the code
+cuda_execute_process(
+ "Generating ${generated_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${cuda_language_flag}
+ ${format_flag} -o "${generated_file}"
+ ${CCBIN}
+ ${nvcc_flags}
+ ${nvcc_host_compiler_flags}
+ ${CUDA_NVCC_FLAGS}
+ -DNVCC
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+if(CUDA_result)
+ # Since nvcc can sometimes leave half done files make sure that we delete the output file.
+ cuda_execute_process(
+ "Removing ${generated_file}"
+ COMMAND "${CMAKE_COMMAND}" -E rm -f "${generated_file}"
+ )
+ message(FATAL_ERROR "Error generating file ${generated_file}")
+else()
+ if(verbose)
+ message("Generated ${generated_file} successfully.")
+ endif()
+endif()
+
+# Cubin resource report commands.
+if( build_cubin )
+ # Run with -cubin to produce resource usage report.
+ cuda_execute_process(
+ "Generating ${generated_cubin_file}"
+ COMMAND "${CUDA_NVCC_EXECUTABLE}"
+ "${source_file}"
+ ${CUDA_NVCC_FLAGS}
+ ${nvcc_flags}
+ ${CCBIN}
+ ${nvcc_host_compiler_flags}
+ -DNVCC
+ -cubin
+ -o "${generated_cubin_file}"
+ ${CUDA_NVCC_INCLUDE_ARGS}
+ )
+
+ # Execute the parser script.
+ cuda_execute_process(
+ "Executing the parser script"
+ COMMAND "${CMAKE_COMMAND}"
+ -D "input_file:STRING=${generated_cubin_file}"
+ -P "${CUDA_parse_cubin}"
+ )
+
+endif()
+
+cmake_policy(POP)
diff --git a/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend
new file mode 100644
index 0000000..fc761d5
--- /dev/null
+++ b/Lib/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.depend
@@ -0,0 +1,225 @@
+# Generated by: make2cmake.cmake
+SET(CUDA_NVCC_DEPEND
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/assert.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memcpy_s.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_memory.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_search.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_stdio_config.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_terminate.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wconio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wdirect.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wprocess.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wstring.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/corecrt_wtime.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/crtdbg.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/ctype.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/errno.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/float.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/locale.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/malloc.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/math.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/share.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stddef.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdio.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/stdlib.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/string.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/stat.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/sys/types.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/time.h"
+ "C:/Program Files (x86)/Windows Kits/10/Include/10.0.18362.0/ucrt/wchar.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/builtin_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/channel_descriptor.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/common_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_double_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/device_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_config.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/host_defines.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/math_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/crt/sm_70_rt.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_device_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_runtime_api.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/cuda_texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_launch_parameters.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/device_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/driver_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/library_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_20_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_30_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_32_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_35_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_60_atomic_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/sm_61_intrinsics.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/surface_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_fetch_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_indirect_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/texture_types.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.h"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_functions.hpp"
+ "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/include/vector_types.h"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/base.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/bufferpool.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/check.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/core.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/cv_cpu_dispatch.h"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/cvdef.h"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/cvstd.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/cvstd.inl.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/cvstd_wrapper.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/fast_math.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/hal/interface.h"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/mat.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/mat.inl.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/matx.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/neon_utils.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/operations.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/optim.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/ovx.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/persistence.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/saturate.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/traits.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/types.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/utility.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/version.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/core/vsx_utils.hpp"
+ "D:/BJTU/Python/openpose-master/3rdparty/windows/opencv/include/opencv2/opencv_modules.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/array.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/arrayCpuGpu.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/common.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/datum.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/macros.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/matrix.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/point.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/rectangle.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/core/string.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/enumClasses.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/errorAndLog.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose/utilities/profiler.hpp"
+ "D:/BJTU/Python/openpose-master/include/openpose_private/tracking/pyramidalLK.hpp"
+ "D:/BJTU/Python/openpose-master/src/openpose/tracking/pyramidalLK.cu"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/algorithm"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ammintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/array"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cctype"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cerrno"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cfloat"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/chrono"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/climits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cmath"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/complex"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/concurrencysal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/crtdefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdarg"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdint"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstdlib"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/cwchar"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/eh.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/emmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/exception"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/functional"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/immintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/initializer_list"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/intrin0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ios"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iosfwd"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/istream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/iterator"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/limits.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/memory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/mmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/mutex"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/new"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/nmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ostream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/pmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ratio"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sal.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/setjmp.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/smmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/sstream"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdarg.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdexcept"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/stdint.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/streambuf"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/string"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/system_error"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthrcommon.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xthreads.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtime"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thr/xtimec.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/thread"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/tuple"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/type_traits"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/typeinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/use_ansi.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/utility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vadefs.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_exception.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_new_debug.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_string.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vcruntime_typeinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/vector"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/wmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xatomic0.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xcall_once.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xerrc.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xfacet"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xiosbase"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xkeycheck.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocale"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocinfo.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xlocnum"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmemory0"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xmmintrin.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstddef"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xstring_insert.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtgmath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xtr1common"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/xutility"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/ymath.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/yvals_core.h"
+ "D:/Program Files/VS/2017/VC/Tools/MSVC/14.16.27023/include/zmmintrin.h"
+)
+
diff --git a/Lib/src/openpose/INSTALL.vcxproj b/Lib/src/openpose/INSTALL.vcxproj
new file mode 100644
index 0000000..691ab67
--- /dev/null
+++ b/Lib/src/openpose/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/INSTALL.vcxproj.filters b/Lib/src/openpose/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..fd16124
--- /dev/null
+++ b/Lib/src/openpose/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/Release/openpose.exp b/Lib/src/openpose/Release/openpose.exp
new file mode 100644
index 0000000..4d31786
Binary files /dev/null and b/Lib/src/openpose/Release/openpose.exp differ
diff --git a/Lib/src/openpose/Release/openpose.lib b/Lib/src/openpose/Release/openpose.lib
new file mode 100644
index 0000000..c442868
Binary files /dev/null and b/Lib/src/openpose/Release/openpose.lib differ
diff --git a/Lib/src/openpose/calibration/CMakeFiles/generate.stamp b/Lib/src/openpose/calibration/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/calibration/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/calibration/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/calibration/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..3403eb1
--- /dev/null
+++ b/Lib/src/openpose/calibration/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/calibration/CMakeLists.txt
diff --git a/Lib/src/openpose/calibration/INSTALL.vcxproj b/Lib/src/openpose/calibration/INSTALL.vcxproj
new file mode 100644
index 0000000..6098685
--- /dev/null
+++ b/Lib/src/openpose/calibration/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\calibration\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\calibration\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/calibration/INSTALL.vcxproj.filters b/Lib/src/openpose/calibration/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..59153e6
--- /dev/null
+++ b/Lib/src/openpose/calibration/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/calibration/cmake_install.cmake b/Lib/src/openpose/calibration/cmake_install.cmake
new file mode 100644
index 0000000..3ddb1e1
--- /dev/null
+++ b/Lib/src/openpose/calibration/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/calibration
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/cmake_install.cmake b/Lib/src/openpose/cmake_install.cmake
new file mode 100644
index 0000000..aa84791
--- /dev/null
+++ b/Lib/src/openpose/cmake_install.cmake
@@ -0,0 +1,55 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
+if(NOT CMAKE_INSTALL_LOCAL_ONLY)
+ # Include the install script for each subdirectory.
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/3d/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/calibration/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/core/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/face/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/filestream/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/gpu/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/gui/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/hand/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/net/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/pose/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/producer/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/thread/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/tracking/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/unity/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/utilities/cmake_install.cmake")
+ include("D:/BJTU/Python/openpose-master/build-2017/src/openpose/wrapper/cmake_install.cmake")
+
+endif()
+
diff --git a/Lib/src/openpose/core/CMakeFiles/generate.stamp b/Lib/src/openpose/core/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/core/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/core/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/core/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..e307a1b
--- /dev/null
+++ b/Lib/src/openpose/core/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/core/CMakeLists.txt
diff --git a/Lib/src/openpose/core/INSTALL.vcxproj b/Lib/src/openpose/core/INSTALL.vcxproj
new file mode 100644
index 0000000..6dedff5
--- /dev/null
+++ b/Lib/src/openpose/core/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\core\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\core\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/core/INSTALL.vcxproj.filters b/Lib/src/openpose/core/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..50ce7e7
--- /dev/null
+++ b/Lib/src/openpose/core/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/core/cmake_install.cmake b/Lib/src/openpose/core/cmake_install.cmake
new file mode 100644
index 0000000..657b659
--- /dev/null
+++ b/Lib/src/openpose/core/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/core
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/face/CMakeFiles/generate.stamp b/Lib/src/openpose/face/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/face/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/face/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/face/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..4c41867
--- /dev/null
+++ b/Lib/src/openpose/face/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/face/CMakeLists.txt
diff --git a/Lib/src/openpose/face/INSTALL.vcxproj b/Lib/src/openpose/face/INSTALL.vcxproj
new file mode 100644
index 0000000..4dc2b6a
--- /dev/null
+++ b/Lib/src/openpose/face/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\face\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\face\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/face/INSTALL.vcxproj.filters b/Lib/src/openpose/face/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..787713a
--- /dev/null
+++ b/Lib/src/openpose/face/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/face/cmake_install.cmake b/Lib/src/openpose/face/cmake_install.cmake
new file mode 100644
index 0000000..b275847
--- /dev/null
+++ b/Lib/src/openpose/face/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/face
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/filestream/CMakeFiles/generate.stamp b/Lib/src/openpose/filestream/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/filestream/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/filestream/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/filestream/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..0ac7353
--- /dev/null
+++ b/Lib/src/openpose/filestream/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/filestream/CMakeLists.txt
diff --git a/Lib/src/openpose/filestream/INSTALL.vcxproj b/Lib/src/openpose/filestream/INSTALL.vcxproj
new file mode 100644
index 0000000..8850307
--- /dev/null
+++ b/Lib/src/openpose/filestream/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\filestream\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\filestream\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/filestream/INSTALL.vcxproj.filters b/Lib/src/openpose/filestream/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..6ae361b
--- /dev/null
+++ b/Lib/src/openpose/filestream/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/filestream/cmake_install.cmake b/Lib/src/openpose/filestream/cmake_install.cmake
new file mode 100644
index 0000000..c421966
--- /dev/null
+++ b/Lib/src/openpose/filestream/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/filestream
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/gpu/CMakeFiles/generate.stamp b/Lib/src/openpose/gpu/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/gpu/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/gpu/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/gpu/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..77ebe1a
--- /dev/null
+++ b/Lib/src/openpose/gpu/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/gpu/CMakeLists.txt
diff --git a/Lib/src/openpose/gpu/INSTALL.vcxproj b/Lib/src/openpose/gpu/INSTALL.vcxproj
new file mode 100644
index 0000000..d3a3386
--- /dev/null
+++ b/Lib/src/openpose/gpu/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\gpu\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\gpu\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/gpu/INSTALL.vcxproj.filters b/Lib/src/openpose/gpu/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..05873d4
--- /dev/null
+++ b/Lib/src/openpose/gpu/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/gpu/cmake_install.cmake b/Lib/src/openpose/gpu/cmake_install.cmake
new file mode 100644
index 0000000..493dbdf
--- /dev/null
+++ b/Lib/src/openpose/gpu/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/gpu
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/gui/CMakeFiles/generate.stamp b/Lib/src/openpose/gui/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/gui/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/gui/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/gui/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..fda1fd8
--- /dev/null
+++ b/Lib/src/openpose/gui/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/gui/CMakeLists.txt
diff --git a/Lib/src/openpose/gui/INSTALL.vcxproj b/Lib/src/openpose/gui/INSTALL.vcxproj
new file mode 100644
index 0000000..d0382a0
--- /dev/null
+++ b/Lib/src/openpose/gui/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\gui\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\gui\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/gui/INSTALL.vcxproj.filters b/Lib/src/openpose/gui/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..9075911
--- /dev/null
+++ b/Lib/src/openpose/gui/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/gui/cmake_install.cmake b/Lib/src/openpose/gui/cmake_install.cmake
new file mode 100644
index 0000000..ad67c0e
--- /dev/null
+++ b/Lib/src/openpose/gui/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/gui
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/hand/CMakeFiles/generate.stamp b/Lib/src/openpose/hand/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/hand/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/hand/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/hand/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..6a3ff3e
--- /dev/null
+++ b/Lib/src/openpose/hand/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/hand/CMakeLists.txt
diff --git a/Lib/src/openpose/hand/INSTALL.vcxproj b/Lib/src/openpose/hand/INSTALL.vcxproj
new file mode 100644
index 0000000..80e8468
--- /dev/null
+++ b/Lib/src/openpose/hand/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\hand\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\hand\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/hand/INSTALL.vcxproj.filters b/Lib/src/openpose/hand/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..98e7740
--- /dev/null
+++ b/Lib/src/openpose/hand/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/hand/cmake_install.cmake b/Lib/src/openpose/hand/cmake_install.cmake
new file mode 100644
index 0000000..8b49342
--- /dev/null
+++ b/Lib/src/openpose/hand/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/hand
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/net/CMakeFiles/generate.stamp b/Lib/src/openpose/net/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/net/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/net/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/net/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..e6c0d4c
--- /dev/null
+++ b/Lib/src/openpose/net/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/net/CMakeLists.txt
diff --git a/Lib/src/openpose/net/INSTALL.vcxproj b/Lib/src/openpose/net/INSTALL.vcxproj
new file mode 100644
index 0000000..4b31216
--- /dev/null
+++ b/Lib/src/openpose/net/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\net\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\net\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/net/INSTALL.vcxproj.filters b/Lib/src/openpose/net/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..45c8382
--- /dev/null
+++ b/Lib/src/openpose/net/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/net/cmake_install.cmake b/Lib/src/openpose/net/cmake_install.cmake
new file mode 100644
index 0000000..87aa911
--- /dev/null
+++ b/Lib/src/openpose/net/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/net
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/openpose.dir/Release/3d/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/3d/defineTemplates.cpp.obj
new file mode 100644
index 0000000..75ffd85
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/3d/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/array.obj b/Lib/src/openpose/openpose.dir/Release/array.obj
new file mode 100644
index 0000000..29654c3
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/array.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/arrayCpuGpu.obj b/Lib/src/openpose/openpose.dir/Release/arrayCpuGpu.obj
new file mode 100644
index 0000000..1f3ecbe
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/arrayCpuGpu.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorBase.obj b/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorBase.obj
new file mode 100644
index 0000000..80ef5bc
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorBase.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorBaseCL.obj b/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorBaseCL.obj
new file mode 100644
index 0000000..d9ccf85
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorBaseCL.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorCaffe.obj b/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorCaffe.obj
new file mode 100644
index 0000000..2cfc549
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/bodyPartConnectorCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/bvhSaver.obj b/Lib/src/openpose/openpose.dir/Release/bvhSaver.obj
new file mode 100644
index 0000000..42adb9c
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/bvhSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/cameraParameterEstimation.obj b/Lib/src/openpose/openpose.dir/Release/cameraParameterEstimation.obj
new file mode 100644
index 0000000..99a8515
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/cameraParameterEstimation.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/cameraParameterReader.obj b/Lib/src/openpose/openpose.dir/Release/cameraParameterReader.obj
new file mode 100644
index 0000000..5fbbf5c
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/cameraParameterReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/cocoJsonSaver.obj b/Lib/src/openpose/openpose.dir/Release/cocoJsonSaver.obj
new file mode 100644
index 0000000..a9718e3
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/cocoJsonSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/core/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/core/defineTemplates.cpp.obj
new file mode 100644
index 0000000..2d020df
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/core/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/core/string.cpp.obj b/Lib/src/openpose/openpose.dir/Release/core/string.cpp.obj
new file mode 100644
index 0000000..a8dc117
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/core/string.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/cuda.obj b/Lib/src/openpose/openpose.dir/Release/cuda.obj
new file mode 100644
index 0000000..1de8132
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/cuda.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/cvMatToOpInput.obj b/Lib/src/openpose/openpose.dir/Release/cvMatToOpInput.obj
new file mode 100644
index 0000000..51f8330
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/cvMatToOpInput.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/cvMatToOpOutput.obj b/Lib/src/openpose/openpose.dir/Release/cvMatToOpOutput.obj
new file mode 100644
index 0000000..f35bc2f
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/cvMatToOpOutput.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/datum.obj b/Lib/src/openpose/openpose.dir/Release/datum.obj
new file mode 100644
index 0000000..ee4d1c4
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/datum.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/datumProducer.obj b/Lib/src/openpose/openpose.dir/Release/datumProducer.obj
new file mode 100644
index 0000000..d6cd3c2
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/datumProducer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/errorAndLog.obj b/Lib/src/openpose/openpose.dir/Release/errorAndLog.obj
new file mode 100644
index 0000000..8ad088a
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/errorAndLog.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/face/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/face/defineTemplates.cpp.obj
new file mode 100644
index 0000000..578d915
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/face/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceCpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/faceCpuRenderer.obj
new file mode 100644
index 0000000..e3e8d7b
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceCpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceDetector.obj b/Lib/src/openpose/openpose.dir/Release/faceDetector.obj
new file mode 100644
index 0000000..230bb3c
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceDetector.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceDetectorOpenCV.obj b/Lib/src/openpose/openpose.dir/Release/faceDetectorOpenCV.obj
new file mode 100644
index 0000000..050cba6
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceDetectorOpenCV.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceExtractorCaffe.obj b/Lib/src/openpose/openpose.dir/Release/faceExtractorCaffe.obj
new file mode 100644
index 0000000..d407992
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceExtractorCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceExtractorNet.obj b/Lib/src/openpose/openpose.dir/Release/faceExtractorNet.obj
new file mode 100644
index 0000000..b68fd65
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceExtractorNet.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceGpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/faceGpuRenderer.obj
new file mode 100644
index 0000000..ffeb176
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceGpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/faceRenderer.obj b/Lib/src/openpose/openpose.dir/Release/faceRenderer.obj
new file mode 100644
index 0000000..58c87fa
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/faceRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/fileSaver.obj b/Lib/src/openpose/openpose.dir/Release/fileSaver.obj
new file mode 100644
index 0000000..fe95431
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/fileSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/fileStream.obj b/Lib/src/openpose/openpose.dir/Release/fileStream.obj
new file mode 100644
index 0000000..2d1568f
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/fileStream.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/fileSystem.obj b/Lib/src/openpose/openpose.dir/Release/fileSystem.obj
new file mode 100644
index 0000000..dd5a269
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/fileSystem.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/filestream/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/filestream/defineTemplates.cpp.obj
new file mode 100644
index 0000000..a19e62f
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/filestream/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/flagsToOpenPose.obj b/Lib/src/openpose/openpose.dir/Release/flagsToOpenPose.obj
new file mode 100644
index 0000000..e4ed4a5
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/flagsToOpenPose.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/flirReader.obj b/Lib/src/openpose/openpose.dir/Release/flirReader.obj
new file mode 100644
index 0000000..6a0fec2
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/flirReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/frameDisplayer.obj b/Lib/src/openpose/openpose.dir/Release/frameDisplayer.obj
new file mode 100644
index 0000000..89ea9da
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/frameDisplayer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/gpu.obj b/Lib/src/openpose/openpose.dir/Release/gpu.obj
new file mode 100644
index 0000000..820b358
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/gpu.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/gpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/gpuRenderer.obj
new file mode 100644
index 0000000..b234f04
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/gpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/gridPatternFunctions.obj b/Lib/src/openpose/openpose.dir/Release/gridPatternFunctions.obj
new file mode 100644
index 0000000..c4368c3
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/gridPatternFunctions.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/gui.obj b/Lib/src/openpose/openpose.dir/Release/gui.obj
new file mode 100644
index 0000000..202b1df
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/gui.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/gui/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/gui/defineTemplates.cpp.obj
new file mode 100644
index 0000000..5bea719
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/gui/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/gui3D.obj b/Lib/src/openpose/openpose.dir/Release/gui3D.obj
new file mode 100644
index 0000000..b38cba0
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/gui3D.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/guiAdam.obj b/Lib/src/openpose/openpose.dir/Release/guiAdam.obj
new file mode 100644
index 0000000..cfb6480
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/guiAdam.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/guiInfoAdder.obj b/Lib/src/openpose/openpose.dir/Release/guiInfoAdder.obj
new file mode 100644
index 0000000..474a28a
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/guiInfoAdder.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/hand/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/hand/defineTemplates.cpp.obj
new file mode 100644
index 0000000..f4cca85
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/hand/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handCpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/handCpuRenderer.obj
new file mode 100644
index 0000000..b2a07de
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handCpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handDetector.obj b/Lib/src/openpose/openpose.dir/Release/handDetector.obj
new file mode 100644
index 0000000..d35df44
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handDetector.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handDetectorFromTxt.obj b/Lib/src/openpose/openpose.dir/Release/handDetectorFromTxt.obj
new file mode 100644
index 0000000..685e71e
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handDetectorFromTxt.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handExtractorCaffe.obj b/Lib/src/openpose/openpose.dir/Release/handExtractorCaffe.obj
new file mode 100644
index 0000000..c441014
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handExtractorCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handExtractorNet.obj b/Lib/src/openpose/openpose.dir/Release/handExtractorNet.obj
new file mode 100644
index 0000000..c13e633
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handExtractorNet.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handGpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/handGpuRenderer.obj
new file mode 100644
index 0000000..c23ec80
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handGpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/handRenderer.obj b/Lib/src/openpose/openpose.dir/Release/handRenderer.obj
new file mode 100644
index 0000000..be61a49
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/handRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/heatMapSaver.obj b/Lib/src/openpose/openpose.dir/Release/heatMapSaver.obj
new file mode 100644
index 0000000..166190b
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/heatMapSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/imageDirectoryReader.obj b/Lib/src/openpose/openpose.dir/Release/imageDirectoryReader.obj
new file mode 100644
index 0000000..19874b7
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/imageDirectoryReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/imageSaver.obj b/Lib/src/openpose/openpose.dir/Release/imageSaver.obj
new file mode 100644
index 0000000..590af76
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/imageSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/ipCameraReader.obj b/Lib/src/openpose/openpose.dir/Release/ipCameraReader.obj
new file mode 100644
index 0000000..c214bd0
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/ipCameraReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/jointAngleEstimation.obj b/Lib/src/openpose/openpose.dir/Release/jointAngleEstimation.obj
new file mode 100644
index 0000000..a8bb230
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/jointAngleEstimation.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/jsonOfstream.obj b/Lib/src/openpose/openpose.dir/Release/jsonOfstream.obj
new file mode 100644
index 0000000..d5f79ec
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/jsonOfstream.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/keepTopNPeople.obj b/Lib/src/openpose/openpose.dir/Release/keepTopNPeople.obj
new file mode 100644
index 0000000..4aedf2c
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/keepTopNPeople.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/keypoint.obj b/Lib/src/openpose/openpose.dir/Release/keypoint.obj
new file mode 100644
index 0000000..84b0641
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/keypoint.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/keypointSaver.obj b/Lib/src/openpose/openpose.dir/Release/keypointSaver.obj
new file mode 100644
index 0000000..fb42f6d
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/keypointSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/keypointScaler.obj b/Lib/src/openpose/openpose.dir/Release/keypointScaler.obj
new file mode 100644
index 0000000..45b0590
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/keypointScaler.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/matrix.obj b/Lib/src/openpose/openpose.dir/Release/matrix.obj
new file mode 100644
index 0000000..43e94ca
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/matrix.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/maximumBase.obj b/Lib/src/openpose/openpose.dir/Release/maximumBase.obj
new file mode 100644
index 0000000..61d63b5
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/maximumBase.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/maximumCaffe.obj b/Lib/src/openpose/openpose.dir/Release/maximumCaffe.obj
new file mode 100644
index 0000000..cad2dfb
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/maximumCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/netCaffe.obj b/Lib/src/openpose/openpose.dir/Release/netCaffe.obj
new file mode 100644
index 0000000..590715b
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/netCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/netOpenCv.obj b/Lib/src/openpose/openpose.dir/Release/netOpenCv.obj
new file mode 100644
index 0000000..4088229
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/netOpenCv.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/nmsBase.obj b/Lib/src/openpose/openpose.dir/Release/nmsBase.obj
new file mode 100644
index 0000000..2e92846
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/nmsBase.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/nmsBaseCL.obj b/Lib/src/openpose/openpose.dir/Release/nmsBaseCL.obj
new file mode 100644
index 0000000..e0c9f48
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/nmsBaseCL.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/nmsCaffe.obj b/Lib/src/openpose/openpose.dir/Release/nmsCaffe.obj
new file mode 100644
index 0000000..4d17678
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/nmsCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/opOutputToCvMat.obj b/Lib/src/openpose/openpose.dir/Release/opOutputToCvMat.obj
new file mode 100644
index 0000000..3c3f215
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/opOutputToCvMat.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openCv.obj b/Lib/src/openpose/openpose.dir/Release/openCv.obj
new file mode 100644
index 0000000..b794a7a
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openCv.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openCvPrivate.obj b/Lib/src/openpose/openpose.dir/Release/openCvPrivate.obj
new file mode 100644
index 0000000..efae252
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openCvPrivate.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/opencl.obj b/Lib/src/openpose/openpose.dir/Release/opencl.obj
new file mode 100644
index 0000000..769d021
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/opencl.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.log b/Lib/src/openpose/openpose.dir/Release/openpose.log
new file mode 100644
index 0000000..284bb7b
--- /dev/null
+++ b/Lib/src/openpose/openpose.dir/Release/openpose.log
@@ -0,0 +1,2006 @@
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/face/Release/openpose_generated_renderFace.cu.obj
+ renderFace.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ renderFace.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/gpu/Release/openpose_generated_cuda.cu.obj
+ cuda.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ cuda.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/hand/Release/openpose_generated_renderHand.cu.obj
+ renderHand.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ renderHand.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_bodyPartConnectorBase.cu.obj
+ bodyPartConnectorBase.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ bodyPartConnectorBase.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_maximumBase.cu.obj
+ maximumBase.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ maximumBase.cu
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/iterator/detail/iterator_category_to_traversal.h(36): warning C4515: 鈥渄etail鈥? 鍛藉悕绌洪棿浣跨敤鏈韩
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(87): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<2>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(93): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<4>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(99): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<8>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(105): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<16>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(111): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<32>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(117): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<64>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(123): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<128>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(129): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<256>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(135): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<512>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(141): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<1024>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(147): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<2048>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(153): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<4096>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(159): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<8192>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_scan.cuh(176): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_scan.cuh(177): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentScan::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_scan.cuh(466): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentScan" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(269): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(270): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan::ScanAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(271): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan::ScanAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(546): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan::ScanAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_select_if.cuh(203): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_select_if.cuh(213): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentSelectIf::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_select_if.cuh(697): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentSelectIf" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(135): warning C4324: 鈥渢hrust::detail::aligned_type<2>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(136): warning C4324: 鈥渢hrust::detail::aligned_type<4>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(137): warning C4324: 鈥渢hrust::detail::aligned_type<8>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(138): warning C4324: 鈥渢hrust::detail::aligned_type<16>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(139): warning C4324: 鈥渢hrust::detail::aligned_type<32>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(140): warning C4324: 鈥渢hrust::detail::aligned_type<64>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(141): warning C4324: 鈥渢hrust::detail::aligned_type<128>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(201): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(207): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__copy_if::CopyIfAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(208): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__copy_if::CopyIfAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(571): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__copy_if::CopyIfAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\block\specializations/block_reduce_raking_commutative_only.cuh(102): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\block\specializations/block_reduce_raking_commutative_only.cuh(104): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::BlockReduceRakingCommutativeOnly::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\block\specializations/block_reduce_raking_commutative_only.cuh(195): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::BlockReduceRakingCommutativeOnly" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_reduce_by_key.cuh(234): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_reduce_by_key.cuh(244): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentReduceByKey::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_reduce_by_key.cuh(542): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentReduceByKey" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(246): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(253): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__reduce_by_key::ReduceByKeyAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(254): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__reduce_by_key::ReduceByKeyAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(835): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__reduce_by_key::ReduceByKeyAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_radix_sort_downsweep.cuh(190): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_radix_sort_downsweep.cuh(195): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentRadixSortDownsweep::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_radix_sort_downsweep.cuh(783): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentRadixSortDownsweep" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(174): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(180): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__partition::PartitionAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(181): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__partition::PartitionAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(576): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__partition::PartitionAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(227): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(232): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique::UniqueAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(233): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique::UniqueAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(515): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique::UniqueAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(238): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(245): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique_by_key::UniqueByKeyAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(246): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique_by_key::UniqueByKeyAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(588): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique_by_key::UniqueByKeyAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(367): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(394): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__set_operations::SetOpAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(395): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__set_operations::SetOpAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(827): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__set_operations::SetOpAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(393): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(226): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(232): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan_by_key::ScanByKeyAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(233): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan_by_key::ScanByKeyAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(566): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan_by_key::ScanByKeyAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\agent\../grid/grid_even_share.cuh(123): warning C4458: 鈥渘um_items鈥濈殑澹版槑闅愯棌浜嗙被鎴愬憳
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\agent\../grid/grid_even_share.cuh(87): note: 鍙傝鈥渢hrust::cuda_cub::cub::GridEvenShare::num_items鈥濈殑澹版槑
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\agent\../grid/grid_even_share.cuh(126): note: 缂栬瘧 绫?妯℃澘 鎴愬憳鍑芥暟 "void thrust::cuda_cub::cub::GridEvenShare::DispatchInit(OffsetT,int,int)" 鏃?
+ with
+ [
+ OffsetT=int
+ ]
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/extrema.h(219): note: 鍙傝瀵规鍦ㄧ紪璇戠殑鍑芥暟 妯℃澘 瀹炰緥鍖栤€渧oid thrust::cuda_cub::cub::GridEvenShare::DispatchInit(OffsetT,int,int)鈥濈殑寮曠敤
+ with
+ [
+ OffsetT=int
+ ]
+ c:\users\tq\appdata\local\temp\tmpxft_000031b4_00000000-9_maximumBase.cudafe1.stub.c(148): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::GridEvenShare" 鐨勫紩鐢?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_nmsBase.cu.obj
+ nmsBase.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ nmsBase.cu
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/iterator/detail/iterator_category_to_traversal.h(36): warning C4515: 鈥渄etail鈥? 鍛藉悕绌洪棿浣跨敤鏈韩
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(87): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<2>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(93): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<4>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(99): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<8>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(105): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<16>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(111): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<32>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(117): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<64>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(123): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<128>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(129): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<256>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(135): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<512>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(141): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<1024>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(147): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<2048>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(153): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<4096>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/core/alignment.h(159): warning C4324: 鈥渢hrust::cuda_cub::aligned_type<8192>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_scan.cuh(176): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_scan.cuh(177): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentScan::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_scan.cuh(466): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentScan" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(269): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(270): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan::ScanAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(271): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan::ScanAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan.h(546): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan::ScanAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_select_if.cuh(203): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_select_if.cuh(213): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentSelectIf::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_select_if.cuh(697): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentSelectIf" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(135): warning C4324: 鈥渢hrust::detail::aligned_type<2>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(136): warning C4324: 鈥渢hrust::detail::aligned_type<4>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(137): warning C4324: 鈥渢hrust::detail::aligned_type<8>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(138): warning C4324: 鈥渢hrust::detail::aligned_type<16>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(139): warning C4324: 鈥渢hrust::detail::aligned_type<32>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(140): warning C4324: 鈥渢hrust::detail::aligned_type<64>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/detail/alignment.h(141): warning C4324: 鈥渢hrust::detail::aligned_type<128>::type鈥? 鐢变簬瀵归綈璇存槑绗︼紝缁撴瀯琚~鍏?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(201): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(207): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__copy_if::CopyIfAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(208): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__copy_if::CopyIfAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/copy_if.h(571): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__copy_if::CopyIfAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\block\specializations/block_reduce_raking_commutative_only.cuh(102): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\block\specializations/block_reduce_raking_commutative_only.cuh(104): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::BlockReduceRakingCommutativeOnly::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\block\specializations/block_reduce_raking_commutative_only.cuh(195): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::BlockReduceRakingCommutativeOnly" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_reduce_by_key.cuh(234): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_reduce_by_key.cuh(244): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentReduceByKey::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_reduce_by_key.cuh(542): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentReduceByKey" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(246): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(253): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__reduce_by_key::ReduceByKeyAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(254): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__reduce_by_key::ReduceByKeyAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/reduce_by_key.h(835): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__reduce_by_key::ReduceByKeyAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_radix_sort_downsweep.cuh(190): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_radix_sort_downsweep.cuh(195): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentRadixSortDownsweep::_TempStorage" 鐨勫紩鐢?
+ c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\thrust\system\cuda\detail\cub\device\dispatch\../../agent/agent_radix_sort_downsweep.cuh(783): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::cub::AgentRadixSortDownsweep" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(174): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(180): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__partition::PartitionAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(181): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__partition::PartitionAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/partition.h(576): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__partition::PartitionAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(227): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(232): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique::UniqueAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(233): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique::UniqueAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique.h(515): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique::UniqueAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(238): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(245): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique_by_key::UniqueByKeyAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(246): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique_by_key::UniqueByKeyAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/unique_by_key.h(588): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__unique_by_key::UniqueByKeyAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(367): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(394): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__set_operations::SetOpAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(395): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__set_operations::SetOpAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(827): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__set_operations::SetOpAgent" 鐨勫紩鐢?
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/set_operations.h(393): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(226): warning C4201: 浣跨敤浜嗛潪鏍囧噯鎵╁睍: 鏃犲悕绉扮殑缁撴瀯/鑱斿悎
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(232): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan_by_key::ScanByKeyAgent::PtxPlan::TempStorage" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(233): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan_by_key::ScanByKeyAgent::PtxPlan" 鐨勫紩鐢?
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\thrust/system/cuda/detail/scan_by_key.h(566): note: 鍙傝瀵规鍦ㄧ紪璇戠殑 绫?妯℃澘 瀹炰緥鍖?"thrust::cuda_cub::__scan_by_key::ScanByKeyAgent" 鐨勫紩鐢?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/Release/openpose_generated_resizeAndMergeBase.cu.obj
+ resizeAndMergeBase.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ resizeAndMergeBase.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/pose/Release/openpose_generated_renderPose.cu.obj
+ renderPose.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ renderPose.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/tracking/Release/openpose_generated_pyramidalLK.cu.obj
+ pyramidalLK.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3460): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(772): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt/device_functions.h(1628): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\device_double_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\sm_20_intrinsics.h(925): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+D:\BJTU\Python\openpose-master\include\openpose/core/matrix.hpp(204): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/string.hpp(39): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(31): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(56): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(64): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(85): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(94): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(104): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(118): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(129): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(136): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(143): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(150): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(157): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(165): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(172): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(179): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(186): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(194): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(217): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(223): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(229): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(239): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+D:\BJTU\Python\openpose-master\include\openpose/core/datum.hpp(250): warning : field of class type without a DLL interface used in a class with a DLL interface
+
+ pyramidalLK.cu
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h : warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(824): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(1759): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(2621): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(3461): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(4403): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(5301): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(6212): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7093): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\crt\math_functions.h(7892): warning C4819: 璇ユ枃浠跺寘鍚笉鑳藉湪褰撳墠浠g爜椤?936)涓〃绀虹殑瀛楃銆傝灏嗚鏂囦欢淇濆瓨涓?Unicode 鏍煎紡浠ラ槻姝㈡暟鎹涪澶?
+ cameraParameterReader.cpp
+ jointAngleEstimation.cpp
+ poseTriangulation.cpp
+ poseTriangulationPrivate.cpp
+ cameraParameterEstimation.cpp
+ gridPatternFunctions.cpp
+ array.cpp
+ arrayCpuGpu.cpp
+ cvMatToOpInput.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/blob.hpp(74): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+ D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/blob.hpp(74): note: 编译 类 模板 成员函数 "int caffe::Blob::num_axes(void) const" 时
+ with
+ [
+ T=double
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+ D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp(265): note: 参见对正在编译的函数 模板 实例化“int caffe::Blob::num_axes(void) const”的引用
+ with
+ [
+ T=double
+ ]
+ D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp(130): note: 参见对正在编译的 类 模板 实例化 "caffe::Blob" 的引用
+ with
+ [
+ T=double
+ ]
+ D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp(121): note: 编译 类 模板 成员函数 "op::ArrayCpuGpu::ArrayCpuGpu(const int,const int,const int,const int)" 时
+ D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp(890): note: 参见对正在编译的 类 模板 实例化 "op::ArrayCpuGpu" 的引用
+ cvMatToOpOutput.cpp
+ datum.cpp
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\core\arrayCpuGpu.cpp)
+ gpuRenderer.cpp
+ keepTopNPeople.cpp
+ keypointScaler.cpp
+ matrix.cpp
+ opOutputToCvMat.cpp
+ point.cpp
+ rectangle.cpp
+ renderer.cpp
+ scaleAndSizeExtractor.cpp
+ verbosePrinter.cpp
+ faceDetector.cpp
+ faceDetectorOpenCV.cpp
+ faceExtractorCaffe.cpp
+ faceExtractorNet.cpp
+ faceCpuRenderer.cpp
+ faceGpuRenderer.cpp
+ faceRenderer.cpp
+ renderFace.cpp
+ bvhSaver.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+ cocoJsonSaver.cpp
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+ fileSaver.cpp
+ fileStream.cpp
+ heatMapSaver.cpp
+ imageSaver.cpp
+ jsonOfstream.cpp
+ keypointSaver.cpp
+ peopleJsonSaver.cpp
+ udpSender.cpp
+ videoSaver.cpp
+ cuda.cpp
+ gpu.cpp
+ opencl.cpp
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\face\faceExtractorCaffe.cpp)
+ frameDisplayer.cpp
+ gui.cpp
+ guiAdam.cpp
+ gui3D.cpp
+ guiInfoAdder.cpp
+ handDetector.cpp
+ handDetectorFromTxt.cpp
+ handExtractorCaffe.cpp
+ handExtractorNet.cpp
+ handCpuRenderer.cpp
+ handGpuRenderer.cpp
+ handRenderer.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+ renderHand.cpp
+ bodyPartConnectorBase.cpp
+ bodyPartConnectorBaseCL.cpp
+ bodyPartConnectorCaffe.cpp
+ maximumBase.cpp
+ maximumCaffe.cpp
+ netCaffe.cpp
+ netOpenCv.cpp
+ nmsBase.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+ nmsBaseCL.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\hand\handExtractorCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\bodyPartConnectorCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\maximumCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/layer.hpp(268): warning C4100: “bottom_index”: 未引用的形参 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/layer.hpp(268): note: 编译 类 模板 成员函数 "bool caffe::Layer::AllowForceBackward(const int) const" 时
+ with
+ [
+ Dtype=float
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(1849): note: 参见对正在编译的 类 模板 实例化 "caffe::Layer" 的引用
+ with
+ [
+ Dtype=float
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(1848): note: 编译 类 模板 成员函数 "void std::vector>,std::allocator<_Ty>>::_Destroy(boost::shared_ptr> *,boost::shared_ptr> *)" 时
+ with
+ [
+ Dtype=float,
+ _Ty=boost::shared_ptr>
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\Program Files\VS\2017\VC\Tools\MSVC\14.16.27023\include\vector(1915): note: 参见对正在编译的函数 模板 实例化“void std::vector>,std::allocator<_Ty>>::_Destroy(boost::shared_ptr> *,boost::shared_ptr> *)”的引用
+ with
+ [
+ Dtype=float,
+ _Ty=boost::shared_ptr>
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/net.hpp(281): note: 参见对正在编译的 类 模板 实例化 "std::vector>,std::allocator<_Ty>>" 的引用
+ with
+ [
+ Dtype=float,
+ _Ty=boost::shared_ptr>
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp(109): note: 参见对正在编译的 类 模板 实例化 "caffe::Net" 的引用
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/layer.hpp(92): warning C4100: “top”: 未引用的形参 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/layer.hpp(92): note: 编译 类 模板 成员函数 "void caffe::Layer::LayerSetUp(const std::vector *,std::allocator<_Ty>> &,const std::vector<_Ty,std::allocator<_Ty>> &)" 时
+ with
+ [
+ Dtype=float,
+ _Ty=caffe::Blob *
+ ] (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include\caffe/layer.hpp(91): warning C4100: “bottom”: 未引用的形参 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ nmsCaffe.cpp
+ resizeAndMergeBase.cpp
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netCaffe.cpp)
+ resizeAndMergeBaseCL.cpp
+ resizeAndMergeCaffe.cpp
+ poseCpuRenderer.cpp
+ poseExtractor.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+ poseExtractorCaffe.cpp
+C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include\cuda_fp16.h : warning C4819: 该文件包含不能在当前代码页(936)中表示的字符。请将该文件保存为 Unicode 格式以防止数据丢失 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include\google/protobuf/message_lite.h(247): warning C4267: “return”: 从“size_t”转换到“int”,可能丢失数据 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\netOpenCv.cpp)
+ poseExtractorNet.cpp
+ poseGpuRenderer.cpp
+ poseParameters.cpp
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\nmsCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(392): warning C4505: “__float2half_rz”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(405): warning C4505: “__float2half_rd”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(420): warning C4505: “__float2half_ru”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(435): warning C4505: “__float2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(447): warning C4505: “__floats2half2_rn”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(501): warning C4505: “__low2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+c:\program files\nvidia gpu computing toolkit\cuda\v10.0\include\cuda_fp16.hpp(513): warning C4505: “__high2float”: 未引用的本地函数已移除 (编译源文件 D:\BJTU\Python\openpose-master\src\openpose\net\resizeAndMergeCaffe.cpp)
+ poseParametersRender.cpp
+ poseRenderer.cpp
+ renderPose.cpp
+ datumProducer.cpp
+ flirReader.cpp
+ imageDirectoryReader.cpp
+ ipCameraReader.cpp
+ producer.cpp
+ spinnakerWrapper.cpp
+ videoCaptureReader.cpp
+ videoReader.cpp
+ webcamReader.cpp
+ personIdExtractor.cpp
+ personTracker.cpp
+ pyramidalLK.cpp
+ unityBinding.cpp
+ errorAndLog.cpp
+ fileSystem.cpp
+ flagsToOpenPose.cpp
+ keypoint.cpp
+D:\BJTU\Python\openpose-master\src\openpose\utilities\flagsToOpenPose.cpp(331): warning C4996: 'sscanf': This function or variable may be unsafe. Consider using sscanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+ C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h(2263): note: 参见“sscanf”的声明
+D:\BJTU\Python\openpose-master\src\openpose\utilities\errorAndLog.cpp(120): warning C4996: 'localtime': This function or variable may be unsafe. Consider using localtime_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+ C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\time.h(506): note: 参见“localtime”的声明
+ openCv.cpp
+ openCvPrivate.cpp
+D:\BJTU\Python\openpose-master\src\openpose\utilities\fileSystem.cpp(136): warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
+ C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt\stdio.h(208): note: 参见“fopen”的声明
+ profiler.cpp
+ wrapperAuxiliary.cpp
+ wrapperStructExtra.cpp
+ wrapperStructFace.cpp
+ wrapperStructGui.cpp
+ wrapperStructHand.cpp
+ wrapperStructInput.cpp
+ wrapperStructOutput.cpp
+ wrapperStructPose.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ string.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ defineTemplates.cpp
+ string.cpp
+ defineTemplates.cpp
+ 正在创建库 D:/BJTU/Python/openpose-master/build-2017/src/openpose/Release/openpose.lib 和对象 D:/BJTU/Python/openpose-master/build-2017/src/openpose/Release/openpose.exp
+ LINK : 已指定 /LTCG,但不需要生成代码;从链接命令行中移除 /LTCG 以提高链接器性能
+openpose_generated_pyramidalLK.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_maximumBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_nmsBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_resizeAndMergeBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderPose.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderFace.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_cuda.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderHand.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_bodyPartConnectorBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?error@op@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@H00@Z (void __cdecl op::error(class std::basic_string,class std::allocator > const &,int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_nmsBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_resizeAndMergeBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderPose.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderFace.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderHand.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_bodyPartConnectorBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_maximumBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?cudaCheck@op@@YAXHAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@0@Z (void __cdecl op::cudaCheck(int,class std::basic_string,class std::allocator > const &,class std::basic_string,class std::allocator > const &))
+openpose_generated_renderFace.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getNumberCudaThreadsAndBlocks@op@@YAXAEAUdim3@@0AEBU?$Point@I@1@@Z (void __cdecl op::getNumberCudaThreadsAndBlocks(struct dim3 &,struct dim3 &,struct op::Point const &))
+openpose_generated_renderHand.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getNumberCudaThreadsAndBlocks@op@@YAXAEAUdim3@@0AEBU?$Point@I@1@@Z (void __cdecl op::getNumberCudaThreadsAndBlocks(struct dim3 &,struct dim3 &,struct op::Point const &))
+openpose_generated_renderPose.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getNumberCudaThreadsAndBlocks@op@@YAXAEAUdim3@@0AEBU?$Point@I@1@@Z (void __cdecl op::getNumberCudaThreadsAndBlocks(struct dim3 &,struct dim3 &,struct op::Point const &))
+openpose_generated_bodyPartConnectorBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ??1Matrix@op@@QEAA@XZ (public: __cdecl op::Matrix::~Matrix(void))
+openpose_generated_bodyPartConnectorBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getPoseNumberBodyParts@op@@YAIW4PoseModel@1@@Z (unsigned int __cdecl op::getPoseNumberBodyParts(enum op::PoseModel))
+openpose_generated_renderPose.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getPoseNumberBodyParts@op@@YAIW4PoseModel@1@@Z (unsigned int __cdecl op::getPoseNumberBodyParts(enum op::PoseModel))
+openpose_generated_bodyPartConnectorBase.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getPosePartPairs@op@@YAAEBV?$vector@IV?$allocator@I@std@@@std@@W4PoseModel@1@@Z (class std::vector > const & __cdecl op::getPosePartPairs(enum op::PoseModel))
+openpose_generated_renderPose.cu.obj : warning LNK4049: 已导入本地定义的符号 ?getPosePartPairs@op@@YAAEBV?$vector@IV?$allocator@I@std@@@std@@W4PoseModel@1@@Z (class std::vector > const & __cdecl op::getPosePartPairs(enum op::PoseModel))
+openpose_generated_renderPose.cu.obj : warning LNK4049: 已导入本地定义的符号 ?addBkgChannel@op@@YA_NW4PoseModel@1@@Z (bool __cdecl op::addBkgChannel(enum op::PoseModel))
+ openpose.vcxproj -> D:\BJTU\Python\openpose-master\build-2017\x64\Release\openpose.dll
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.command.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.command.1.tlog
new file mode 100644
index 0000000..23e8659
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.command.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.read.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.read.1.tlog
new file mode 100644
index 0000000..44ed55e
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.read.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.write.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.write.1.tlog
new file mode 100644
index 0000000..af56447
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/CL.write.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.command.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.command.1.tlog
new file mode 100644
index 0000000..d1eb2d3
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.command.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.read.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.read.1.tlog
new file mode 100644
index 0000000..eaa9d1a
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.read.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.write.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.write.1.tlog
new file mode 100644
index 0000000..ef3b436
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/custombuild.write.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.command.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.command.1.tlog
new file mode 100644
index 0000000..bf78514
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.command.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.read.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.read.1.tlog
new file mode 100644
index 0000000..0ce344e
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.read.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.write.1.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.write.1.tlog
new file mode 100644
index 0000000..b5459a6
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/link.write.1.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/openpose.lastbuildstate b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/openpose.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/openpose.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/src/openpose/openpose.dir/Release/openpose.tlog/openpose.write.1u.tlog b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/openpose.write.1u.tlog
new file mode 100644
index 0000000..5dfd106
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/openpose.tlog/openpose.write.1u.tlog differ
diff --git a/Lib/src/openpose/openpose.dir/Release/peopleJsonSaver.obj b/Lib/src/openpose/openpose.dir/Release/peopleJsonSaver.obj
new file mode 100644
index 0000000..1dfaeaf
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/peopleJsonSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/personIdExtractor.obj b/Lib/src/openpose/openpose.dir/Release/personIdExtractor.obj
new file mode 100644
index 0000000..e4e3986
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/personIdExtractor.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/personTracker.obj b/Lib/src/openpose/openpose.dir/Release/personTracker.obj
new file mode 100644
index 0000000..5137c55
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/personTracker.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/point.obj b/Lib/src/openpose/openpose.dir/Release/point.obj
new file mode 100644
index 0000000..262a8d3
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/point.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/pose/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/pose/defineTemplates.cpp.obj
new file mode 100644
index 0000000..a26e60c
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/pose/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseCpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/poseCpuRenderer.obj
new file mode 100644
index 0000000..01cb79d
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseCpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseExtractor.obj b/Lib/src/openpose/openpose.dir/Release/poseExtractor.obj
new file mode 100644
index 0000000..135cab4
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseExtractor.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseExtractorCaffe.obj b/Lib/src/openpose/openpose.dir/Release/poseExtractorCaffe.obj
new file mode 100644
index 0000000..2c47f15
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseExtractorCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseExtractorNet.obj b/Lib/src/openpose/openpose.dir/Release/poseExtractorNet.obj
new file mode 100644
index 0000000..769915e
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseExtractorNet.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseGpuRenderer.obj b/Lib/src/openpose/openpose.dir/Release/poseGpuRenderer.obj
new file mode 100644
index 0000000..1f453a9
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseGpuRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseParameters.obj b/Lib/src/openpose/openpose.dir/Release/poseParameters.obj
new file mode 100644
index 0000000..033a9c7
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseParameters.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseParametersRender.obj b/Lib/src/openpose/openpose.dir/Release/poseParametersRender.obj
new file mode 100644
index 0000000..6373e6f
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseParametersRender.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseRenderer.obj b/Lib/src/openpose/openpose.dir/Release/poseRenderer.obj
new file mode 100644
index 0000000..2e231cd
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseRenderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseTriangulation.obj b/Lib/src/openpose/openpose.dir/Release/poseTriangulation.obj
new file mode 100644
index 0000000..1069e92
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseTriangulation.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/poseTriangulationPrivate.obj b/Lib/src/openpose/openpose.dir/Release/poseTriangulationPrivate.obj
new file mode 100644
index 0000000..0a5ad17
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/poseTriangulationPrivate.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/producer.obj b/Lib/src/openpose/openpose.dir/Release/producer.obj
new file mode 100644
index 0000000..34c9c79
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/producer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/producer/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/producer/defineTemplates.cpp.obj
new file mode 100644
index 0000000..c7c5200
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/producer/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/profiler.obj b/Lib/src/openpose/openpose.dir/Release/profiler.obj
new file mode 100644
index 0000000..bbcdc1d
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/profiler.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/pyramidalLK.obj b/Lib/src/openpose/openpose.dir/Release/pyramidalLK.obj
new file mode 100644
index 0000000..e81eb13
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/pyramidalLK.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/rectangle.obj b/Lib/src/openpose/openpose.dir/Release/rectangle.obj
new file mode 100644
index 0000000..da3917a
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/rectangle.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/renderFace.obj b/Lib/src/openpose/openpose.dir/Release/renderFace.obj
new file mode 100644
index 0000000..f3c690f
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/renderFace.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/renderHand.obj b/Lib/src/openpose/openpose.dir/Release/renderHand.obj
new file mode 100644
index 0000000..8b47300
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/renderHand.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/renderPose.obj b/Lib/src/openpose/openpose.dir/Release/renderPose.obj
new file mode 100644
index 0000000..ce8a853
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/renderPose.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/renderer.obj b/Lib/src/openpose/openpose.dir/Release/renderer.obj
new file mode 100644
index 0000000..7312bff
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/renderer.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/resizeAndMergeBase.obj b/Lib/src/openpose/openpose.dir/Release/resizeAndMergeBase.obj
new file mode 100644
index 0000000..8f8ea20
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/resizeAndMergeBase.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/resizeAndMergeBaseCL.obj b/Lib/src/openpose/openpose.dir/Release/resizeAndMergeBaseCL.obj
new file mode 100644
index 0000000..e65f9b6
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/resizeAndMergeBaseCL.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/resizeAndMergeCaffe.obj b/Lib/src/openpose/openpose.dir/Release/resizeAndMergeCaffe.obj
new file mode 100644
index 0000000..ee28b8b
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/resizeAndMergeCaffe.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/scaleAndSizeExtractor.obj b/Lib/src/openpose/openpose.dir/Release/scaleAndSizeExtractor.obj
new file mode 100644
index 0000000..f119ef8
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/scaleAndSizeExtractor.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/spinnakerWrapper.obj b/Lib/src/openpose/openpose.dir/Release/spinnakerWrapper.obj
new file mode 100644
index 0000000..e1fe6a5
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/spinnakerWrapper.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/thread/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/thread/defineTemplates.cpp.obj
new file mode 100644
index 0000000..82b60c1
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/thread/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/tracking/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/tracking/defineTemplates.cpp.obj
new file mode 100644
index 0000000..dc61a66
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/tracking/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/udpSender.obj b/Lib/src/openpose/openpose.dir/Release/udpSender.obj
new file mode 100644
index 0000000..605b8ab
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/udpSender.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/unityBinding.obj b/Lib/src/openpose/openpose.dir/Release/unityBinding.obj
new file mode 100644
index 0000000..f506122
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/unityBinding.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/utilities/string.cpp.obj b/Lib/src/openpose/openpose.dir/Release/utilities/string.cpp.obj
new file mode 100644
index 0000000..f73d85e
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/utilities/string.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/verbosePrinter.obj b/Lib/src/openpose/openpose.dir/Release/verbosePrinter.obj
new file mode 100644
index 0000000..77f4704
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/verbosePrinter.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/videoCaptureReader.obj b/Lib/src/openpose/openpose.dir/Release/videoCaptureReader.obj
new file mode 100644
index 0000000..e7a75a2
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/videoCaptureReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/videoReader.obj b/Lib/src/openpose/openpose.dir/Release/videoReader.obj
new file mode 100644
index 0000000..7321e72
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/videoReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/videoSaver.obj b/Lib/src/openpose/openpose.dir/Release/videoSaver.obj
new file mode 100644
index 0000000..1875029
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/videoSaver.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/webcamReader.obj b/Lib/src/openpose/openpose.dir/Release/webcamReader.obj
new file mode 100644
index 0000000..d8bf76c
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/webcamReader.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapper/defineTemplates.cpp.obj b/Lib/src/openpose/openpose.dir/Release/wrapper/defineTemplates.cpp.obj
new file mode 100644
index 0000000..ccd484b
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapper/defineTemplates.cpp.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperAuxiliary.obj b/Lib/src/openpose/openpose.dir/Release/wrapperAuxiliary.obj
new file mode 100644
index 0000000..1e7c32e
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperAuxiliary.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructExtra.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructExtra.obj
new file mode 100644
index 0000000..b0364da
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructExtra.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructFace.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructFace.obj
new file mode 100644
index 0000000..bbddfab
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructFace.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructGui.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructGui.obj
new file mode 100644
index 0000000..d29ae83
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructGui.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructHand.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructHand.obj
new file mode 100644
index 0000000..9123b73
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructHand.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructInput.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructInput.obj
new file mode 100644
index 0000000..a1cce2b
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructInput.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructOutput.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructOutput.obj
new file mode 100644
index 0000000..630fc39
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructOutput.obj differ
diff --git a/Lib/src/openpose/openpose.dir/Release/wrapperStructPose.obj b/Lib/src/openpose/openpose.dir/Release/wrapperStructPose.obj
new file mode 100644
index 0000000..0cfb89a
Binary files /dev/null and b/Lib/src/openpose/openpose.dir/Release/wrapperStructPose.obj differ
diff --git a/Lib/src/openpose/openpose.vcxproj b/Lib/src/openpose/openpose.vcxproj
new file mode 100644
index 0000000..2c52da9
--- /dev/null
+++ b/Lib/src/openpose/openpose.vcxproj
@@ -0,0 +1,683 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {A7EA9470-80A6-34D2-A73F-40B5F620B75B}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ openpose
+ NoUpgrade
+
+
+
+ DynamicLibrary
+ MultiByte
+ v141
+
+
+ DynamicLibrary
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ openpose.dir\Release\
+ openpose
+ .dll
+ false
+ true
+ D:\BJTU\Python\openpose-master\build-2017\$(Platform)\$(Configuration)\
+ openpose.dir\Debug\
+ openposed
+ .dll
+ true
+ true
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ OldStyle
+ Sync
+ Speed
+ true
+ true
+ true
+ Full
+ NotUsing
+ MultiThreadedDLL
+ false
+ Level4
+ NDEBUG;OP_EXPORTS;BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Release";openpose_EXPORTS;%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;NDEBUG;OP_EXPORTS;BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Release\";openpose_EXPORTS;%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflags.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glog.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffe.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ false
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/src/openpose/Release/openpose.lib
+ UseFastLinkTimeCodeGeneration
+ true
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/openpose.pdb
+ Console
+
+
+ false
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(IntDir)
+ EnableFastChecks
+ ProgramDatabase
+ Sync
+ Disabled
+ true
+ Disabled
+ NotUsing
+ MultiThreadedDebugDLL
+ false
+ Level4
+ OP_EXPORTS;BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA;CMAKE_INTDIR="Debug";openpose_EXPORTS;%(PreprocessorDefinitions)
+ $(IntDir)
+
+
+ WIN32;_DEBUG;OP_EXPORTS;BOOST_ALL_NO_LIB;USE_CAFFE;USE_CUDA;CMAKE_INTDIR=\"Debug\";openpose_EXPORTS;%(PreprocessorDefinitions)
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+ C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\lib\x64\cudart_static.lib;..\..\..\3rdparty\windows\opencv\x64\vc15\lib\opencv_world420d.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\gflagsd.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\glogd.lib;..\..\..\3rdparty\windows\caffe\lib\caffe-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto-d.lib;..\..\..\3rdparty\windows\caffe\lib\caffeproto.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_system-vc141-mt-x64-1_69.lib;..\..\..\3rdparty\windows\caffe3rdparty\lib\boost_filesystem-vc141-mt-x64-1_69.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;comdlg32.lib;advapi32.lib
+ %(AdditionalLibraryDirectories)
+ %(AdditionalOptions) /machine:x64
+ true
+ %(IgnoreSpecificDefaultLibraries)
+ D:/BJTU/Python/openpose-master/build-2017/src/openpose/Debug/openposed.lib
+ D:/BJTU/Python/openpose-master/build-2017/$(Platform)/$(Configuration)/openposed.pdb
+ Console
+
+
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face\openpose_generated_renderFace.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face\openpose_generated_renderFace.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face\$(Configuration)\openpose_generated_renderFace.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/$(Configuration)/openpose_generated_renderFace.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/face/openpose_generated_renderFace.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face\openpose_generated_renderFace.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face\openpose_generated_renderFace.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\face\$(Configuration)\openpose_generated_renderFace.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu\openpose_generated_cuda.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu\openpose_generated_cuda.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu\$(Configuration)\openpose_generated_cuda.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/$(Configuration)/openpose_generated_cuda.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/gpu/openpose_generated_cuda.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu\openpose_generated_cuda.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu\openpose_generated_cuda.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\gpu\$(Configuration)\openpose_generated_cuda.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand\openpose_generated_renderHand.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand\openpose_generated_renderHand.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand\$(Configuration)\openpose_generated_renderHand.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/$(Configuration)/openpose_generated_renderHand.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/hand/openpose_generated_renderHand.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand\openpose_generated_renderHand.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand\openpose_generated_renderHand.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\hand\$(Configuration)\openpose_generated_renderHand.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_bodyPartConnectorBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_bodyPartConnectorBase.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_bodyPartConnectorBase.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_bodyPartConnectorBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_bodyPartConnectorBase.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_bodyPartConnectorBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_bodyPartConnectorBase.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_bodyPartConnectorBase.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_maximumBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_maximumBase.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_maximumBase.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_maximumBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_maximumBase.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_maximumBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_maximumBase.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_maximumBase.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_nmsBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_nmsBase.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_nmsBase.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_nmsBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_nmsBase.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_nmsBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_nmsBase.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_nmsBase.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_resizeAndMergeBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_resizeAndMergeBase.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_resizeAndMergeBase.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/$(Configuration)/openpose_generated_resizeAndMergeBase.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/net/openpose_generated_resizeAndMergeBase.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_resizeAndMergeBase.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\openpose_generated_resizeAndMergeBase.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\net\$(Configuration)\openpose_generated_resizeAndMergeBase.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose\openpose_generated_renderPose.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose\openpose_generated_renderPose.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose\$(Configuration)\openpose_generated_renderPose.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/$(Configuration)/openpose_generated_renderPose.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/pose/openpose_generated_renderPose.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose\openpose_generated_renderPose.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose\openpose_generated_renderPose.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\pose\$(Configuration)\openpose_generated_renderPose.cu.obj
+ false
+
+
+
+
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Release.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking\openpose_generated_pyramidalLK.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking\openpose_generated_pyramidalLK.cu.obj.Release.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking\$(Configuration)\openpose_generated_pyramidalLK.cu.obj
+ false
+ Building NVCC (Device) object src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj
+ setlocal
+cd D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking
+if %errorlevel% neq 0 goto :cmEnd
+D:
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -E make_directory D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)
+if %errorlevel% neq 0 goto :cmEnd
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -D verbose:BOOL=OFF -D "CCBIN:PATH=$(VCInstallDir)Tools/MSVC/$(VCToolsVersion)/bin/Host$(Platform)/$(PlatformTarget)" -D build_configuration:STRING=$(ConfigurationName) -D generated_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj -D generated_cubin_file:STRING=D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/$(Configuration)/openpose_generated_pyramidalLK.cu.obj.cubin.txt -P D:/BJTU/Python/openpose-master/build-2017/src/openpose/CMakeFiles/openpose.dir/tracking/openpose_generated_pyramidalLK.cu.obj.Debug.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking\openpose_generated_pyramidalLK.cu.obj.depend;D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking\openpose_generated_pyramidalLK.cu.obj.Debug.cmake;%(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\CMakeFiles\openpose.dir\tracking\$(Configuration)\openpose_generated_pyramidalLK.cu.obj
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/3d/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/core/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/core/string.cpp.obj
+
+
+
+ $(IntDir)/face/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/filestream/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/gui/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+ $(IntDir)/hand/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/pose/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/producer/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/thread/defineTemplates.cpp.obj
+
+
+ $(IntDir)/tracking/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+
+ $(IntDir)/utilities/string.cpp.obj
+
+
+ $(IntDir)/wrapper/defineTemplates.cpp.obj
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/openpose.vcxproj.filters b/Lib/src/openpose/openpose.vcxproj.filters
new file mode 100644
index 0000000..5f235c4
--- /dev/null
+++ b/Lib/src/openpose/openpose.vcxproj.filters
@@ -0,0 +1,476 @@
+
+
+
+
+ Source Files\3d
+
+
+ Source Files\3d
+
+
+ Source Files\3d
+
+
+ Source Files\3d
+
+
+ Source Files\3d
+
+
+ Source Files\calibration
+
+
+ Source Files\calibration
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\core
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\face
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\filestream
+
+
+ Source Files\gpu
+
+
+ Source Files\gpu
+
+
+ Source Files\gpu
+
+
+ Source Files\gui
+
+
+ Source Files\gui
+
+
+ Source Files\gui
+
+
+ Source Files\gui
+
+
+ Source Files\gui
+
+
+ Source Files\gui
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\hand
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\pose
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\producer
+
+
+ Source Files\thread
+
+
+ Source Files\tracking
+
+
+ Source Files\tracking
+
+
+ Source Files\tracking
+
+
+ Source Files\tracking
+
+
+ Source Files\unity
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\utilities
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+ Source Files\wrapper
+
+
+
+
+ Source Files\face
+
+
+ Source Files\gpu
+
+
+ Source Files\hand
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\net
+
+
+ Source Files\pose
+
+
+ Source Files\tracking
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {3D487C5D-CBB9-3D85-9454-D0197383D2CC}
+
+
+ {042BAF21-05DD-3C84-BBD0-ACB47EE7BBE2}
+
+
+ {1B0D5BF2-4345-3E56-BBEB-D9B8478EA9AE}
+
+
+ {45A9B9E9-3249-395D-B7D2-A3FD08E11F8A}
+
+
+ {5D38F946-A2A5-3DD3-9EE3-F0CD3A733C45}
+
+
+ {9CD48642-C5C4-3E80-9C6F-681667546CB6}
+
+
+ {E500327A-537C-31F6-AD2C-0E903D61D58F}
+
+
+ {FF81EAEB-DEFF-3EEB-BA18-AD4427EC2A41}
+
+
+ {3EC37D4B-2496-329F-A69A-54C0C9B000C7}
+
+
+ {499C337C-B8FB-3E0B-B828-E950E8D9148C}
+
+
+ {F5787376-9267-3D91-B068-9C9937442900}
+
+
+ {E3EEAC89-B4B9-3FE7-A2F5-47FD71146855}
+
+
+ {F7B3BC92-64F3-38E5-AF03-289449AEAF91}
+
+
+ {0426A2DD-308F-3958-9454-D3330B219C49}
+
+
+ {832643C6-ED5C-353C-8556-883AEA62F227}
+
+
+ {20526D9B-DD6E-33D2-A01C-64D3D4FDCA35}
+
+
+ {00825F72-9DED-3815-ABF2-8C90F1504DB3}
+
+
+ {3DF4CE46-C7C4-3B11-A6B4-386644B19F6E}
+
+
+
diff --git a/Lib/src/openpose/openpose.vcxproj.user b/Lib/src/openpose/openpose.vcxproj.user
new file mode 100644
index 0000000..be25078
--- /dev/null
+++ b/Lib/src/openpose/openpose.vcxproj.user
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/pose/CMakeFiles/generate.stamp b/Lib/src/openpose/pose/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/pose/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/pose/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/pose/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..c6be0a6
--- /dev/null
+++ b/Lib/src/openpose/pose/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/pose/CMakeLists.txt
diff --git a/Lib/src/openpose/pose/INSTALL.vcxproj b/Lib/src/openpose/pose/INSTALL.vcxproj
new file mode 100644
index 0000000..c65d22f
--- /dev/null
+++ b/Lib/src/openpose/pose/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\pose\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\pose\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/pose/INSTALL.vcxproj.filters b/Lib/src/openpose/pose/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..28e14fd
--- /dev/null
+++ b/Lib/src/openpose/pose/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/pose/cmake_install.cmake b/Lib/src/openpose/pose/cmake_install.cmake
new file mode 100644
index 0000000..5dcd5d4
--- /dev/null
+++ b/Lib/src/openpose/pose/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/pose
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/producer/CMakeFiles/generate.stamp b/Lib/src/openpose/producer/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/producer/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/producer/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/producer/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..7f0f5b5
--- /dev/null
+++ b/Lib/src/openpose/producer/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/producer/CMakeLists.txt
diff --git a/Lib/src/openpose/producer/INSTALL.vcxproj b/Lib/src/openpose/producer/INSTALL.vcxproj
new file mode 100644
index 0000000..dbb58e4
--- /dev/null
+++ b/Lib/src/openpose/producer/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\producer\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\producer\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/producer/INSTALL.vcxproj.filters b/Lib/src/openpose/producer/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..06deae8
--- /dev/null
+++ b/Lib/src/openpose/producer/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/producer/cmake_install.cmake b/Lib/src/openpose/producer/cmake_install.cmake
new file mode 100644
index 0000000..9ae7825
--- /dev/null
+++ b/Lib/src/openpose/producer/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/producer
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/thread/CMakeFiles/generate.stamp b/Lib/src/openpose/thread/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/thread/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/thread/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/thread/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..774bc8c
--- /dev/null
+++ b/Lib/src/openpose/thread/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/thread/CMakeLists.txt
diff --git a/Lib/src/openpose/thread/INSTALL.vcxproj b/Lib/src/openpose/thread/INSTALL.vcxproj
new file mode 100644
index 0000000..be37337
--- /dev/null
+++ b/Lib/src/openpose/thread/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\thread\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\thread\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/thread/INSTALL.vcxproj.filters b/Lib/src/openpose/thread/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..446f0a5
--- /dev/null
+++ b/Lib/src/openpose/thread/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/thread/cmake_install.cmake b/Lib/src/openpose/thread/cmake_install.cmake
new file mode 100644
index 0000000..70c4c17
--- /dev/null
+++ b/Lib/src/openpose/thread/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/thread
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/tracking/CMakeFiles/generate.stamp b/Lib/src/openpose/tracking/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/tracking/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/tracking/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/tracking/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..a364cd1
--- /dev/null
+++ b/Lib/src/openpose/tracking/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/tracking/CMakeLists.txt
diff --git a/Lib/src/openpose/tracking/INSTALL.vcxproj b/Lib/src/openpose/tracking/INSTALL.vcxproj
new file mode 100644
index 0000000..5cc51ce
--- /dev/null
+++ b/Lib/src/openpose/tracking/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\tracking\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\tracking\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/tracking/INSTALL.vcxproj.filters b/Lib/src/openpose/tracking/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..ff47c26
--- /dev/null
+++ b/Lib/src/openpose/tracking/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/tracking/cmake_install.cmake b/Lib/src/openpose/tracking/cmake_install.cmake
new file mode 100644
index 0000000..4ef5269
--- /dev/null
+++ b/Lib/src/openpose/tracking/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/tracking
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/unity/CMakeFiles/generate.stamp b/Lib/src/openpose/unity/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/unity/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/unity/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/unity/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..fbe0d49
--- /dev/null
+++ b/Lib/src/openpose/unity/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/unity/CMakeLists.txt
diff --git a/Lib/src/openpose/unity/INSTALL.vcxproj b/Lib/src/openpose/unity/INSTALL.vcxproj
new file mode 100644
index 0000000..e85d62d
--- /dev/null
+++ b/Lib/src/openpose/unity/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\unity\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\unity\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/unity/INSTALL.vcxproj.filters b/Lib/src/openpose/unity/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..c0ff895
--- /dev/null
+++ b/Lib/src/openpose/unity/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/unity/cmake_install.cmake b/Lib/src/openpose/unity/cmake_install.cmake
new file mode 100644
index 0000000..ea3bca5
--- /dev/null
+++ b/Lib/src/openpose/unity/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/unity
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/utilities/CMakeFiles/generate.stamp b/Lib/src/openpose/utilities/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/utilities/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/utilities/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/utilities/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..7fc8453
--- /dev/null
+++ b/Lib/src/openpose/utilities/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/utilities/CMakeLists.txt
diff --git a/Lib/src/openpose/utilities/INSTALL.vcxproj b/Lib/src/openpose/utilities/INSTALL.vcxproj
new file mode 100644
index 0000000..eee53f0
--- /dev/null
+++ b/Lib/src/openpose/utilities/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\utilities\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\utilities\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/utilities/INSTALL.vcxproj.filters b/Lib/src/openpose/utilities/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..a081dc3
--- /dev/null
+++ b/Lib/src/openpose/utilities/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/utilities/cmake_install.cmake b/Lib/src/openpose/utilities/cmake_install.cmake
new file mode 100644
index 0000000..8661886
--- /dev/null
+++ b/Lib/src/openpose/utilities/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/utilities
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/src/openpose/wrapper/CMakeFiles/generate.stamp b/Lib/src/openpose/wrapper/CMakeFiles/generate.stamp
new file mode 100644
index 0000000..9b5f49f
--- /dev/null
+++ b/Lib/src/openpose/wrapper/CMakeFiles/generate.stamp
@@ -0,0 +1 @@
+# CMake generation timestamp file for this directory.
diff --git a/Lib/src/openpose/wrapper/CMakeFiles/generate.stamp.depend b/Lib/src/openpose/wrapper/CMakeFiles/generate.stamp.depend
new file mode 100644
index 0000000..6794c21
--- /dev/null
+++ b/Lib/src/openpose/wrapper/CMakeFiles/generate.stamp.depend
@@ -0,0 +1,3 @@
+# CMake generation dependency list for this directory.
+D:/BJTU/Python/openpose-master/cmake/Utils.cmake
+D:/BJTU/Python/openpose-master/src/openpose/wrapper/CMakeLists.txt
diff --git a/Lib/src/openpose/wrapper/INSTALL.vcxproj b/Lib/src/openpose/wrapper/INSTALL.vcxproj
new file mode 100644
index 0000000..b270424
--- /dev/null
+++ b/Lib/src/openpose/wrapper/INSTALL.vcxproj
@@ -0,0 +1,129 @@
+
+
+
+
+ Release
+ x64
+
+
+ Debug
+ x64
+
+
+
+ {639B265C-F24F-371C-BC88-C7923582563E}
+ 10.0.18362.0
+ Win32Proj
+ x64
+ INSTALL
+ NoUpgrade
+
+
+
+ Utility
+ MultiByte
+ v141
+
+
+ Utility
+ MultiByte
+ v141
+
+
+
+
+
+
+
+
+
+ <_ProjectFileVersion>10.0.20506.1
+ $(Platform)\$(Configuration)\$(ProjectName)\
+ $(Platform)\$(Configuration)\$(ProjectName)\
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+ D:\BJTU\Python\openpose-master\include;D:\BJTU\Python\openpose-master\3rdparty\windows\opencv\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe\include2;C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v10.0\include;D:\BJTU\Python\openpose-master\3rdparty\windows\caffe3rdparty\include;%(AdditionalIncludeDirectories)
+ $(ProjectDir)/$(IntDir)
+ %(Filename).h
+ %(Filename).tlb
+ %(Filename)_i.c
+ %(Filename)_p.c
+
+
+
+ setlocal
+"D:\Program Files\cmake-3.18.0-rc3-win64-x64\bin\cmake.exe" -DBUILD_TYPE=$(Configuration) -P cmake_install.cmake
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+
+
+
+
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\wrapper\CMakeFiles\INSTALL_force
+ false
+
+ setlocal
+cd .
+if %errorlevel% neq 0 goto :cmEnd
+:cmEnd
+endlocal & call :cmErrorLevel %errorlevel% & goto :cmDone
+:cmErrorLevel
+exit /b %1
+:cmDone
+if %errorlevel% neq 0 goto :VCEnd
+ %(AdditionalInputs)
+ D:\BJTU\Python\openpose-master\build-2017\src\openpose\wrapper\CMakeFiles\INSTALL_force
+ false
+
+
+
+
+ {122B98FA-1CE8-3F5C-941A-0FCB757B1C38}
+ ALL_BUILD
+ false
+ Never
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Lib/src/openpose/wrapper/INSTALL.vcxproj.filters b/Lib/src/openpose/wrapper/INSTALL.vcxproj.filters
new file mode 100644
index 0000000..2a00e12
--- /dev/null
+++ b/Lib/src/openpose/wrapper/INSTALL.vcxproj.filters
@@ -0,0 +1,13 @@
+
+
+
+
+ CMake Rules
+
+
+
+
+ {2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}
+
+
+
diff --git a/Lib/src/openpose/wrapper/cmake_install.cmake b/Lib/src/openpose/wrapper/cmake_install.cmake
new file mode 100644
index 0000000..cfa2fd8
--- /dev/null
+++ b/Lib/src/openpose/wrapper/cmake_install.cmake
@@ -0,0 +1,34 @@
+# Install script for directory: D:/BJTU/Python/openpose-master/src/openpose/wrapper
+
+# Set the install prefix
+if(NOT DEFINED CMAKE_INSTALL_PREFIX)
+ set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/OpenPose")
+endif()
+string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
+
+# Set the install configuration name.
+if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
+ if(BUILD_TYPE)
+ string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
+ CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
+ else()
+ set(CMAKE_INSTALL_CONFIG_NAME "Release")
+ endif()
+ message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
+endif()
+
+# Set the component getting installed.
+if(NOT CMAKE_INSTALL_COMPONENT)
+ if(COMPONENT)
+ message(STATUS "Install component: \"${COMPONENT}\"")
+ set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
+ else()
+ set(CMAKE_INSTALL_COMPONENT)
+ endif()
+endif()
+
+# Is this installation the result of a crosscompile?
+if(NOT DEFINED CMAKE_CROSSCOMPILING)
+ set(CMAKE_CROSSCOMPILING "FALSE")
+endif()
+
diff --git a/Lib/x64/Release/01_body_from_image_default.exe b/Lib/x64/Release/01_body_from_image_default.exe
new file mode 100644
index 0000000..4b475e2
Binary files /dev/null and b/Lib/x64/Release/01_body_from_image_default.exe differ
diff --git a/Lib/x64/Release/02_whole_body_from_image_default.exe b/Lib/x64/Release/02_whole_body_from_image_default.exe
new file mode 100644
index 0000000..ad4910f
Binary files /dev/null and b/Lib/x64/Release/02_whole_body_from_image_default.exe differ
diff --git a/Lib/x64/Release/03_keypoints_from_image.exe b/Lib/x64/Release/03_keypoints_from_image.exe
new file mode 100644
index 0000000..ecbd716
Binary files /dev/null and b/Lib/x64/Release/03_keypoints_from_image.exe differ
diff --git a/Lib/x64/Release/04_keypoints_from_images.exe b/Lib/x64/Release/04_keypoints_from_images.exe
new file mode 100644
index 0000000..d46dac5
Binary files /dev/null and b/Lib/x64/Release/04_keypoints_from_images.exe differ
diff --git a/Lib/x64/Release/05_keypoints_from_images_multi_gpu.exe b/Lib/x64/Release/05_keypoints_from_images_multi_gpu.exe
new file mode 100644
index 0000000..a6f952c
Binary files /dev/null and b/Lib/x64/Release/05_keypoints_from_images_multi_gpu.exe differ
diff --git a/Lib/x64/Release/06_face_from_image.exe b/Lib/x64/Release/06_face_from_image.exe
new file mode 100644
index 0000000..7d1a6e2
Binary files /dev/null and b/Lib/x64/Release/06_face_from_image.exe differ
diff --git a/Lib/x64/Release/07_hand_from_image.exe b/Lib/x64/Release/07_hand_from_image.exe
new file mode 100644
index 0000000..4b2201b
Binary files /dev/null and b/Lib/x64/Release/07_hand_from_image.exe differ
diff --git a/Lib/x64/Release/08_heatmaps_from_image.exe b/Lib/x64/Release/08_heatmaps_from_image.exe
new file mode 100644
index 0000000..cac4371
Binary files /dev/null and b/Lib/x64/Release/08_heatmaps_from_image.exe differ
diff --git a/Lib/x64/Release/09_keypoints_from_heatmaps.exe b/Lib/x64/Release/09_keypoints_from_heatmaps.exe
new file mode 100644
index 0000000..d3f7c6d
Binary files /dev/null and b/Lib/x64/Release/09_keypoints_from_heatmaps.exe differ
diff --git a/Lib/x64/Release/10_asynchronous_custom_input.exe b/Lib/x64/Release/10_asynchronous_custom_input.exe
new file mode 100644
index 0000000..3222697
Binary files /dev/null and b/Lib/x64/Release/10_asynchronous_custom_input.exe differ
diff --git a/Lib/x64/Release/11_asynchronous_custom_input_multi_camera.exe b/Lib/x64/Release/11_asynchronous_custom_input_multi_camera.exe
new file mode 100644
index 0000000..880e40a
Binary files /dev/null and b/Lib/x64/Release/11_asynchronous_custom_input_multi_camera.exe differ
diff --git a/Lib/x64/Release/12_asynchronous_custom_output.exe b/Lib/x64/Release/12_asynchronous_custom_output.exe
new file mode 100644
index 0000000..d667be5
Binary files /dev/null and b/Lib/x64/Release/12_asynchronous_custom_output.exe differ
diff --git a/Lib/x64/Release/13_asynchronous_custom_input_output_and_datum.exe b/Lib/x64/Release/13_asynchronous_custom_input_output_and_datum.exe
new file mode 100644
index 0000000..27b0f1d
Binary files /dev/null and b/Lib/x64/Release/13_asynchronous_custom_input_output_and_datum.exe differ
diff --git a/Lib/x64/Release/14_synchronous_custom_input.exe b/Lib/x64/Release/14_synchronous_custom_input.exe
new file mode 100644
index 0000000..082122c
Binary files /dev/null and b/Lib/x64/Release/14_synchronous_custom_input.exe differ
diff --git a/Lib/x64/Release/15_synchronous_custom_preprocessing.exe b/Lib/x64/Release/15_synchronous_custom_preprocessing.exe
new file mode 100644
index 0000000..21d9d9b
Binary files /dev/null and b/Lib/x64/Release/15_synchronous_custom_preprocessing.exe differ
diff --git a/Lib/x64/Release/16_synchronous_custom_postprocessing.exe b/Lib/x64/Release/16_synchronous_custom_postprocessing.exe
new file mode 100644
index 0000000..cafabc2
Binary files /dev/null and b/Lib/x64/Release/16_synchronous_custom_postprocessing.exe differ
diff --git a/Lib/x64/Release/17_synchronous_custom_output.exe b/Lib/x64/Release/17_synchronous_custom_output.exe
new file mode 100644
index 0000000..7db35ef
Binary files /dev/null and b/Lib/x64/Release/17_synchronous_custom_output.exe differ
diff --git a/Lib/x64/Release/18_synchronous_custom_all_and_datum.exe b/Lib/x64/Release/18_synchronous_custom_all_and_datum.exe
new file mode 100644
index 0000000..9ab7c66
Binary files /dev/null and b/Lib/x64/Release/18_synchronous_custom_all_and_datum.exe differ
diff --git a/Lib/x64/Release/1_custom_post_processing.exe b/Lib/x64/Release/1_custom_post_processing.exe
new file mode 100644
index 0000000..0a6a325
Binary files /dev/null and b/Lib/x64/Release/1_custom_post_processing.exe differ
diff --git a/Lib/x64/Release/1_thread_user_processing_function.exe b/Lib/x64/Release/1_thread_user_processing_function.exe
new file mode 100644
index 0000000..c05fbfe
Binary files /dev/null and b/Lib/x64/Release/1_thread_user_processing_function.exe differ
diff --git a/Lib/x64/Release/2_thread_user_input_processing_output_and_datum.exe b/Lib/x64/Release/2_thread_user_input_processing_output_and_datum.exe
new file mode 100644
index 0000000..890ffc4
Binary files /dev/null and b/Lib/x64/Release/2_thread_user_input_processing_output_and_datum.exe differ
diff --git a/Lib/x64/Release/ALL_BUILD/ALL_BUILD.log b/Lib/x64/Release/ALL_BUILD/ALL_BUILD.log
new file mode 100644
index 0000000..5f28270
--- /dev/null
+++ b/Lib/x64/Release/ALL_BUILD/ALL_BUILD.log
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/Lib/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate b/Lib/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate
new file mode 100644
index 0000000..ddf5d8a
--- /dev/null
+++ b/Lib/x64/Release/ALL_BUILD/ALL_BUILD.tlog/ALL_BUILD.lastbuildstate
@@ -0,0 +1,2 @@
+#TargetFrameworkVersion=v4.0:PlatformToolSet=v141:EnableManagedIncrementalBuild=false:VCToolArchitecture=Native32Bit:WindowsTargetPlatformVersion=10.0.18362.0
+Release|x64|D:\BJTU\Python\openpose-master\build-2017\|
diff --git a/Lib/x64/Release/Calibration.exe b/Lib/x64/Release/Calibration.exe
new file mode 100644
index 0000000..8ffc646
Binary files /dev/null and b/Lib/x64/Release/Calibration.exe differ
diff --git a/Lib/x64/Release/OpenPoseDemo.exe b/Lib/x64/Release/OpenPoseDemo.exe
new file mode 100644
index 0000000..303ed3c
Binary files /dev/null and b/Lib/x64/Release/OpenPoseDemo.exe differ
diff --git a/Lib/x64/Release/openpose.dll b/Lib/x64/Release/openpose.dll
new file mode 100644
index 0000000..7cc5728
--- /dev/null
+++ b/Lib/x64/Release/openpose.dll
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:aa6086909837a06a1bebc510e6fbdbc814a0cc6004cbcb74070789dc30cad18b
+size 4652544
diff --git a/github地址.txt b/github地址.txt
new file mode 100644
index 0000000..df65390
--- /dev/null
+++ b/github地址.txt
@@ -0,0 +1,3 @@
+计算机视觉部分:https://github.com/Tang1705/CVofSSE
+前端仓库:https://github.com/Shzhuoyu/cv_frontend
+后端仓库:https://github.com/Shzhuoyu/cv_backend
\ No newline at end of file