extract keypoints by openpose based on gpu

This commit is contained in:
Tang1705
2020-07-04 08:16:33 +08:00
parent 84acd2f1b2
commit d20e9ba9c6
829 changed files with 28957 additions and 0 deletions

1
.gitattributes vendored Normal file
View File

@@ -0,0 +1 @@
*.dll filter=lfs diff=lfs merge=lfs -text

View File

@@ -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)

71
Lib/3rdparty/pybind11/ALL_BUILD.vcxproj vendored Normal file
View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{122B98FA-1CE8-3F5C-941A-0FCB757B1C38}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
<Keyword>Win32Proj</Keyword>
<Platform>x64</Platform>
<ProjectName>ALL_BUILD</ProjectName>
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
</ItemDefinitionGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
</ItemGroup>
</Project>

View File

@@ -0,0 +1 @@
# CMake generation timestamp file for this directory.

View File

@@ -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

129
Lib/3rdparty/pybind11/INSTALL.vcxproj vendored Normal file
View File

@@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{639B265C-F24F-371C-BC88-C7923582563E}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
<Keyword>Win32Proj</Keyword>
<Platform>x64</Platform>
<ProjectName>INSTALL</ProjectName>
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
<PostBuildEvent>
<Message></Message>
<Command>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 &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
<PostBuildEvent>
<Message></Message>
<Command>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 &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<CustomBuild Include="D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\942092d39ed92c0aecc68c09bdc74451\INSTALL_force.rule">
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> </Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
cd .
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalInputs)</AdditionalInputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\BJTU\Python\openpose-master\build-2017\3rdparty\pybind11\CMakeFiles\INSTALL_force</Outputs>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> </Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
cd .
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">%(AdditionalInputs)</AdditionalInputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\BJTU\Python\openpose-master\build-2017\3rdparty\pybind11\CMakeFiles\INSTALL_force</Outputs>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
</CustomBuild>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\3rdparty\pybind11\ALL_BUILD.vcxproj">
<Project>{122B98FA-1CE8-3F5C-941A-0FCB757B1C38}</Project>
<Name>ALL_BUILD</Name>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<CustomBuild Include="D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\942092d39ed92c0aecc68c09bdc74451\INSTALL_force.rule">
<Filter>CMake Rules</Filter>
</CustomBuild>
</ItemGroup>
<ItemGroup>
<Filter Include="CMake Rules">
<UniqueIdentifier>{2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}</UniqueIdentifier>
</Filter>
</ItemGroup>
</Project>

View File

@@ -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()

37
Lib/3rdparty/pybind11/pybind11.sln vendored Normal file
View File

@@ -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

173
Lib/ALL_BUILD.vcxproj Normal file
View File

@@ -0,0 +1,173 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{122B98FA-1CE8-3F5C-941A-0FCB757B1C38}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
<Keyword>Win32Proj</Keyword>
<Platform>x64</Platform>
<ProjectName>ALL_BUILD</ProjectName>
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
</ItemDefinitionGroup>
<ItemGroup>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\01_body_from_image_default.vcxproj">
<Project>{5D8E9189-05C6-34F3-A4E2-8713A3C8537E}</Project>
<Name>01_body_from_image_default</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\02_whole_body_from_image_default.vcxproj">
<Project>{D2A5968D-8CCF-3C4E-B587-F2ACC3B96F38}</Project>
<Name>02_whole_body_from_image_default</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\03_keypoints_from_image.vcxproj">
<Project>{75584824-2A5F-3172-AD57-F19C98E43ACA}</Project>
<Name>03_keypoints_from_image</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\04_keypoints_from_images.vcxproj">
<Project>{271951E6-1C8C-33C1-981D-783A3B02BA07}</Project>
<Name>04_keypoints_from_images</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\05_keypoints_from_images_multi_gpu.vcxproj">
<Project>{EEC9366B-9078-3EEA-905D-9E1019445962}</Project>
<Name>05_keypoints_from_images_multi_gpu</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\06_face_from_image.vcxproj">
<Project>{9AF1546D-FB88-3A08-A407-45A482BE8EAB}</Project>
<Name>06_face_from_image</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\07_hand_from_image.vcxproj">
<Project>{28B7E283-11CE-38B1-AE1A-EF9FD2FF6F39}</Project>
<Name>07_hand_from_image</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\08_heatmaps_from_image.vcxproj">
<Project>{55E3E58F-DC57-3F14-A3D1-C04D57B6A289}</Project>
<Name>08_heatmaps_from_image</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\09_keypoints_from_heatmaps.vcxproj">
<Project>{5509C517-EB61-3755-89BD-6684706E6832}</Project>
<Name>09_keypoints_from_heatmaps</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\10_asynchronous_custom_input.vcxproj">
<Project>{4EF89EB0-9A1D-3DD1-A3D3-155C4ACC09C8}</Project>
<Name>10_asynchronous_custom_input</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\11_asynchronous_custom_input_multi_camera.vcxproj">
<Project>{D4E53486-C21F-323C-9980-92CA1222E699}</Project>
<Name>11_asynchronous_custom_input_multi_camera</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\12_asynchronous_custom_output.vcxproj">
<Project>{287F3580-8C0A-3432-918D-ADB876C6170C}</Project>
<Name>12_asynchronous_custom_output</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\13_asynchronous_custom_input_output_and_datum.vcxproj">
<Project>{DEAAFF83-74BD-3F98-8755-2D79948C0D9A}</Project>
<Name>13_asynchronous_custom_input_output_and_datum</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\14_synchronous_custom_input.vcxproj">
<Project>{D0D9F45D-0B50-3DA0-8CFE-0DC66AFD5A5F}</Project>
<Name>14_synchronous_custom_input</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\15_synchronous_custom_preprocessing.vcxproj">
<Project>{F20445FF-B3B9-3A04-8E64-7092DC57175C}</Project>
<Name>15_synchronous_custom_preprocessing</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\16_synchronous_custom_postprocessing.vcxproj">
<Project>{53982123-D444-3CB9-BF2F-A99748470C69}</Project>
<Name>16_synchronous_custom_postprocessing</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\17_synchronous_custom_output.vcxproj">
<Project>{AD608E28-4AD5-36A5-B5E6-DF4269F667B5}</Project>
<Name>17_synchronous_custom_output</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_cpp\18_synchronous_custom_all_and_datum.vcxproj">
<Project>{4085AC6D-929C-3517-AF9F-A3CCDB89F06E}</Project>
<Name>18_synchronous_custom_all_and_datum</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_add_module\1_custom_post_processing.vcxproj">
<Project>{CFFE770E-D009-366A-B038-326CECEDF428}</Project>
<Name>1_custom_post_processing</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_thread\1_thread_user_processing_function.vcxproj">
<Project>{FEEDE782-93EF-3C19-88B1-617151419F17}</Project>
<Name>1_thread_user_processing_function</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\tutorial_api_thread\2_thread_user_input_processing_output_and_datum.vcxproj">
<Project>{BB4492F8-A7D7-376F-8C12-F133D7E99857}</Project>
<Name>2_thread_user_input_processing_output_and_datum</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\calibration\Calibration.vcxproj">
<Project>{60BAFCDB-1183-3191-B3E5-57DD3F2D30C8}</Project>
<Name>Calibration</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\examples\openpose\OpenPoseDemo.vcxproj">
<Project>{FD3A762F-668D-3B2B-BE06-1AB934A7FE7E}</Project>
<Name>OpenPoseDemo</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\src\openpose\openpose.vcxproj">
<Project>{A7EA9470-80A6-34D2-A73F-40B5F620B75B}</Project>
<Name>openpose</Name>
</ProjectReference>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\python\openpose\pyopenpose.vcxproj">
<Project>{876F53EC-E55B-362B-BA39-361F314C6FBE}</Project>
<Name>pyopenpose</Name>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
</ItemGroup>
</Project>

851
Lib/CMakeCache.txt Normal file
View File

@@ -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

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -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 "")

View File

@@ -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 "")

View File

@@ -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")

View File

@@ -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)

View File

@@ -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

Binary file not shown.

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{CAE07175-D007-4FC3-BFE8-47B392814159}</ProjectGuid>
<RootNamespace>CompilerIdC</RootNamespace>
<Keyword>Win32Proj</Keyword>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v141</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Configuration)\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>false</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>TurnOffAllWarnings</WarningLevel>
<DebugInformationFormat>
</DebugInformationFormat>
</ClCompile>
<Link>
<GenerateDebugInformation>false</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
</Link>
<PostBuildEvent>
<Command>for %%i in (cl.exe) do %40echo CMAKE_C_COMPILER=%%~$PATH:i</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="CMakeCCompilerId.c" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

View File

@@ -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\|

View File

@@ -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;
}

View File

@@ -0,0 +1,71 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{CAE07175-D007-4FC3-BFE8-47B392814159}</ProjectGuid>
<RootNamespace>CompilerIdCXX</RootNamespace>
<Keyword>Win32Proj</Keyword>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<PlatformToolset>v141</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<PropertyGroup>
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
<OutDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">.\</OutDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Configuration)\</IntDir>
<LinkIncremental Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>false</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>TurnOffAllWarnings</WarningLevel>
<DebugInformationFormat>
</DebugInformationFormat>
</ClCompile>
<Link>
<GenerateDebugInformation>false</GenerateDebugInformation>
<SubSystem>Console</SubSystem>
</Link>
<PostBuildEvent>
<Command>for %%i in (cl.exe) do %40echo CMAKE_CXX_COMPILER=%%~$PATH:i</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="CMakeCXXCompilerId.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

View File

@@ -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\|

View File

@@ -0,0 +1 @@
D:/Program Files/VS/2017/Common7/IDE/VC/VCTargets

View File

@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{F3FC6D86-508D-3FB1-96D2-995F08B142EC}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<Platform>x64</Platform>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props"/>
<PropertyGroup Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props"/>
<ItemDefinitionGroup>
<PostBuildEvent>
<Command>echo VCTargetsPath=$(VCTargetsPath)</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets"/>
</Project>

View File

@@ -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\|

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# generated from CMake

View File

@@ -0,0 +1 @@
# CMake generation timestamp file for this directory.

View File

@@ -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

129
Lib/INSTALL.vcxproj Normal file
View File

@@ -0,0 +1,129 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{639B265C-F24F-371C-BC88-C7923582563E}</ProjectGuid>
<WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
<Keyword>Win32Proj</Keyword>
<Platform>x64</Platform>
<ProjectName>INSTALL</ProjectName>
<VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Utility</ConfigurationType>
<CharacterSet>MultiByte</CharacterSet>
<PlatformToolset>v141</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup>
<_ProjectFileVersion>10.0.20506.1</_ProjectFileVersion>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
<IntDir Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">$(Platform)\$(Configuration)\$(ProjectName)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
<PostBuildEvent>
<Message></Message>
<Command>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 &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Midl>
<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)</AdditionalIncludeDirectories>
<OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
<HeaderFileName>%(Filename).h</HeaderFileName>
<TypeLibraryName>%(Filename).tlb</TypeLibraryName>
<InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
<ProxyFileName>%(Filename)_p.c</ProxyFileName>
</Midl>
<PostBuildEvent>
<Message></Message>
<Command>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 &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<CustomBuild Include="D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\c08b02478fa4a1ea0ea541b202bdef36\INSTALL_force.rule">
<Message Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> </Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Release|x64'">setlocal
cd .
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">%(AdditionalInputs)</AdditionalInputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Release|x64'">D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\INSTALL_force</Outputs>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Release|x64'">false</LinkObjects>
<Message Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> </Message>
<Command Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">setlocal
cd .
if %errorlevel% neq 0 goto :cmEnd
:cmEnd
endlocal &amp; call :cmErrorLevel %errorlevel% &amp; goto :cmDone
:cmErrorLevel
exit /b %1
:cmDone
if %errorlevel% neq 0 goto :VCEnd</Command>
<AdditionalInputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">%(AdditionalInputs)</AdditionalInputs>
<Outputs Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\INSTALL_force</Outputs>
<LinkObjects Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">false</LinkObjects>
</CustomBuild>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="D:\BJTU\Python\openpose-master\build-2017\ALL_BUILD.vcxproj">
<Project>{122B98FA-1CE8-3F5C-941A-0FCB757B1C38}</Project>
<Name>ALL_BUILD</Name>
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</ProjectReference>
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<CustomBuild Include="D:\BJTU\Python\openpose-master\build-2017\CMakeFiles\c08b02478fa4a1ea0ea541b202bdef36\INSTALL_force.rule">
<Filter>CMake Rules</Filter>
</CustomBuild>
</ItemGroup>
<ItemGroup>
<Filter Include="CMake Rules">
<UniqueIdentifier>{2A6BD6AB-A4E7-3ACA-87BE-867A2111B0F0}</UniqueIdentifier>
</Filter>
</ItemGroup>
</Project>

326
Lib/OpenPose.sln Normal file
View File

@@ -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

3
Lib/bin/VCRUNTIME140.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d89c7b863fc1ac3a179d45d5fe1b9fd35fb6fbd45171ca68d0d68ab1c1ad04fb
size 87888

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:917b51b68d785f280b5cb386c2ad59a5d434fb51052eb21aecae5f5b92cedee4
size 236544

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd62c8c506ad61e273551f4b9a33849e92be5ce69b5a3d6ca3fd295b945acf31
size 130560

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b5fe5a673fe2fff447125a62f6b8ea33d6a0e4c6dcdc5898ae42b1035e8f3b3f
size 228864

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9098978b1f5e2bc76bdc855239bbf030a5192cedcdcfc862041d5229a75cc03b
size 97280

3
Lib/bin/caffe-d.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:79051da0e88094996dfffca404bf4264a7c9366db5f99016b58191295fe52d2e
size 34192896

3
Lib/bin/caffe.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1351cbe28b9f391a3f243c04ab0d1359064b073c541daea63453b632ab963163
size 18942976

3
Lib/bin/caffehdf5.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:26d69a5eb59d53463a07d9c7da85b0f12203ad63ca3368e581b803e7ccf9b8f9
size 2307072

3
Lib/bin/caffehdf5_D.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bc176bfe161c9a13ebe8ec12e476d471d3a6b7cdc63e0c3ed2d43bb23c2283ce
size 17643520

3
Lib/bin/caffehdf5_hl.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5eb9ae3963f451123b176f8731f8c0ecd0ef00e15f6729b26b08ebeb4007b276
size 104448

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d9eb801ceda08397403411fb2ae61f18fd4904af7abecc6c227a01cdf4ce9c12
size 228864

3
Lib/bin/caffezlib1.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78c8d736ead1904ba4b7d499a918331adb68f39f43668c62dcbe00607a025594
size 82432

3
Lib/bin/caffezlibd1.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c03623ba1b05b10d5781320a5a1a21a86f513f1f81482f52648fc7ec004d92a9
size 201216

3
Lib/bin/cublas64_100.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85fd45be66ad91bfb3cced55d0a0890cac38597a3a8b9a0155992111a4002184
size 67318784

3
Lib/bin/cudart64_100.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ca2ea3675f211078a7b0921bdfb49d633f0adbddcbc80f7faf5fcab136eb413
size 416256

3
Lib/bin/cudnn64_7.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:26495e7008bc239cacf0e65704b5717b862ba5ca250c641ec4ad4b114efc0cff
size 349596160

3
Lib/bin/curand64_100.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ca23f0a2334a6a736b4513a69675cffe6caced6fa38baa3f325ef4a18a78c37f
size 49751040

3
Lib/bin/gflags.dll Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4cb11cccd0fad125f9bbb0845be38fa2e2b066923c1af640bb397b70a4cdb3f3
size 139776

Some files were not shown because too many files have changed in this diff Show More