diff --git a/SPTutorial1.pptx b/SPTutorial1.pptx old mode 100644 new mode 100755 diff --git a/train-1/README.md b/train-1/README.md old mode 100644 new mode 100755 diff --git a/train-1/zhongzebin-hm/binary-search/binarySearch.cpp b/train-1/zhongzebin-hm/binary-search/binarySearch.cpp new file mode 100644 index 0000000..eabd36d --- /dev/null +++ b/train-1/zhongzebin-hm/binary-search/binarySearch.cpp @@ -0,0 +1,16 @@ +template +bool binary_search(Iter beg,Iter end,T&& val) +{ + if(*beg==val || *end==val) + return true; + if(*beg==*end) + return false; + Iter med=(end-beg)/2+beg; + if(*med==val) + return true; + else + if(*med>val) + binary_search(beg,med,val); + else + binary_search(med,end,val); +} diff --git a/train-1/zhongzebin-hm/binary/CMakeLists.txt b/train-1/zhongzebin-hm/binary/CMakeLists.txt new file mode 100644 index 0000000..4c65e05 --- /dev/null +++ b/train-1/zhongzebin-hm/binary/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.5) +project(binary) +find_package(OpenCV 3 REQUIRED) +set(CMAKE_CXX_STANDARD 11) +message(STATUS "OpenCV library status:") +message(STATUS " version: ${OpenCV_VERSION}") +message(STATUS " libraries: ${OpenCV_LIBS}") +message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") +add_executable(binary main.cpp) +target_link_libraries(binary LINK_PRIVATE ${OpenCV_LIBS}) diff --git a/train-1/zhongzebin-hm/binary/main.cpp b/train-1/zhongzebin-hm/binary/main.cpp new file mode 100644 index 0000000..35ac798 --- /dev/null +++ b/train-1/zhongzebin-hm/binary/main.cpp @@ -0,0 +1,22 @@ +#include +#include +using namespace std; +using namespace cv; +int main() +{ + VideoCapture cap; + cap.open("../project_video.mp4"); + Mat frame; + cap>>frame; + while(!frame.empty()) + { + Mat gray; + Mat binary; + cvtColor(frame,gray,COLOR_BGR2GRAY); + threshold(gray,binary,int(255/2),255,CV_THRESH_BINARY); + imshow("video",binary); + waitKey(10); + cap>>frame; + } + return 0; +} diff --git a/train-1/zhongzebin-hm/binary/project_video.mp4 b/train-1/zhongzebin-hm/binary/project_video.mp4 new file mode 100644 index 0000000..57c0a00 Binary files /dev/null and b/train-1/zhongzebin-hm/binary/project_video.mp4 differ diff --git a/train-1/zhongzebin-hm/install-folly/install_folly.txt b/train-1/zhongzebin-hm/install-folly/install_folly.txt new file mode 100644 index 0000000..b0eb2de --- /dev/null +++ b/train-1/zhongzebin-hm/install-folly/install_folly.txt @@ -0,0 +1,7 @@ +git clone https://github.com/facebook/folly +unzip folly.zip +cd folly +mkdir _build +cd _build +cmake .. +make install diff --git a/train-1/zhongzebin-hm/missing-digit/missingNumber.cpp b/train-1/zhongzebin-hm/missing-digit/missingNumber.cpp new file mode 100644 index 0000000..b742d6c --- /dev/null +++ b/train-1/zhongzebin-hm/missing-digit/missingNumber.cpp @@ -0,0 +1,17 @@ +class Solution { +public: + int missingNumber(vector& nums) { + array a; + a.fill(false); + for(int i=0;i& nums, int k) { + if(nums.size()!=1 && nums.size()!=0 && k!=0 && k%nums.size()!=0) + { + vector temp; + for(int num=1;num<=k%nums.size();num++) + { + temp.push_back(nums[nums.size()-num]); + } + for(int i=nums.size()-1;i>=k%nums.size();i--) + { + nums[i]=nums[i-k%nums.size()]; + } + for(int num=0;num +using namespace std; +using namespace cv; +int main() +{ + Mat src; + src=imread("../warning.png"); + bool fromCenter = false; + Rect2d r = selectROI(src, fromCenter); + Mat cut=src(r); + imshow("cut",cut); + waitKey(0); + return 0; +} \ No newline at end of file diff --git a/train-2/zhongzebin-hm/ROI/warning.png b/train-2/zhongzebin-hm/ROI/warning.png new file mode 100644 index 0000000..90225ad Binary files /dev/null and b/train-2/zhongzebin-hm/ROI/warning.png differ diff --git "a/train-2/zhongzebin-hm/ROI/\347\220\206\350\247\243.txt" "b/train-2/zhongzebin-hm/ROI/\347\220\206\350\247\243.txt" new file mode 100644 index 0000000..3c486c5 --- /dev/null +++ "b/train-2/zhongzebin-hm/ROI/\347\220\206\350\247\243.txt" @@ -0,0 +1,2 @@ +该程序读入图像后,手动划分矩形感兴趣区域(可以选择从矩形中心点开始绘制或者左上角点开始绘制,以回车或空格结束); +绘制后对感兴趣区域提取并显示。 diff --git a/train-2/zhongzebin-hm/camera_calibration/CMakeLists.txt b/train-2/zhongzebin-hm/camera_calibration/CMakeLists.txt new file mode 100644 index 0000000..fc113c7 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.5) +project(camera_calibration) +find_package(OpenCV 3 REQUIRED) +set(CMAKE_CXX_STANDARD 11) +message(STATUS "OpenCV library status:") +message(STATUS " version: ${OpenCV_VERSION}") +message(STATUS " libraries: ${OpenCV_LIBS}") +message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") +add_executable(camera_calibration main.cpp) +target_link_libraries(camera_calibration LINK_PRIVATE ${OpenCV_LIBS}) diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeCache.txt b/train-2/zhongzebin-hm/camera_calibration/build/CMakeCache.txt new file mode 100644 index 0000000..a48ecf8 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeCache.txt @@ -0,0 +1,309 @@ +# This is the CMakeCache file. +# For build in directory: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build +# It was generated by CMake: /usr/bin/cmake +# 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 program. +CMAKE_AR:FILEPATH=/usr/bin/ar + +//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or +// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel. +CMAKE_BUILD_TYPE:STRING= + +//Enable/Disable color output during build. +CMAKE_COLOR_MAKEFILE:BOOL=ON + +//CXX compiler +CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ + +//Flags used by the compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//C compiler +CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc + +//Flags used by the compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the compiler during debug builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the compiler during release builds for minimum +// size. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the compiler during release builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the compiler during release builds with debug info. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Flags used by the linker. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of compile commands during generation. +CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=OFF + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=/usr/local + +//Path to a program. +CMAKE_LINKER:FILEPATH=/usr/bin/ld + +//Path to a program. +CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make + +//Flags used by the linker during the creation of modules. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=/usr/bin/nm + +//Path to a program. +CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=camera_calibration + +//Path to a program. +CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib + +//Flags used by the linker during the creation of dll's. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during debug builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during release minsize builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during release builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during Release with Debug Info builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=/usr/bin/strip + +//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=FALSE + +//The directory containing a CMake configuration file for OpenCV. +OpenCV_DIR:PATH=/usr/local/share/OpenCV + +//Value Computed by CMake +camera_calibration_BINARY_DIR:STATIC=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build + +//Value Computed by CMake +camera_calibration_SOURCE_DIR:STATIC=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build +//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=5 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=1 +//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE +CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=/usr/bin/cmake +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=/usr/bin/cpack +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=/usr/bin/ctest +//ADVANCED property for variable: CMAKE_CXX_COMPILER +CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 +//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_C_COMPILER +CMAKE_C_COMPILER-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 +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//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 +//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS +CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Unix Makefiles +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration +//Install .so files without execute permission. +CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 +//ADVANCED property for variable: CMAKE_LINKER +CMAKE_LINKER-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MAKE_PROGRAM +CMAKE_MAKE_PROGRAM-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_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJCOPY +CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=/usr/share/cmake-3.5 +//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_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//uname command +CMAKE_UNAME:INTERNAL=/bin/uname +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 +//Details about finding OpenCV +FIND_PACKAGE_MESSAGE_DETAILS_OpenCV:INTERNAL=[/usr/local][v3.4.7(3)] + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake new file mode 100644 index 0000000..f40522e --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeCCompiler.cmake @@ -0,0 +1,67 @@ +set(CMAKE_C_COMPILER "/usr/bin/cc") +set(CMAKE_C_COMPILER_ARG1 "") +set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_C_COMPILER_VERSION "5.4.0") +set(CMAKE_C_COMPILER_WRAPPER "") +set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") +set(CMAKE_C_COMPILE_FEATURES "c_function_prototypes;c_restrict;c_variadic_macros;c_static_assert") +set(CMAKE_C90_COMPILE_FEATURES "c_function_prototypes") +set(CMAKE_C99_COMPILE_FEATURES "c_restrict;c_variadic_macros") +set(CMAKE_C11_COMPILE_FEATURES "c_static_assert") + +set(CMAKE_C_PLATFORM_ID "Linux") +set(CMAKE_C_SIMULATE_ID "") +set(CMAKE_C_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCC 1) +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 "ELF") +set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +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 "x86_64-linux-gnu") +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_LINK_LIBRARIES "c") +set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake new file mode 100644 index 0000000..013ee92 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeCXXCompiler.cmake @@ -0,0 +1,68 @@ +set(CMAKE_CXX_COMPILER "/usr/bin/c++") +set(CMAKE_CXX_COMPILER_ARG1 "") +set(CMAKE_CXX_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_VERSION "5.4.0") +set(CMAKE_CXX_COMPILER_WRAPPER "") +set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "98") +set(CMAKE_CXX_COMPILE_FEATURES "cxx_template_template_parameters;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_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_CXX98_COMPILE_FEATURES "cxx_template_template_parameters") +set(CMAKE_CXX11_COMPILE_FEATURES "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_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_CXX_PLATFORM_ID "Linux") +set(CMAKE_CXX_SIMULATE_ID "") +set(CMAKE_CXX_SIMULATE_VERSION "") + +set(CMAKE_AR "/usr/bin/ar") +set(CMAKE_RANLIB "/usr/bin/ranlib") +set(CMAKE_LINKER "/usr/bin/ld") +set(CMAKE_COMPILER_IS_GNUCXX 1) +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_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) +set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) +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 "ELF") +set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") + +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 "x86_64-linux-gnu") +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_LINK_LIBRARIES "stdc++;m;c") +set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") +set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin new file mode 100755 index 0000000..d8b56a9 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_C.bin differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin new file mode 100755 index 0000000..5c82be0 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeDetermineCompilerABI_CXX.bin differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeSystem.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeSystem.cmake new file mode 100644 index 0000000..1927fbd --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CMakeSystem.cmake @@ -0,0 +1,15 @@ +set(CMAKE_HOST_SYSTEM "Linux-4.15.0-66-generic") +set(CMAKE_HOST_SYSTEM_NAME "Linux") +set(CMAKE_HOST_SYSTEM_VERSION "4.15.0-66-generic") +set(CMAKE_HOST_SYSTEM_PROCESSOR "x86_64") + + + +set(CMAKE_SYSTEM "Linux-4.15.0-66-generic") +set(CMAKE_SYSTEM_NAME "Linux") +set(CMAKE_SYSTEM_VERSION "4.15.0-66-generic") +set(CMAKE_SYSTEM_PROCESSOR "x86_64") + +set(CMAKE_CROSSCOMPILING "FALSE") + +set(CMAKE_SYSTEM_LOADED 1) diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c new file mode 100644 index 0000000..570a15e --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/CMakeCCompilerId.c @@ -0,0 +1,544 @@ +#ifdef __cplusplus +# error "A C++ compiler has been selected for C." +#endif + +#if defined(__18CXX) +# define ID_VOID_MAIN +#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 + /* __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 + +#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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(SDCC) +# define COMPILER_ID "SDCC" + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID "" +# 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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if !defined(__STDC_VERSION__) + "90" +#elif __STDC_VERSION__ >= 201000L + "11" +#elif __STDC_VERSION__ >= 199901L + "99" +#else +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + 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 SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/a.out b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/a.out new file mode 100755 index 0000000..3e779cd Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/a.out differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..e6d8536 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,533 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID "" +# 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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if __cplusplus >= 201402L + "14" +#elif __cplusplus >= 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 SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out new file mode 100755 index 0000000..8f3f2ab Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeDirectoryInformation.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..b5fcf64 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeOutput.log b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..d4d876e --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,552 @@ +The system is: Linux - 4.15.0-66-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_45032/fast" +/usr/bin/make -f CMakeFiles/cmTC_45032.dir/build.make CMakeFiles/cmTC_45032.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_45032.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_45032.dir/testCCompiler.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_45032 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_45032.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_45032.dir/testCCompiler.c.o -o cmTC_45032 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_8aefe/fast" +/usr/bin/make -f CMakeFiles/cmTC_8aefe.dir/build.make CMakeFiles/cmTC_8aefe.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_8aefe +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aefe.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o -o cmTC_8aefe +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_8aefe' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccsHLXuy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_8aefe /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_8aefe/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_8aefe.dir/build.make CMakeFiles/cmTC_8aefe.dir/build] + ignore line: [make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_8aefe] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aefe.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o -o cmTC_8aefe ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_8aefe' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccsHLXuy.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_8aefe /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccsHLXuy.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_8aefe] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_8aefe.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_940f1/fast" +/usr/bin/make -f CMakeFiles/cmTC_940f1.dir/build.make CMakeFiles/cmTC_940f1.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_940f1.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_940f1.dir/feature_tests.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_940f1 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_940f1.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_940f1.dir/feature_tests.c.o -o cmTC_940f1 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_34f42/fast" +/usr/bin/make -f CMakeFiles/cmTC_34f42.dir/build.make CMakeFiles/cmTC_34f42.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_34f42.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_34f42.dir/feature_tests.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_34f42 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_34f42.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_34f42.dir/feature_tests.c.o -o cmTC_34f42 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_ce50c/fast" +/usr/bin/make -f CMakeFiles/cmTC_ce50c.dir/build.make CMakeFiles/cmTC_ce50c.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_ce50c.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_ce50c.dir/feature_tests.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_ce50c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ce50c.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_ce50c.dir/feature_tests.c.o -o cmTC_ce50c +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_59d36/fast" +/usr/bin/make -f CMakeFiles/cmTC_59d36.dir/build.make CMakeFiles/cmTC_59d36.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_59d36.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_59d36.dir/testCXXCompiler.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_59d36 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_59d36.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_59d36.dir/testCXXCompiler.cxx.o -o cmTC_59d36 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_0af1b/fast" +/usr/bin/make -f CMakeFiles/cmTC_0af1b.dir/build.make CMakeFiles/cmTC_0af1b.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_0af1b +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0af1b.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0af1b +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0af1b' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTi35Re.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_0af1b /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_0af1b/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_0af1b.dir/build.make CMakeFiles/cmTC_0af1b.dir/build] + ignore line: [make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_0af1b] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0af1b.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_0af1b ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_0af1b' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccTi35Re.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_0af1b /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccTi35Re.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_0af1b] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_0af1b.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_82607/fast" +/usr/bin/make -f CMakeFiles/cmTC_82607.dir/build.make CMakeFiles/cmTC_82607.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_82607.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_82607.dir/feature_tests.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_82607 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82607.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_82607.dir/feature_tests.cxx.o -o cmTC_82607 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_47974/fast" +/usr/bin/make -f CMakeFiles/cmTC_47974.dir/build.make CMakeFiles/cmTC_47974.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_47974.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_47974.dir/feature_tests.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_47974 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_47974.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_47974.dir/feature_tests.cxx.o -o cmTC_47974 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_ee4d0/fast" +/usr/bin/make -f CMakeFiles/cmTC_ee4d0.dir/build.make CMakeFiles/cmTC_ee4d0.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_ee4d0.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_ee4d0.dir/feature_tests.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_ee4d0 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ee4d0.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_ee4d0.dir/feature_tests.cxx.o -o cmTC_ee4d0 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/Makefile.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..74c34e4 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,52 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "/usr/local/share/OpenCV/OpenCVConfig-version.cmake" + "/usr/local/share/OpenCV/OpenCVConfig.cmake" + "/usr/local/share/OpenCV/OpenCVModules-release.cmake" + "/usr/local/share/OpenCV/OpenCVModules.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.5/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.5/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.5/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/camera_calibration.dir/DependInfo.cmake" + ) diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/Makefile2 b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..d984937 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/Makefile2 @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build + +#============================================================================= +# Target rules for target CMakeFiles/camera_calibration.dir + +# All Build rule for target. +CMakeFiles/camera_calibration.dir/all: + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/depend + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles --progress-num=1,2 "Built target camera_calibration" +.PHONY : CMakeFiles/camera_calibration.dir/all + +# Include target in all. +all: CMakeFiles/camera_calibration.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/camera_calibration.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/camera_calibration.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles 0 +.PHONY : CMakeFiles/camera_calibration.dir/rule + +# Convenience name for target. +camera_calibration: CMakeFiles/camera_calibration.dir/rule + +.PHONY : camera_calibration + +# clean rule for target. +CMakeFiles/camera_calibration.dir/clean: + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/clean +.PHONY : CMakeFiles/camera_calibration.dir/clean + +# clean rule for target. +clean: CMakeFiles/camera_calibration.dir/clean + +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/TargetDirectories.txt b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..0e9cb36 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/edit_cache.dir +/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/rebuild_cache.dir +/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/CXX.includecache b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/CXX.includecache new file mode 100644 index 0000000..d2a6e49 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/CXX.includecache @@ -0,0 +1,1316 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/main.cpp +opencv2/opencv.hpp +- + +/usr/local/include/opencv/cxcore.h +opencv2/core/core_c.h +/usr/local/include/opencv/opencv2/core/core_c.h + +/usr/local/include/opencv2/calib3d.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/opencv2/features2d.hpp +opencv2/core/affine.hpp +/usr/local/include/opencv2/opencv2/core/affine.hpp +opencv2/calib3d/calib3d_c.h +/usr/local/include/opencv2/opencv2/calib3d/calib3d_c.h + +/usr/local/include/opencv2/calib3d/calib3d_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/calib3d/opencv2/core/core_c.h + +/usr/local/include/opencv2/core.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/opencv2/core/cvdef.h +opencv2/core/version.hpp +/usr/local/include/opencv2/opencv2/core/version.hpp +opencv2/core/base.hpp +/usr/local/include/opencv2/opencv2/core/base.hpp +opencv2/core/cvstd.hpp +/usr/local/include/opencv2/opencv2/core/cvstd.hpp +opencv2/core/traits.hpp +/usr/local/include/opencv2/opencv2/core/traits.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv2/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/local/include/opencv2/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/local/include/opencv2/opencv2/core/mat.hpp +opencv2/core/persistence.hpp +/usr/local/include/opencv2/opencv2/core/persistence.hpp +opencv2/core/operations.hpp +/usr/local/include/opencv2/opencv2/core/operations.hpp +opencv2/core/cvstd.inl.hpp +/usr/local/include/opencv2/opencv2/core/cvstd.inl.hpp +opencv2/core/utility.hpp +/usr/local/include/opencv2/opencv2/core/utility.hpp +opencv2/core/optim.hpp +/usr/local/include/opencv2/opencv2/core/optim.hpp +opencv2/core/ovx.hpp +/usr/local/include/opencv2/opencv2/core/ovx.hpp + +/usr/local/include/opencv2/core/affine.hpp +opencv2/core.hpp +- + +/usr/local/include/opencv2/core/async.hpp +opencv2/core/mat.hpp +- +chrono +- + +/usr/local/include/opencv2/core/base.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/core/opencv2/opencv_modules.hpp +climits +- +algorithm +- +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/local/include/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/neon_utils.hpp +/usr/local/include/opencv2/core/opencv2/core/neon_utils.hpp +opencv2/core/vsx_utils.hpp +/usr/local/include/opencv2/core/opencv2/core/vsx_utils.hpp +opencv2/core/check.hpp +/usr/local/include/opencv2/core/opencv2/core/check.hpp + +/usr/local/include/opencv2/core/bufferpool.hpp + +/usr/local/include/opencv2/core/check.hpp +opencv2/core/base.hpp +- + +/usr/local/include/opencv2/core/core_c.h +opencv2/core/types_c.h +/usr/local/include/opencv2/core/opencv2/core/types_c.h +cxcore.h +/usr/local/include/opencv2/core/cxcore.h +cxcore.h +/usr/local/include/opencv2/core/cxcore.h +opencv2/core/utility.hpp +/usr/local/include/opencv2/core/opencv2/core/utility.hpp + +/usr/local/include/opencv2/core/cuda.hpp +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp +opencv2/core/cuda_types.hpp +/usr/local/include/opencv2/core/opencv2/core/cuda_types.hpp +opencv2/opencv.hpp +- +opencv2/core/cuda.inl.hpp +/usr/local/include/opencv2/core/opencv2/core/cuda.inl.hpp + +/usr/local/include/opencv2/core/cuda.inl.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/core/opencv2/core/cuda.hpp + +/usr/local/include/opencv2/core/cuda_types.hpp + +/usr/local/include/opencv2/core/cv_cpu_dispatch.h +cv_cpu_config.h +/usr/local/include/opencv2/core/cv_cpu_config.h +cv_cpu_helper.h +/usr/local/include/opencv2/core/cv_cpu_helper.h +emmintrin.h +- +pmmintrin.h +- +tmmintrin.h +- +smmintrin.h +- +nmmintrin.h +- +nmmintrin.h +- +popcntintrin.h +- +immintrin.h +- +arm_neon.h +- +immintrin.h +- +immintrin.h +- +immintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- +emmintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- + +/usr/local/include/opencv2/core/cv_cpu_helper.h + +/usr/local/include/opencv2/core/cvdef.h +cvconfig.h +/usr/local/include/opencv2/core/cvconfig.h +limits.h +- +opencv2/core/hal/interface.h +/usr/local/include/opencv2/core/opencv2/core/hal/interface.h +cv_cpu_dispatch.h +/usr/local/include/opencv2/core/cv_cpu_dispatch.h +intrin.h +- +array +- +cstdint +- +stdint.h +- +stdint.h +- +opencv2/core/fast_math.hpp +/usr/local/include/opencv2/core/opencv2/core/fast_math.hpp + +/usr/local/include/opencv2/core/cvstd.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +cstddef +- +cstring +- +cctype +- +string +- +algorithm +- +utility +- +cstdlib +- +cmath +- +opencv2/core/ptr.inl.hpp +/usr/local/include/opencv2/core/opencv2/core/ptr.inl.hpp + +/usr/local/include/opencv2/core/cvstd.inl.hpp +complex +- +ostream +- + +/usr/local/include/opencv2/core/fast_math.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +emmintrin.h +- +cmath +- +fastmath.h +- +math.h +- +tegra_round.hpp +/usr/local/include/opencv2/core/tegra_round.hpp + +/usr/local/include/opencv2/core/hal/interface.h +cstddef +- +stddef.h +- +stdbool.h +- +cstdint +- +stdint.h +- + +/usr/local/include/opencv2/core/mat.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv2/core/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/local/include/opencv2/core/opencv2/core/types.hpp +opencv2/core/bufferpool.hpp +/usr/local/include/opencv2/core/opencv2/core/bufferpool.hpp +type_traits +- +opencv2/core/mat.inl.hpp +/usr/local/include/opencv2/core/opencv2/core/mat.inl.hpp + +/usr/local/include/opencv2/core/mat.inl.hpp + +/usr/local/include/opencv2/core/matx.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/base.hpp +/usr/local/include/opencv2/core/opencv2/core/base.hpp +opencv2/core/traits.hpp +/usr/local/include/opencv2/core/opencv2/core/traits.hpp +opencv2/core/saturate.hpp +/usr/local/include/opencv2/core/opencv2/core/saturate.hpp +initializer_list +- + +/usr/local/include/opencv2/core/neon_utils.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h + +/usr/local/include/opencv2/core/operations.hpp +cstdio +- + +/usr/local/include/opencv2/core/optim.hpp +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp + +/usr/local/include/opencv2/core/ovx.hpp +cvdef.h +/usr/local/include/opencv2/core/cvdef.h + +/usr/local/include/opencv2/core/persistence.hpp +opencv2/core/types.hpp +/usr/local/include/opencv2/core/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/local/include/opencv2/core/opencv2/core/mat.hpp +opencv2/opencv.hpp +/usr/local/include/opencv2/core/opencv2/opencv.hpp +time.h +- + +/usr/local/include/opencv2/core/ptr.inl.hpp +algorithm +- + +/usr/local/include/opencv2/core/saturate.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/fast_math.hpp +/usr/local/include/opencv2/core/opencv2/core/fast_math.hpp + +/usr/local/include/opencv2/core/traits.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h + +/usr/local/include/opencv2/core/types.hpp +climits +- +cfloat +- +vector +- +limits +- +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/local/include/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv2/core/opencv2/core/matx.hpp + +/usr/local/include/opencv2/core/types_c.h +ipl.h +- +ipl/ipl.h +- +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +assert.h +- +stdlib.h +- +string.h +- +float.h +- +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp + +/usr/local/include/opencv2/core/utility.hpp +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp +ostream +- +functional +- +opencv2/core/core_c.h +/usr/local/include/opencv2/core/opencv2/core/core_c.h + +/usr/local/include/opencv2/core/version.hpp + +/usr/local/include/opencv2/core/vsx_utils.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +assert.h +- + +/usr/local/include/opencv2/dnn.hpp +opencv2/dnn/dnn.hpp +- + +/usr/local/include/opencv2/dnn/dict.hpp +opencv2/core.hpp +- +map +- +ostream +- +opencv2/dnn/dnn.hpp +- + +/usr/local/include/opencv2/dnn/dnn.hpp +vector +- +opencv2/core.hpp +- +opencv2/core/async.hpp +/usr/local/include/opencv2/dnn/opencv2/core/async.hpp +opencv2/dnn/dict.hpp +- +opencv2/dnn/layer.hpp +- +opencv2/dnn/dnn.inl.hpp +- +opencv2/dnn/utils/inference_engine.hpp +- + +/usr/local/include/opencv2/dnn/dnn.inl.hpp +opencv2/dnn.hpp +- + +/usr/local/include/opencv2/dnn/layer.hpp +opencv2/dnn.hpp +- + +/usr/local/include/opencv2/dnn/utils/inference_engine.hpp +../dnn.hpp +/usr/local/include/opencv2/dnn/dnn.hpp + +/usr/local/include/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/local/include/opencv2/opencv2/flann/miniflann.hpp + +/usr/local/include/opencv2/flann.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/local/include/opencv2/opencv2/flann/miniflann.hpp +opencv2/flann/flann_base.hpp +/usr/local/include/opencv2/opencv2/flann/flann_base.hpp + +/usr/local/include/opencv2/flann/all_indices.h +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +kdtree_index.h +/usr/local/include/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/local/include/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/local/include/opencv2/flann/kmeans_index.h +composite_index.h +/usr/local/include/opencv2/flann/composite_index.h +linear_index.h +/usr/local/include/opencv2/flann/linear_index.h +hierarchical_clustering_index.h +/usr/local/include/opencv2/flann/hierarchical_clustering_index.h +lsh_index.h +/usr/local/include/opencv2/flann/lsh_index.h +autotuned_index.h +/usr/local/include/opencv2/flann/autotuned_index.h + +/usr/local/include/opencv2/flann/allocator.h +stdlib.h +- +stdio.h +- + +/usr/local/include/opencv2/flann/any.h +defines.h +/usr/local/include/opencv2/flann/defines.h +stdexcept +- +ostream +- +typeinfo +- + +/usr/local/include/opencv2/flann/autotuned_index.h +sstream +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +ground_truth.h +/usr/local/include/opencv2/flann/ground_truth.h +index_testing.h +/usr/local/include/opencv2/flann/index_testing.h +sampling.h +/usr/local/include/opencv2/flann/sampling.h +kdtree_index.h +/usr/local/include/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/local/include/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/local/include/opencv2/flann/kmeans_index.h +composite_index.h +/usr/local/include/opencv2/flann/composite_index.h +linear_index.h +/usr/local/include/opencv2/flann/linear_index.h +logger.h +/usr/local/include/opencv2/flann/logger.h + +/usr/local/include/opencv2/flann/composite_index.h +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +kdtree_index.h +/usr/local/include/opencv2/flann/kdtree_index.h +kmeans_index.h +/usr/local/include/opencv2/flann/kmeans_index.h + +/usr/local/include/opencv2/flann/config.h + +/usr/local/include/opencv2/flann/defines.h +config.h +/usr/local/include/opencv2/flann/config.h + +/usr/local/include/opencv2/flann/dist.h +cmath +- +cstdlib +- +string.h +- +stdint.h +- +defines.h +/usr/local/include/opencv2/flann/defines.h +Intrin.h +- +arm_neon.h +/usr/local/include/opencv2/flann/arm_neon.h + +/usr/local/include/opencv2/flann/dynamic_bitset.h +boost/dynamic_bitset.hpp +- +limits.h +- +dist.h +/usr/local/include/opencv2/flann/dist.h + +/usr/local/include/opencv2/flann/flann_base.hpp +vector +- +cassert +- +cstdio +- +general.h +/usr/local/include/opencv2/flann/general.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +params.h +/usr/local/include/opencv2/flann/params.h +saving.h +/usr/local/include/opencv2/flann/saving.h +all_indices.h +/usr/local/include/opencv2/flann/all_indices.h + +/usr/local/include/opencv2/flann/general.h +opencv2/core.hpp +/usr/local/include/opencv2/flann/opencv2/core.hpp + +/usr/local/include/opencv2/flann/ground_truth.h +dist.h +/usr/local/include/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h + +/usr/local/include/opencv2/flann/heap.h +algorithm +- +vector +- + +/usr/local/include/opencv2/flann/hierarchical_clustering_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +dist.h +/usr/local/include/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/index_testing.h +cstring +- +cassert +- +cmath +- +matrix.h +/usr/local/include/opencv2/flann/matrix.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +logger.h +/usr/local/include/opencv2/flann/logger.h +timer.h +/usr/local/include/opencv2/flann/timer.h + +/usr/local/include/opencv2/flann/kdtree_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +dynamic_bitset.h +/usr/local/include/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/kdtree_single_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/kmeans_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +dist.h +/usr/local/include/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h +logger.h +/usr/local/include/opencv2/flann/logger.h + +/usr/local/include/opencv2/flann/linear_index.h +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h + +/usr/local/include/opencv2/flann/logger.h +stdio.h +- +stdarg.h +- +defines.h +/usr/local/include/opencv2/flann/defines.h + +/usr/local/include/opencv2/flann/lsh_index.h +algorithm +- +cassert +- +cstring +- +map +- +vector +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +lsh_table.h +/usr/local/include/opencv2/flann/lsh_table.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/lsh_table.h +algorithm +- +iostream +- +iomanip +- +limits.h +- +unordered_map +- +map +- +math.h +- +stddef.h +- +dynamic_bitset.h +/usr/local/include/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h + +/usr/local/include/opencv2/flann/matrix.h +stdio.h +- +general.h +/usr/local/include/opencv2/flann/general.h + +/usr/local/include/opencv2/flann/miniflann.hpp +opencv2/core.hpp +/usr/local/include/opencv2/flann/opencv2/core.hpp +opencv2/flann/defines.h +/usr/local/include/opencv2/flann/opencv2/flann/defines.h + +/usr/local/include/opencv2/flann/nn_index.h +general.h +/usr/local/include/opencv2/flann/general.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +params.h +/usr/local/include/opencv2/flann/params.h + +/usr/local/include/opencv2/flann/params.h +any.h +/usr/local/include/opencv2/flann/any.h +general.h +/usr/local/include/opencv2/flann/general.h +iostream +- +map +- + +/usr/local/include/opencv2/flann/random.h +algorithm +- +cstdlib +- +vector +- +general.h +/usr/local/include/opencv2/flann/general.h + +/usr/local/include/opencv2/flann/result_set.h +algorithm +- +cstring +- +iostream +- +limits +- +set +- +vector +- + +/usr/local/include/opencv2/flann/sampling.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +random.h +/usr/local/include/opencv2/flann/random.h + +/usr/local/include/opencv2/flann/saving.h +cstring +- +vector +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h + +/usr/local/include/opencv2/flann/timer.h +time.h +- +opencv2/core.hpp +/usr/local/include/opencv2/flann/opencv2/core.hpp +opencv2/core/utility.hpp +/usr/local/include/opencv2/flann/opencv2/core/utility.hpp + +/usr/local/include/opencv2/highgui.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/imgcodecs.hpp +/usr/local/include/opencv2/opencv2/imgcodecs.hpp +opencv2/videoio.hpp +/usr/local/include/opencv2/opencv2/videoio.hpp +opencv2/highgui/highgui_c.h +/usr/local/include/opencv2/opencv2/highgui/highgui_c.h + +/usr/local/include/opencv2/highgui/highgui_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/highgui/opencv2/core/core_c.h +opencv2/imgproc/imgproc_c.h +/usr/local/include/opencv2/highgui/opencv2/imgproc/imgproc_c.h +opencv2/imgcodecs/imgcodecs_c.h +/usr/local/include/opencv2/highgui/opencv2/imgcodecs/imgcodecs_c.h +opencv2/videoio/videoio_c.h +/usr/local/include/opencv2/highgui/opencv2/videoio/videoio_c.h + +/usr/local/include/opencv2/imgcodecs.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp + +/usr/local/include/opencv2/imgcodecs/imgcodecs_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/imgcodecs/opencv2/core/core_c.h + +/usr/local/include/opencv2/imgproc.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/imgproc/imgproc_c.h +/usr/local/include/opencv2/opencv2/imgproc/imgproc_c.h + +/usr/local/include/opencv2/imgproc/imgproc_c.h +opencv2/imgproc/types_c.h +/usr/local/include/opencv2/imgproc/opencv2/imgproc/types_c.h + +/usr/local/include/opencv2/imgproc/types_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/imgproc/opencv2/core/core_c.h + +/usr/local/include/opencv2/ml.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +float.h +- +map +- +iostream +- +opencv2/ml/ml.inl.hpp +- + +/usr/local/include/opencv2/ml/ml.inl.hpp + +/usr/local/include/opencv2/objdetect.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/objdetect/detection_based_tracker.hpp +/usr/local/include/opencv2/opencv2/objdetect/detection_based_tracker.hpp +opencv2/objdetect/objdetect_c.h +/usr/local/include/opencv2/opencv2/objdetect/objdetect_c.h + +/usr/local/include/opencv2/objdetect/detection_based_tracker.hpp +opencv2/core.hpp +- +vector +- + +/usr/local/include/opencv2/objdetect/objdetect_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/objdetect/opencv2/core/core_c.h +deque +- +vector +- + +/usr/local/include/opencv2/opencv.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/calib3d.hpp +/usr/local/include/opencv2/opencv2/calib3d.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/opencv2/features2d.hpp +opencv2/dnn.hpp +/usr/local/include/opencv2/opencv2/dnn.hpp +opencv2/flann.hpp +/usr/local/include/opencv2/opencv2/flann.hpp +opencv2/highgui.hpp +/usr/local/include/opencv2/opencv2/highgui.hpp +opencv2/imgcodecs.hpp +/usr/local/include/opencv2/opencv2/imgcodecs.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/opencv2/imgproc.hpp +opencv2/ml.hpp +/usr/local/include/opencv2/opencv2/ml.hpp +opencv2/objdetect.hpp +/usr/local/include/opencv2/opencv2/objdetect.hpp +opencv2/photo.hpp +/usr/local/include/opencv2/opencv2/photo.hpp +opencv2/shape.hpp +/usr/local/include/opencv2/opencv2/shape.hpp +opencv2/stitching.hpp +/usr/local/include/opencv2/opencv2/stitching.hpp +opencv2/superres.hpp +/usr/local/include/opencv2/opencv2/superres.hpp +opencv2/video.hpp +/usr/local/include/opencv2/opencv2/video.hpp +opencv2/videoio.hpp +/usr/local/include/opencv2/opencv2/videoio.hpp +opencv2/videostab.hpp +/usr/local/include/opencv2/opencv2/videostab.hpp +opencv2/viz.hpp +/usr/local/include/opencv2/opencv2/viz.hpp +opencv2/cudaarithm.hpp +/usr/local/include/opencv2/opencv2/cudaarithm.hpp +opencv2/cudabgsegm.hpp +/usr/local/include/opencv2/opencv2/cudabgsegm.hpp +opencv2/cudacodec.hpp +/usr/local/include/opencv2/opencv2/cudacodec.hpp +opencv2/cudafeatures2d.hpp +/usr/local/include/opencv2/opencv2/cudafeatures2d.hpp +opencv2/cudafilters.hpp +/usr/local/include/opencv2/opencv2/cudafilters.hpp +opencv2/cudaimgproc.hpp +/usr/local/include/opencv2/opencv2/cudaimgproc.hpp +opencv2/cudaobjdetect.hpp +/usr/local/include/opencv2/opencv2/cudaobjdetect.hpp +opencv2/cudaoptflow.hpp +/usr/local/include/opencv2/opencv2/cudaoptflow.hpp +opencv2/cudastereo.hpp +/usr/local/include/opencv2/opencv2/cudastereo.hpp +opencv2/cudawarping.hpp +/usr/local/include/opencv2/opencv2/cudawarping.hpp + +/usr/local/include/opencv2/opencv_modules.hpp + +/usr/local/include/opencv2/photo.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/opencv2/imgproc.hpp +opencv2/photo/photo_c.h +/usr/local/include/opencv2/opencv2/photo/photo_c.h + +/usr/local/include/opencv2/photo/photo_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/photo/opencv2/core/core_c.h + +/usr/local/include/opencv2/shape.hpp +opencv2/shape/emdL1.hpp +/usr/local/include/opencv2/opencv2/shape/emdL1.hpp +opencv2/shape/shape_transformer.hpp +/usr/local/include/opencv2/opencv2/shape/shape_transformer.hpp +opencv2/shape/hist_cost.hpp +/usr/local/include/opencv2/opencv2/shape/hist_cost.hpp +opencv2/shape/shape_distance.hpp +/usr/local/include/opencv2/opencv2/shape/shape_distance.hpp + +/usr/local/include/opencv2/shape/emdL1.hpp +opencv2/core.hpp +/usr/local/include/opencv2/shape/opencv2/core.hpp + +/usr/local/include/opencv2/shape/hist_cost.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/shape/opencv2/imgproc.hpp + +/usr/local/include/opencv2/shape/shape_distance.hpp +opencv2/core.hpp +/usr/local/include/opencv2/shape/opencv2/core.hpp +opencv2/shape/hist_cost.hpp +/usr/local/include/opencv2/shape/opencv2/shape/hist_cost.hpp +opencv2/shape/shape_transformer.hpp +/usr/local/include/opencv2/shape/opencv2/shape/shape_transformer.hpp + +/usr/local/include/opencv2/shape/shape_transformer.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/shape/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/shape/opencv2/imgproc.hpp + +/usr/local/include/opencv2/stitching.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/opencv2/features2d.hpp +opencv2/stitching/warpers.hpp +/usr/local/include/opencv2/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/matchers.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/matchers.hpp +opencv2/stitching/detail/motion_estimators.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/motion_estimators.hpp +opencv2/stitching/detail/exposure_compensate.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/stitching/detail/seam_finders.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/seam_finders.hpp +opencv2/stitching/detail/blenders.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/blenders.hpp +opencv2/stitching/detail/camera.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/camera.hpp + +/usr/local/include/opencv2/stitching/detail/blenders.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core/cuda.hpp + +/usr/local/include/opencv2/stitching/detail/camera.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp + +/usr/local/include/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp + +/usr/local/include/opencv2/stitching/detail/matchers.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/opencv_modules.hpp +opencv2/xfeatures2d/cuda.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/xfeatures2d/cuda.hpp + +/usr/local/include/opencv2/stitching/detail/motion_estimators.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +matchers.hpp +/usr/local/include/opencv2/stitching/detail/matchers.hpp +util.hpp +/usr/local/include/opencv2/stitching/detail/util.hpp +camera.hpp +/usr/local/include/opencv2/stitching/detail/camera.hpp + +/usr/local/include/opencv2/stitching/detail/seam_finders.hpp +set +- +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/opencv_modules.hpp + +/usr/local/include/opencv2/stitching/detail/util.hpp +list +- +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +util_inl.hpp +/usr/local/include/opencv2/stitching/detail/util_inl.hpp + +/usr/local/include/opencv2/stitching/detail/util_inl.hpp +queue +- +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +util.hpp +/usr/local/include/opencv2/stitching/detail/util.hpp + +/usr/local/include/opencv2/stitching/detail/warpers.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core/cuda.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/imgproc.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/opencv_modules.hpp +warpers_inl.hpp +/usr/local/include/opencv2/stitching/detail/warpers_inl.hpp + +/usr/local/include/opencv2/stitching/detail/warpers_inl.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +warpers.hpp +/usr/local/include/opencv2/stitching/detail/warpers.hpp +limits +- + +/usr/local/include/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/warpers.hpp +/usr/local/include/opencv2/stitching/opencv2/stitching/detail/warpers.hpp + +/usr/local/include/opencv2/superres.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/superres/optical_flow.hpp +/usr/local/include/opencv2/opencv2/superres/optical_flow.hpp + +/usr/local/include/opencv2/superres/optical_flow.hpp +opencv2/core.hpp +/usr/local/include/opencv2/superres/opencv2/core.hpp + +/usr/local/include/opencv2/video.hpp +opencv2/video/tracking.hpp +/usr/local/include/opencv2/opencv2/video/tracking.hpp +opencv2/video/background_segm.hpp +/usr/local/include/opencv2/opencv2/video/background_segm.hpp +opencv2/video/tracking_c.h +/usr/local/include/opencv2/opencv2/video/tracking_c.h + +/usr/local/include/opencv2/video/background_segm.hpp +opencv2/core.hpp +/usr/local/include/opencv2/video/opencv2/core.hpp + +/usr/local/include/opencv2/video/tracking.hpp +opencv2/core.hpp +/usr/local/include/opencv2/video/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/video/opencv2/imgproc.hpp + +/usr/local/include/opencv2/video/tracking_c.h +opencv2/imgproc/types_c.h +/usr/local/include/opencv2/video/opencv2/imgproc/types_c.h + +/usr/local/include/opencv2/videoio.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp + +/usr/local/include/opencv2/videoio/videoio_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/videoio/opencv2/core/core_c.h + +/usr/local/include/opencv2/videostab.hpp +opencv2/videostab/stabilizer.hpp +/usr/local/include/opencv2/opencv2/videostab/stabilizer.hpp +opencv2/videostab/ring_buffer.hpp +/usr/local/include/opencv2/opencv2/videostab/ring_buffer.hpp + +/usr/local/include/opencv2/videostab/deblurring.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/fast_marching.hpp +cmath +- +queue +- +algorithm +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +fast_marching_inl.hpp +/usr/local/include/opencv2/videostab/fast_marching_inl.hpp + +/usr/local/include/opencv2/videostab/fast_marching_inl.hpp +opencv2/videostab/fast_marching.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/fast_marching.hpp + +/usr/local/include/opencv2/videostab/frame_source.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/global_motion.hpp +vector +- +fstream +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/videostab/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/videostab/opencv2/opencv_modules.hpp +opencv2/videostab/optical_flow.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/optical_flow.hpp +opencv2/videostab/motion_core.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/motion_core.hpp +opencv2/videostab/outlier_rejection.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/outlier_rejection.hpp +opencv2/cudaimgproc.hpp +/usr/local/include/opencv2/videostab/opencv2/cudaimgproc.hpp + +/usr/local/include/opencv2/videostab/inpainting.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/optical_flow.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/optical_flow.hpp +opencv2/videostab/fast_marching.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/fast_marching.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/photo.hpp +/usr/local/include/opencv2/videostab/opencv2/photo.hpp + +/usr/local/include/opencv2/videostab/log.hpp +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/motion_core.hpp +cmath +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/motion_stabilizing.hpp +vector +- +utility +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp + +/usr/local/include/opencv2/videostab/optical_flow.hpp +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/videostab/opencv2/opencv_modules.hpp +opencv2/cudaoptflow.hpp +/usr/local/include/opencv2/videostab/opencv2/cudaoptflow.hpp + +/usr/local/include/opencv2/videostab/outlier_rejection.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/motion_core.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/motion_core.hpp + +/usr/local/include/opencv2/videostab/ring_buffer.hpp +vector +- +opencv2/imgproc.hpp +/usr/local/include/opencv2/videostab/opencv2/imgproc.hpp + +/usr/local/include/opencv2/videostab/stabilizer.hpp +vector +- +ctime +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/videostab/opencv2/imgproc.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/videostab/motion_stabilizing.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/motion_stabilizing.hpp +opencv2/videostab/frame_source.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/frame_source.hpp +opencv2/videostab/log.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/log.hpp +opencv2/videostab/inpainting.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/inpainting.hpp +opencv2/videostab/deblurring.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/deblurring.hpp +opencv2/videostab/wobble_suppression.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/wobble_suppression.hpp + +/usr/local/include/opencv2/videostab/wobble_suppression.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/videostab/opencv2/core/cuda.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/videostab/log.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/log.hpp + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/DependInfo.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/DependInfo.cmake new file mode 100644 index 0000000..7a15c70 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/DependInfo.cmake @@ -0,0 +1,22 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/main.cpp" "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/local/include" + "/usr/local/include/opencv" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/build.make b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/build.make new file mode 100644 index 0000000..11471ef --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/build.make @@ -0,0 +1,130 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build + +# Include any dependencies generated for this target. +include CMakeFiles/camera_calibration.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/camera_calibration.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/camera_calibration.dir/flags.make + +CMakeFiles/camera_calibration.dir/main.cpp.o: CMakeFiles/camera_calibration.dir/flags.make +CMakeFiles/camera_calibration.dir/main.cpp.o: ../main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/camera_calibration.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/camera_calibration.dir/main.cpp.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/main.cpp + +CMakeFiles/camera_calibration.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/camera_calibration.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/main.cpp > CMakeFiles/camera_calibration.dir/main.cpp.i + +CMakeFiles/camera_calibration.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/camera_calibration.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/main.cpp -o CMakeFiles/camera_calibration.dir/main.cpp.s + +CMakeFiles/camera_calibration.dir/main.cpp.o.requires: + +.PHONY : CMakeFiles/camera_calibration.dir/main.cpp.o.requires + +CMakeFiles/camera_calibration.dir/main.cpp.o.provides: CMakeFiles/camera_calibration.dir/main.cpp.o.requires + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/main.cpp.o.provides.build +.PHONY : CMakeFiles/camera_calibration.dir/main.cpp.o.provides + +CMakeFiles/camera_calibration.dir/main.cpp.o.provides.build: CMakeFiles/camera_calibration.dir/main.cpp.o + + +# Object files for target camera_calibration +camera_calibration_OBJECTS = \ +"CMakeFiles/camera_calibration.dir/main.cpp.o" + +# External object files for target camera_calibration +camera_calibration_EXTERNAL_OBJECTS = + +camera_calibration: CMakeFiles/camera_calibration.dir/main.cpp.o +camera_calibration: CMakeFiles/camera_calibration.dir/build.make +camera_calibration: /usr/local/lib/libopencv_superres.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_shape.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_stitching.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_videostab.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_dnn.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_objdetect.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_ml.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_highgui.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_photo.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_video.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_calib3d.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_features2d.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_flann.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_videoio.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_imgcodecs.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_imgproc.so.3.4.7 +camera_calibration: /usr/local/lib/libopencv_core.so.3.4.7 +camera_calibration: CMakeFiles/camera_calibration.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable camera_calibration" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/camera_calibration.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/camera_calibration.dir/build: camera_calibration + +.PHONY : CMakeFiles/camera_calibration.dir/build + +CMakeFiles/camera_calibration.dir/requires: CMakeFiles/camera_calibration.dir/main.cpp.o.requires + +.PHONY : CMakeFiles/camera_calibration.dir/requires + +CMakeFiles/camera_calibration.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/camera_calibration.dir/cmake_clean.cmake +.PHONY : CMakeFiles/camera_calibration.dir/clean + +CMakeFiles/camera_calibration.dir/depend: + cd /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/camera_calibration.dir/depend + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/cmake_clean.cmake b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/cmake_clean.cmake new file mode 100644 index 0000000..177fbaa --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/camera_calibration.dir/main.cpp.o" + "camera_calibration.pdb" + "camera_calibration" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/camera_calibration.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/depend.internal b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/depend.internal new file mode 100644 index 0000000..b0c52d6 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/depend.internal @@ -0,0 +1,136 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/camera_calibration.dir/main.cpp.o + /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/main.cpp + /usr/local/include/opencv/cxcore.h + /usr/local/include/opencv2/calib3d.hpp + /usr/local/include/opencv2/calib3d/calib3d_c.h + /usr/local/include/opencv2/core.hpp + /usr/local/include/opencv2/core/affine.hpp + /usr/local/include/opencv2/core/async.hpp + /usr/local/include/opencv2/core/base.hpp + /usr/local/include/opencv2/core/bufferpool.hpp + /usr/local/include/opencv2/core/check.hpp + /usr/local/include/opencv2/core/core_c.h + /usr/local/include/opencv2/core/cuda.hpp + /usr/local/include/opencv2/core/cuda.inl.hpp + /usr/local/include/opencv2/core/cuda_types.hpp + /usr/local/include/opencv2/core/cv_cpu_dispatch.h + /usr/local/include/opencv2/core/cv_cpu_helper.h + /usr/local/include/opencv2/core/cvdef.h + /usr/local/include/opencv2/core/cvstd.hpp + /usr/local/include/opencv2/core/cvstd.inl.hpp + /usr/local/include/opencv2/core/fast_math.hpp + /usr/local/include/opencv2/core/hal/interface.h + /usr/local/include/opencv2/core/mat.hpp + /usr/local/include/opencv2/core/mat.inl.hpp + /usr/local/include/opencv2/core/matx.hpp + /usr/local/include/opencv2/core/neon_utils.hpp + /usr/local/include/opencv2/core/operations.hpp + /usr/local/include/opencv2/core/optim.hpp + /usr/local/include/opencv2/core/ovx.hpp + /usr/local/include/opencv2/core/persistence.hpp + /usr/local/include/opencv2/core/ptr.inl.hpp + /usr/local/include/opencv2/core/saturate.hpp + /usr/local/include/opencv2/core/traits.hpp + /usr/local/include/opencv2/core/types.hpp + /usr/local/include/opencv2/core/types_c.h + /usr/local/include/opencv2/core/utility.hpp + /usr/local/include/opencv2/core/version.hpp + /usr/local/include/opencv2/core/vsx_utils.hpp + /usr/local/include/opencv2/dnn.hpp + /usr/local/include/opencv2/dnn/dict.hpp + /usr/local/include/opencv2/dnn/dnn.hpp + /usr/local/include/opencv2/dnn/dnn.inl.hpp + /usr/local/include/opencv2/dnn/layer.hpp + /usr/local/include/opencv2/dnn/utils/inference_engine.hpp + /usr/local/include/opencv2/features2d.hpp + /usr/local/include/opencv2/flann.hpp + /usr/local/include/opencv2/flann/all_indices.h + /usr/local/include/opencv2/flann/allocator.h + /usr/local/include/opencv2/flann/any.h + /usr/local/include/opencv2/flann/autotuned_index.h + /usr/local/include/opencv2/flann/composite_index.h + /usr/local/include/opencv2/flann/config.h + /usr/local/include/opencv2/flann/defines.h + /usr/local/include/opencv2/flann/dist.h + /usr/local/include/opencv2/flann/dynamic_bitset.h + /usr/local/include/opencv2/flann/flann_base.hpp + /usr/local/include/opencv2/flann/general.h + /usr/local/include/opencv2/flann/ground_truth.h + /usr/local/include/opencv2/flann/heap.h + /usr/local/include/opencv2/flann/hierarchical_clustering_index.h + /usr/local/include/opencv2/flann/index_testing.h + /usr/local/include/opencv2/flann/kdtree_index.h + /usr/local/include/opencv2/flann/kdtree_single_index.h + /usr/local/include/opencv2/flann/kmeans_index.h + /usr/local/include/opencv2/flann/linear_index.h + /usr/local/include/opencv2/flann/logger.h + /usr/local/include/opencv2/flann/lsh_index.h + /usr/local/include/opencv2/flann/lsh_table.h + /usr/local/include/opencv2/flann/matrix.h + /usr/local/include/opencv2/flann/miniflann.hpp + /usr/local/include/opencv2/flann/nn_index.h + /usr/local/include/opencv2/flann/params.h + /usr/local/include/opencv2/flann/random.h + /usr/local/include/opencv2/flann/result_set.h + /usr/local/include/opencv2/flann/sampling.h + /usr/local/include/opencv2/flann/saving.h + /usr/local/include/opencv2/flann/timer.h + /usr/local/include/opencv2/highgui.hpp + /usr/local/include/opencv2/highgui/highgui_c.h + /usr/local/include/opencv2/imgcodecs.hpp + /usr/local/include/opencv2/imgcodecs/imgcodecs_c.h + /usr/local/include/opencv2/imgproc.hpp + /usr/local/include/opencv2/imgproc/imgproc_c.h + /usr/local/include/opencv2/imgproc/types_c.h + /usr/local/include/opencv2/ml.hpp + /usr/local/include/opencv2/ml/ml.inl.hpp + /usr/local/include/opencv2/objdetect.hpp + /usr/local/include/opencv2/objdetect/detection_based_tracker.hpp + /usr/local/include/opencv2/objdetect/objdetect_c.h + /usr/local/include/opencv2/opencv.hpp + /usr/local/include/opencv2/opencv_modules.hpp + /usr/local/include/opencv2/photo.hpp + /usr/local/include/opencv2/photo/photo_c.h + /usr/local/include/opencv2/shape.hpp + /usr/local/include/opencv2/shape/emdL1.hpp + /usr/local/include/opencv2/shape/hist_cost.hpp + /usr/local/include/opencv2/shape/shape_distance.hpp + /usr/local/include/opencv2/shape/shape_transformer.hpp + /usr/local/include/opencv2/stitching.hpp + /usr/local/include/opencv2/stitching/detail/blenders.hpp + /usr/local/include/opencv2/stitching/detail/camera.hpp + /usr/local/include/opencv2/stitching/detail/exposure_compensate.hpp + /usr/local/include/opencv2/stitching/detail/matchers.hpp + /usr/local/include/opencv2/stitching/detail/motion_estimators.hpp + /usr/local/include/opencv2/stitching/detail/seam_finders.hpp + /usr/local/include/opencv2/stitching/detail/util.hpp + /usr/local/include/opencv2/stitching/detail/util_inl.hpp + /usr/local/include/opencv2/stitching/detail/warpers.hpp + /usr/local/include/opencv2/stitching/detail/warpers_inl.hpp + /usr/local/include/opencv2/stitching/warpers.hpp + /usr/local/include/opencv2/superres.hpp + /usr/local/include/opencv2/superres/optical_flow.hpp + /usr/local/include/opencv2/video.hpp + /usr/local/include/opencv2/video/background_segm.hpp + /usr/local/include/opencv2/video/tracking.hpp + /usr/local/include/opencv2/video/tracking_c.h + /usr/local/include/opencv2/videoio.hpp + /usr/local/include/opencv2/videoio/videoio_c.h + /usr/local/include/opencv2/videostab.hpp + /usr/local/include/opencv2/videostab/deblurring.hpp + /usr/local/include/opencv2/videostab/fast_marching.hpp + /usr/local/include/opencv2/videostab/fast_marching_inl.hpp + /usr/local/include/opencv2/videostab/frame_source.hpp + /usr/local/include/opencv2/videostab/global_motion.hpp + /usr/local/include/opencv2/videostab/inpainting.hpp + /usr/local/include/opencv2/videostab/log.hpp + /usr/local/include/opencv2/videostab/motion_core.hpp + /usr/local/include/opencv2/videostab/motion_stabilizing.hpp + /usr/local/include/opencv2/videostab/optical_flow.hpp + /usr/local/include/opencv2/videostab/outlier_rejection.hpp + /usr/local/include/opencv2/videostab/ring_buffer.hpp + /usr/local/include/opencv2/videostab/stabilizer.hpp + /usr/local/include/opencv2/videostab/wobble_suppression.hpp diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/depend.make b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/depend.make new file mode 100644 index 0000000..72b89f5 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/depend.make @@ -0,0 +1,136 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/camera_calibration.dir/main.cpp.o: ../main.cpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv/cxcore.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/calib3d.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/calib3d/calib3d_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/affine.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/async.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/base.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/bufferpool.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/check.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/core_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cuda.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cuda.inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cuda_types.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cv_cpu_dispatch.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cv_cpu_helper.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cvdef.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cvstd.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/cvstd.inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/fast_math.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/hal/interface.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/mat.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/mat.inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/matx.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/neon_utils.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/operations.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/optim.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/ovx.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/persistence.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/ptr.inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/saturate.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/traits.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/types.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/types_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/utility.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/version.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/core/vsx_utils.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/dnn.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/dnn/dict.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/dnn/dnn.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/dnn/dnn.inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/dnn/layer.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/dnn/utils/inference_engine.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/features2d.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/all_indices.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/allocator.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/any.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/autotuned_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/composite_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/config.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/defines.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/dist.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/dynamic_bitset.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/flann_base.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/general.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/ground_truth.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/heap.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/hierarchical_clustering_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/index_testing.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/kdtree_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/kdtree_single_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/kmeans_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/linear_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/logger.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/lsh_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/lsh_table.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/matrix.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/miniflann.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/nn_index.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/params.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/random.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/result_set.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/sampling.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/saving.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/flann/timer.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/highgui.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/highgui/highgui_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/imgcodecs.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/imgcodecs/imgcodecs_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/imgproc.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/imgproc/imgproc_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/imgproc/types_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/ml.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/ml/ml.inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/objdetect.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/objdetect/detection_based_tracker.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/objdetect/objdetect_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/opencv.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/opencv_modules.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/photo.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/photo/photo_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/shape.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/shape/emdL1.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/shape/hist_cost.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/shape/shape_distance.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/shape/shape_transformer.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/blenders.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/camera.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/exposure_compensate.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/matchers.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/motion_estimators.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/seam_finders.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/util.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/util_inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/warpers.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/warpers_inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/stitching/warpers.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/superres.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/superres/optical_flow.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/video.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/video/background_segm.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/video/tracking.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/video/tracking_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videoio.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videoio/videoio_c.h +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/deblurring.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/fast_marching.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/fast_marching_inl.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/frame_source.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/global_motion.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/inpainting.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/log.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/motion_core.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/motion_stabilizing.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/optical_flow.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/outlier_rejection.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/ring_buffer.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/stabilizer.hpp +CMakeFiles/camera_calibration.dir/main.cpp.o: /usr/local/include/opencv2/videostab/wobble_suppression.hpp + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/flags.make b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/flags.make new file mode 100644 index 0000000..2001b99 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -std=gnu++11 + +CXX_DEFINES = + +CXX_INCLUDES = -isystem /usr/local/include -isystem /usr/local/include/opencv + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/link.txt b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/link.txt new file mode 100644 index 0000000..75b7083 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/camera_calibration.dir/main.cpp.o -o camera_calibration /usr/local/lib/libopencv_superres.so.3.4.7 /usr/local/lib/libopencv_shape.so.3.4.7 /usr/local/lib/libopencv_stitching.so.3.4.7 /usr/local/lib/libopencv_videostab.so.3.4.7 /usr/local/lib/libopencv_dnn.so.3.4.7 /usr/local/lib/libopencv_objdetect.so.3.4.7 /usr/local/lib/libopencv_ml.so.3.4.7 /usr/local/lib/libopencv_highgui.so.3.4.7 /usr/local/lib/libopencv_photo.so.3.4.7 /usr/local/lib/libopencv_video.so.3.4.7 /usr/local/lib/libopencv_calib3d.so.3.4.7 /usr/local/lib/libopencv_features2d.so.3.4.7 /usr/local/lib/libopencv_flann.so.3.4.7 /usr/local/lib/libopencv_videoio.so.3.4.7 /usr/local/lib/libopencv_imgcodecs.so.3.4.7 /usr/local/lib/libopencv_imgproc.so.3.4.7 /usr/local/lib/libopencv_core.so.3.4.7 -Wl,-rpath,/usr/local/lib diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/main.cpp.o b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/main.cpp.o new file mode 100644 index 0000000..cd3cbc7 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/main.cpp.o differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/progress.make b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/camera_calibration.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/cmake.check_cache b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.bin b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000..6dd032f Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.bin differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.c b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..6590dde --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.cxx b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/progress.marks b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/train-2/zhongzebin-hm/camera_calibration/build/Makefile b/train-2/zhongzebin-hm/camera_calibration/build/Makefile new file mode 100644 index 0000000..77d51f8 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/Makefile @@ -0,0 +1,178 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named camera_calibration + +# Build rule for target. +camera_calibration: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 camera_calibration +.PHONY : camera_calibration + +# fast build rule for target. +camera_calibration/fast: + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/build +.PHONY : camera_calibration/fast + +main.o: main.cpp.o + +.PHONY : main.o + +# target to build an object file +main.cpp.o: + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i + +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s + +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + $(MAKE) -f CMakeFiles/camera_calibration.dir/build.make CMakeFiles/camera_calibration.dir/main.cpp.s +.PHONY : main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... camera_calibration" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/train-2/zhongzebin-hm/camera_calibration/build/camera_calibration b/train-2/zhongzebin-hm/camera_calibration/build/camera_calibration new file mode 100755 index 0000000..f15001a Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/build/camera_calibration differ diff --git a/train-2/zhongzebin-hm/camera_calibration/build/cmake_install.cmake b/train-2/zhongzebin-hm/camera_calibration/build/cmake_install.cmake new file mode 100644 index 0000000..31c42e8 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/build/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +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 "") + 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() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/zhongzebin/文档/SPTraining-VisionGroup/train-2/zhongzebin-hm/camera_calibration/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_29_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_29_Pro.jpg new file mode 100644 index 0000000..df50c9e Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_29_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_47_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_47_Pro.jpg new file mode 100644 index 0000000..b5bd789 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_47_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_49_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_49_Pro.jpg new file mode 100644 index 0000000..6993efb Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_49_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_50_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_50_Pro.jpg new file mode 100644 index 0000000..5e0ba72 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_50_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_52_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_52_Pro.jpg new file mode 100644 index 0000000..d90a366 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_52_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_54_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_54_Pro.jpg new file mode 100644 index 0000000..ee1b566 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_54_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_55_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_55_Pro.jpg new file mode 100644 index 0000000..32deba0 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_55_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_57_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_57_Pro.jpg new file mode 100644 index 0000000..b69874d Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_57_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_59_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_59_Pro.jpg new file mode 100644 index 0000000..c220965 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_25_59_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_03_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_03_Pro.jpg new file mode 100644 index 0000000..9d3affd Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_03_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_05_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_05_Pro.jpg new file mode 100644 index 0000000..8e896ba Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_05_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_07_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_07_Pro.jpg new file mode 100644 index 0000000..6e35bd8 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_07_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_09_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_09_Pro.jpg new file mode 100644 index 0000000..13511a3 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_09_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_11_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_11_Pro.jpg new file mode 100644 index 0000000..b3a8851 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_11_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_12_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_12_Pro.jpg new file mode 100644 index 0000000..5494688 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_12_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_15_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_15_Pro.jpg new file mode 100644 index 0000000..00c0c5a Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_15_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_16_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_16_Pro.jpg new file mode 100644 index 0000000..f67511a Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_16_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_19_Pro.jpg b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_19_Pro.jpg new file mode 100644 index 0000000..3828373 Binary files /dev/null and b/train-2/zhongzebin-hm/camera_calibration/calibration pictures/WIN_20190710_21_26_19_Pro.jpg differ diff --git a/train-2/zhongzebin-hm/camera_calibration/main.cpp b/train-2/zhongzebin-hm/camera_calibration/main.cpp new file mode 100644 index 0000000..7d10934 --- /dev/null +++ b/train-2/zhongzebin-hm/camera_calibration/main.cpp @@ -0,0 +1,73 @@ +#include +using namespace std; +using namespace cv; +int main() +{Mat cameraMatrix = Mat::eye(3, 3, CV_64F); + Mat distCoeffs = Mat::zeros(8, 1, CV_64F); + std::cout< corners;//每幅图角点 + vector> objectlist(1);//世界坐标系下的棋盘角点 + vector> cornerslist;//所有图中角点 + int i = 0, j = 0; + bool found;//是否找到角点 + //根据格子大小生成世界坐标系下角点的坐标,z=0 + for (i = 0; i < 7; ++i) + for (j = 0; j < 8; ++j) + { + objectlist[0].push_back(Point3f(j * 30, i * 30, 0)); + } + //读取棋盘图像 + string temp="../calibration pictures/WIN_20190710_21_"; + cal[0] = imread(temp+"25_29_Pro.jpg"); + cal[1] = imread(temp+"25_47_Pro.jpg"); + cal[2] = imread(temp+"25_49_Pro.jpg"); + cal[3] = imread(temp+"25_50_Pro.jpg"); + cal[4] = imread(temp+"25_52_Pro.jpg"); + cal[5] = imread(temp+"25_54_Pro.jpg"); + cal[6] = imread(temp+"25_55_Pro.jpg"); + cal[7] = imread(temp+"25_57_Pro.jpg"); + cal[8] = imread(temp+"25_59_Pro.jpg"); + cal[9] = imread(temp+"26_03_Pro.jpg"); + cal[10] = imread(temp+"26_05_Pro.jpg"); + cal[11] = imread(temp+"26_07_Pro.jpg"); + cal[12] = imread(temp+"26_09_Pro.jpg"); + cal[13] = imread(temp+"26_11_Pro.jpg"); + cal[14] = imread(temp+"26_12_Pro.jpg"); + cal[15] = imread(temp+"26_15_Pro.jpg"); + cal[16] = imread(temp+"26_16_Pro.jpg"); + cal[17] = imread(temp+"26_19_Pro.jpg"); + //对每个棋盘图像进行处理 + for (i = 0; i < 18; i++) + { + cvtColor(cal[i], cal[i], COLOR_BGR2GRAY); + //角点检测 + found = findChessboardCorners(cal[i], Size(8, 7), corners, CALIB_CB_ADAPTIVE_THRESH);//输入,(每行角点数,每列角点数),输出角点坐标,检测方式 + if (found) + { + //亚像素级别角点提取 + cornerSubPix(cal[i], corners, Size(11, 11), Size(-1, -1), TermCriteria(CV_TERMCRIT_EPS + CV_TERMCRIT_ITER, 30, 0.1));//输入,角点坐标,检测窗口的一半,死点窗口一半,检测方式 + //将从每个图像中找到的角点存入角点列表 + cornerslist.push_back(corners); + //角点绘制 + //drawChessboardCorners(cal[i], Size(9, 6), Mat(corners), found);//输入,(每行角点数,每列角点数),角点坐标,判据 + } + } + //imshow("test",cal[0]); + //waitKey(0); + + //准备相机标定参数 + objectlist.resize(cornerslist.size(), objectlist[0]); + vector rves, tvecs; + //进行相机标定 + calibrateCamera(objectlist, cornerslist, cal[0].size(), cameraMatrix, distCoeffs, rves, tvecs);//世界坐标系中的点,像素坐标系中的点,格子大小,相机内参,矫正参数,旋转向量,位移向量 + std::cout< +using namespace std; +using namespace cv; +int main() +{ + Mat src,org; + src=imread("../timg.jpeg"); + src.copyTo(org); + cvtColor(src,src,COLOR_BGR2GRAY); + threshold(src,src,100,255,THRESH_BINARY); + Moments m = moments(src,true); + Point p(m.m10/m.m00, m.m01/m.m00); + circle(org, p, 5, Scalar(128,0,0), -1); + imshow("center",org); + waitKey(0); +} diff --git a/train-2/zhongzebin-hm/find_center/timg.jpeg b/train-2/zhongzebin-hm/find_center/timg.jpeg new file mode 100644 index 0000000..e0cf605 Binary files /dev/null and b/train-2/zhongzebin-hm/find_center/timg.jpeg differ diff --git "a/train-2/zhongzebin-hm/find_center/\347\220\206\350\247\243.txt" "b/train-2/zhongzebin-hm/find_center/\347\220\206\350\247\243.txt" new file mode 100644 index 0000000..b888ff1 --- /dev/null +++ "b/train-2/zhongzebin-hm/find_center/\347\220\206\350\247\243.txt" @@ -0,0 +1,2 @@ +该算法的目的是找到图像中物体(单个)的中心点; +该算法的流程是读入图像-灰度化-二值化-找到图像中物体的矩-根据矩计算出物体中心点-将中心点标注在原图上。 diff --git a/train-2/zhongzebin-hm/thresh_ratio/CMakeLists.txt b/train-2/zhongzebin-hm/thresh_ratio/CMakeLists.txt new file mode 100644 index 0000000..271df66 --- /dev/null +++ b/train-2/zhongzebin-hm/thresh_ratio/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.5) +project(thresh_ratio) +find_package(OpenCV 3 REQUIRED) +set(CMAKE_CXX_STANDARD 11) +message(STATUS "OpenCV library status:") +message(STATUS " version: ${OpenCV_VERSION}") +message(STATUS " libraries: ${OpenCV_LIBS}") +message(STATUS " include path: ${OpenCV_INCLUDE_DIRS}") +add_executable(thresh_ratio main.cpp thresh.h) +target_link_libraries(homework1 LINK_PRIVATE ${OpenCV_LIBS}) diff --git a/train-2/zhongzebin-hm/thresh_ratio/main.cpp b/train-2/zhongzebin-hm/thresh_ratio/main.cpp new file mode 100644 index 0000000..dd49a13 --- /dev/null +++ b/train-2/zhongzebin-hm/thresh_ratio/main.cpp @@ -0,0 +1,14 @@ +#include "thresh.h" +#include +using namespace std; +using namespace cv; +int main() +{ + Mat src,dst; + src=imread("../warning.png"); + thresh T; + dst=T.proportion_thresh(src,80); + imshow("thresh",dst); + waitKey(0); + return 0; +} diff --git a/train-2/zhongzebin-hm/thresh_ratio/thresh.h b/train-2/zhongzebin-hm/thresh_ratio/thresh.h new file mode 100644 index 0000000..1910ccc --- /dev/null +++ b/train-2/zhongzebin-hm/thresh_ratio/thresh.h @@ -0,0 +1,32 @@ +// +// Created by zhongzebin on 2019/10/7. +// +#include +#include +#ifndef HOMEWORK1_TIMER_H +#define HOMEWORK1_TIMER_H +class thresh +{ +public: + Mat proportion_thresh(Mat src,int ratio) + { + cvtColor(src,src,COLOR_BGR2GRAY); + const int iter_rows=src.isContinuous() ? 1:src.rows; + const int iter_cols=src.rows*src.cols/iter_rows*src.channels(); + vector pixels; + for(int i=0;i(i); + for(int j=0;j +#include +#include +#include + +#include +#include // POSIX.(As C++11 doesn't support filesystem) + +namespace cf +{ + +class template_classifier; +using classifier = template_classifier; + +class template_classifier +{ +public: + using container_t = std::vector;//container_t表示图像容器 + // Constructor,构造函数 + template_classifier(const std::string& g_loc, const std::string& b_loc)//其中loc代表地址 + { create_templates(g_loc, b_loc); } + template_classifier(const std::string& loc) + { + if(loc.back() == '/' || loc.back() == '\\')//判断地址字符串最后是否加了/,没加的话加上 + create_templates(loc+"positive", loc+"negative"); + else + create_templates(loc+"/positive", loc+"/negative"); + } + inline void create_templates(const std::string& g_loc, const std::string& b_loc)//内联函数相当于直接将代码粘贴到调用处,减少查找函数的时间 + { + container_t ret; + good_templates = make_templates_(g_loc);//返回正样本 + bad_templates = make_templates_(b_loc);//返回负样本 + /*good_templates_debug=good_templates; + bad_templates_debug=bad_templates; + for(int i=0;i(i); + for (uint32_t j = 0; j < iter_cols; ++j) + { + uchar value=row_ptr[i*iter_cols+j]; + if(value==1) row_ptr[i*iter_cols+j]=255; + } + } + cv::imwrite("../change/"+std::to_string(i)+".png", good_templates_debug[i]); + }*/ + } + inline int forward(cv::Mat mat) // noexcept + { + prepare_(mat); + int match_id = 0; + int now_belief; + int max_belief = std::numeric_limits::min();//int型最小值 + int id = 0; + for(; id < good_templates.size(); ++id)//遍历所有的正样本 + { + now_belief = compare_(mat, good_templates[id]);//比较输入图像和正样本,返回当前置信度 + // std::cout << id << " --- " << now_belief << '\n'; + if(max_belief < now_belief)//求得对应置信度最大的正样本 + { + max_belief = now_belief; + match_id = id; + } + } + if(max_belief < low_bound)//如果最大置信度小于阈值,返回当前id(对应最后的正样本id+1) + return id; + for(int i = 0; i < bad_templates.size(); ++id, ++i)//遍历所有的负样本 + { + now_belief = compare_(mat, bad_templates[i]); + // std::cout << id << " --- " << now_belief << '\n'; + if(max_belief < now_belief) // 如果当前置信度大于最大置信度,返回最后的正样本id+1 + return id; + } + return match_id;//返回匹配的正样本id + } + inline bool boolean_forward(cv::Mat& mat) + { + return forward(mat) < good_templates.size();//如果成功找到对应的正样本,返回1 + } + inline void debug_prepared_show(cv::Mat& x) + { + debug_prepare_(x); + cv::imshow("debug", x); + } +public: // Default values. + double thre_proportion = 0.25; // 比例阈值,取直方图中thre_proportion位置亮的像素作为thre,把前0.25亮的元素取1,其余取0 + int low_bound = 1000;//最小置信阈值 + cv::Size2i fixed_sz = {64, 64};//所有读入的图像都放缩到fixed_sz大小 +private: + // @@@ get_threshold: 按获取一个cv::Mat的阈值 + inline int get_threshold_(cv::Mat& mat) + { + uint32_t iter_rows = mat.rows; + uint32_t iter_cols = mat.cols; + auto sum_pixel = iter_rows * iter_cols; + if(mat.isContinuous()) + { + iter_cols = sum_pixel; + iter_rows = 1; + } + int histogram[256]; + memset(histogram, 0, sizeof(histogram)); + for (uint32_t i = 0; i < iter_rows; ++i) + { + const uchar* lhs = mat.ptr(i); + for (uint32_t j = 0; j < iter_cols; ++j) + ++histogram[*lhs++]; + } + auto left = thre_proportion * sum_pixel; + int i = 255; + while((left -= histogram[i--]) > 0); + if(std::max(i,0)>5) + return std::max(i, 0); + else return 255; + } + inline void debug_prepare_(cv::Mat& mat) + { + // std::cout << dst_sz << std::endl; + cv::resize(mat, mat, fixed_sz); + cv::threshold(mat, mat, get_threshold_(mat), 255, cv::THRESH_BINARY); + } + // @@@ prepare_ + inline void prepare_(cv::Mat& mat) + { + // std::cout << dst_sz << std::endl; + cv::resize(mat, mat, fixed_sz);//放缩图像 + cv::threshold(mat, mat, get_threshold_(mat), 1, cv::THRESH_BINARY);//二值化图像,前0.25亮取1,反之取0 + } + // @@@ make_templates_ + inline container_t make_templates_(const std::string& where) + { + container_t ret; + // std::cout << where.c_str() << std::endl; + DIR* dir_ptr = opendir(where.c_str());//.c_str()返回指向该字符串的指针,形式为char*,dir_ptr为该文件夹目录 + dirent* dptr; + while((dptr = readdir(dir_ptr)) != NULL)//将dir_ptr目录下的文件信息依次传入dptr中 + { + if(dptr->d_name[0] == '.')//如果文件名第一位为.则进行下一个 + continue; + cv::Mat tem; + if(where.back() == '/')//判断where最后一位是否为/,不是的话就加上 + tem = cv::imread(where+dptr->d_name, cv::IMREAD_GRAYSCALE); + else + tem = cv::imread(where+'/'+dptr->d_name, cv::IMREAD_GRAYSCALE);//图像读入tem中 + prepare_(tem); + ret.push_back(tem);//将变换后的图像放入ret中 + } + std::cout << "@@@ " << where << " ~ " << ret.size() << " file reading finished.\n"; + return ret; + } + // @@@ compare_ + inline int compare_(cv::Mat& tem, cv::Mat& true_sample) + { + uint32_t iter_rows = fixed_sz.height; + uint32_t iter_cols = fixed_sz.width; + auto sum_pixel = iter_rows * iter_cols; + if(tem.isContinuous() && true_sample.isContinuous()) + { + iter_cols = sum_pixel; + iter_rows = 1; + } + int same_cnt = 0; + for (uint32_t i = 0; i < iter_rows; ++i) + { + const uchar* lhs = tem.ptr(i); + const uchar* rhs = true_sample.ptr(i); + for (uint32_t j = 0; j < iter_cols; ++j) + { + bool l = *lhs++, r = *rhs++; + if(!l && !r)//如果l,r都为0,same_cnt不变 + continue; + same_cnt += (l && r) ? 3 : -1;//如果l,r都为1,same_cnt+3;如果l,r一个为0一个为1,same_cnt-1 + } + } + return same_cnt; + } +private: + container_t good_templates; + container_t bad_templates; + //container_t good_templates_debug; + //container_t bad_templates_debug; +}; // class template_classifier + + + +} // namespace sp diff --git a/train-3/zhongzebin-hm/find_armors/detect/1.jpg b/train-3/zhongzebin-hm/find_armors/detect/1.jpg new file mode 100644 index 0000000..8d93386 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/1.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/10.jpg b/train-3/zhongzebin-hm/find_armors/detect/10.jpg new file mode 100644 index 0000000..38ce03e Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/10.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/100.jpg b/train-3/zhongzebin-hm/find_armors/detect/100.jpg new file mode 100644 index 0000000..fd354de Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/100.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/101.jpg b/train-3/zhongzebin-hm/find_armors/detect/101.jpg new file mode 100644 index 0000000..36c164c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/101.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/102.jpg b/train-3/zhongzebin-hm/find_armors/detect/102.jpg new file mode 100644 index 0000000..ce40b72 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/102.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/103.jpg b/train-3/zhongzebin-hm/find_armors/detect/103.jpg new file mode 100644 index 0000000..eb59b64 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/103.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/104.jpg b/train-3/zhongzebin-hm/find_armors/detect/104.jpg new file mode 100644 index 0000000..0275d32 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/104.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/105.jpg b/train-3/zhongzebin-hm/find_armors/detect/105.jpg new file mode 100644 index 0000000..d5b92b8 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/105.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/106.jpg b/train-3/zhongzebin-hm/find_armors/detect/106.jpg new file mode 100644 index 0000000..ea67465 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/106.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/107.jpg b/train-3/zhongzebin-hm/find_armors/detect/107.jpg new file mode 100644 index 0000000..e52c386 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/107.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/11.jpg b/train-3/zhongzebin-hm/find_armors/detect/11.jpg new file mode 100644 index 0000000..2c05cb6 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/11.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/12.jpg b/train-3/zhongzebin-hm/find_armors/detect/12.jpg new file mode 100644 index 0000000..16585b2 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/12.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/13.jpg b/train-3/zhongzebin-hm/find_armors/detect/13.jpg new file mode 100644 index 0000000..f24bb5f Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/13.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/14.jpg b/train-3/zhongzebin-hm/find_armors/detect/14.jpg new file mode 100644 index 0000000..56efb0e Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/14.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/15.jpg b/train-3/zhongzebin-hm/find_armors/detect/15.jpg new file mode 100644 index 0000000..9d9c051 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/15.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/16.jpg b/train-3/zhongzebin-hm/find_armors/detect/16.jpg new file mode 100644 index 0000000..e3cc31c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/16.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/17.jpg b/train-3/zhongzebin-hm/find_armors/detect/17.jpg new file mode 100644 index 0000000..cbb6a16 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/17.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/18.jpg b/train-3/zhongzebin-hm/find_armors/detect/18.jpg new file mode 100644 index 0000000..199e9ba Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/18.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/19.jpg b/train-3/zhongzebin-hm/find_armors/detect/19.jpg new file mode 100644 index 0000000..a274803 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/19.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/2.jpg b/train-3/zhongzebin-hm/find_armors/detect/2.jpg new file mode 100644 index 0000000..1fc98f8 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/2.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/20.jpg b/train-3/zhongzebin-hm/find_armors/detect/20.jpg new file mode 100644 index 0000000..864562a Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/20.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/21.jpg b/train-3/zhongzebin-hm/find_armors/detect/21.jpg new file mode 100644 index 0000000..ffcb42a Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/21.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/22.jpg b/train-3/zhongzebin-hm/find_armors/detect/22.jpg new file mode 100644 index 0000000..8dc20c5 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/22.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/23.jpg b/train-3/zhongzebin-hm/find_armors/detect/23.jpg new file mode 100644 index 0000000..7526868 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/23.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/24.jpg b/train-3/zhongzebin-hm/find_armors/detect/24.jpg new file mode 100644 index 0000000..669982d Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/24.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/25.jpg b/train-3/zhongzebin-hm/find_armors/detect/25.jpg new file mode 100644 index 0000000..933a8df Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/25.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/26.jpg b/train-3/zhongzebin-hm/find_armors/detect/26.jpg new file mode 100644 index 0000000..8379636 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/26.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/27.jpg b/train-3/zhongzebin-hm/find_armors/detect/27.jpg new file mode 100644 index 0000000..b17d1ac Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/27.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/28.jpg b/train-3/zhongzebin-hm/find_armors/detect/28.jpg new file mode 100644 index 0000000..f7ec3ba Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/28.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/29.jpg b/train-3/zhongzebin-hm/find_armors/detect/29.jpg new file mode 100644 index 0000000..8812973 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/29.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/3.jpg b/train-3/zhongzebin-hm/find_armors/detect/3.jpg new file mode 100644 index 0000000..99577b2 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/3.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/30.jpg b/train-3/zhongzebin-hm/find_armors/detect/30.jpg new file mode 100644 index 0000000..ed463bc Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/30.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/31.jpg b/train-3/zhongzebin-hm/find_armors/detect/31.jpg new file mode 100644 index 0000000..ad84f31 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/31.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/32.jpg b/train-3/zhongzebin-hm/find_armors/detect/32.jpg new file mode 100644 index 0000000..b22db83 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/32.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/33.jpg b/train-3/zhongzebin-hm/find_armors/detect/33.jpg new file mode 100644 index 0000000..b5792c0 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/33.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/34.jpg b/train-3/zhongzebin-hm/find_armors/detect/34.jpg new file mode 100644 index 0000000..39b6195 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/34.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/35.jpg b/train-3/zhongzebin-hm/find_armors/detect/35.jpg new file mode 100644 index 0000000..9bd5956 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/35.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/36.jpg b/train-3/zhongzebin-hm/find_armors/detect/36.jpg new file mode 100644 index 0000000..a1c487c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/36.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/37.jpg b/train-3/zhongzebin-hm/find_armors/detect/37.jpg new file mode 100644 index 0000000..0d1f65c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/37.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/38.jpg b/train-3/zhongzebin-hm/find_armors/detect/38.jpg new file mode 100644 index 0000000..fcfec56 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/38.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/39.jpg b/train-3/zhongzebin-hm/find_armors/detect/39.jpg new file mode 100644 index 0000000..3eeed5d Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/39.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/4.jpg b/train-3/zhongzebin-hm/find_armors/detect/4.jpg new file mode 100644 index 0000000..74f3697 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/4.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/40.jpg b/train-3/zhongzebin-hm/find_armors/detect/40.jpg new file mode 100644 index 0000000..68a8ff1 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/40.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/41.jpg b/train-3/zhongzebin-hm/find_armors/detect/41.jpg new file mode 100644 index 0000000..fc5234d Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/41.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/42.jpg b/train-3/zhongzebin-hm/find_armors/detect/42.jpg new file mode 100644 index 0000000..528aff5 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/42.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/43.jpg b/train-3/zhongzebin-hm/find_armors/detect/43.jpg new file mode 100644 index 0000000..6bb5a02 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/43.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/44.jpg b/train-3/zhongzebin-hm/find_armors/detect/44.jpg new file mode 100644 index 0000000..3721771 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/44.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/45.jpg b/train-3/zhongzebin-hm/find_armors/detect/45.jpg new file mode 100644 index 0000000..8e8b0e2 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/45.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/46.jpg b/train-3/zhongzebin-hm/find_armors/detect/46.jpg new file mode 100644 index 0000000..2887991 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/46.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/47.jpg b/train-3/zhongzebin-hm/find_armors/detect/47.jpg new file mode 100644 index 0000000..91bc16b Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/47.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/48.jpg b/train-3/zhongzebin-hm/find_armors/detect/48.jpg new file mode 100644 index 0000000..7179a8d Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/48.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/49.jpg b/train-3/zhongzebin-hm/find_armors/detect/49.jpg new file mode 100644 index 0000000..cc19bf4 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/49.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/5.jpg b/train-3/zhongzebin-hm/find_armors/detect/5.jpg new file mode 100644 index 0000000..0148e12 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/5.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/50.jpg b/train-3/zhongzebin-hm/find_armors/detect/50.jpg new file mode 100644 index 0000000..2ec1880 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/50.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/51.jpg b/train-3/zhongzebin-hm/find_armors/detect/51.jpg new file mode 100644 index 0000000..27d445b Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/51.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/52.jpg b/train-3/zhongzebin-hm/find_armors/detect/52.jpg new file mode 100644 index 0000000..575adbd Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/52.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/53.jpg b/train-3/zhongzebin-hm/find_armors/detect/53.jpg new file mode 100644 index 0000000..676f216 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/53.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/54.jpg b/train-3/zhongzebin-hm/find_armors/detect/54.jpg new file mode 100644 index 0000000..fe83e51 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/54.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/55.jpg b/train-3/zhongzebin-hm/find_armors/detect/55.jpg new file mode 100644 index 0000000..28977f4 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/55.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/56.jpg b/train-3/zhongzebin-hm/find_armors/detect/56.jpg new file mode 100644 index 0000000..fce9c2c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/56.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/57.jpg b/train-3/zhongzebin-hm/find_armors/detect/57.jpg new file mode 100644 index 0000000..3b58924 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/57.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/58.jpg b/train-3/zhongzebin-hm/find_armors/detect/58.jpg new file mode 100644 index 0000000..ca1ee78 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/58.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/59.jpg b/train-3/zhongzebin-hm/find_armors/detect/59.jpg new file mode 100644 index 0000000..66c3e7f Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/59.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/6.jpg b/train-3/zhongzebin-hm/find_armors/detect/6.jpg new file mode 100644 index 0000000..d89d9b3 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/6.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/60.jpg b/train-3/zhongzebin-hm/find_armors/detect/60.jpg new file mode 100644 index 0000000..81d6eeb Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/60.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/61.jpg b/train-3/zhongzebin-hm/find_armors/detect/61.jpg new file mode 100644 index 0000000..642b4b5 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/61.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/62.jpg b/train-3/zhongzebin-hm/find_armors/detect/62.jpg new file mode 100644 index 0000000..29be04c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/62.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/63.jpg b/train-3/zhongzebin-hm/find_armors/detect/63.jpg new file mode 100644 index 0000000..4055bc2 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/63.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/64.jpg b/train-3/zhongzebin-hm/find_armors/detect/64.jpg new file mode 100644 index 0000000..4e357d6 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/64.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/65.jpg b/train-3/zhongzebin-hm/find_armors/detect/65.jpg new file mode 100644 index 0000000..edc36cb Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/65.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/66.jpg b/train-3/zhongzebin-hm/find_armors/detect/66.jpg new file mode 100644 index 0000000..7838208 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/66.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/67.jpg b/train-3/zhongzebin-hm/find_armors/detect/67.jpg new file mode 100644 index 0000000..5081760 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/67.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/68.jpg b/train-3/zhongzebin-hm/find_armors/detect/68.jpg new file mode 100644 index 0000000..d142558 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/68.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/69.jpg b/train-3/zhongzebin-hm/find_armors/detect/69.jpg new file mode 100644 index 0000000..5704db4 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/69.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/7.jpg b/train-3/zhongzebin-hm/find_armors/detect/7.jpg new file mode 100644 index 0000000..f968f45 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/7.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/70.jpg b/train-3/zhongzebin-hm/find_armors/detect/70.jpg new file mode 100644 index 0000000..2bf3df9 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/70.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/71.jpg b/train-3/zhongzebin-hm/find_armors/detect/71.jpg new file mode 100644 index 0000000..7c38a5e Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/71.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/72.jpg b/train-3/zhongzebin-hm/find_armors/detect/72.jpg new file mode 100644 index 0000000..d50e68c Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/72.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/73.jpg b/train-3/zhongzebin-hm/find_armors/detect/73.jpg new file mode 100644 index 0000000..fe44e63 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/73.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/74.jpg b/train-3/zhongzebin-hm/find_armors/detect/74.jpg new file mode 100644 index 0000000..4580147 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/74.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/75.jpg b/train-3/zhongzebin-hm/find_armors/detect/75.jpg new file mode 100644 index 0000000..1a6dc6f Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/75.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/76.jpg b/train-3/zhongzebin-hm/find_armors/detect/76.jpg new file mode 100644 index 0000000..bbae68d Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/76.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/77.jpg b/train-3/zhongzebin-hm/find_armors/detect/77.jpg new file mode 100644 index 0000000..0841616 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/77.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/78.jpg b/train-3/zhongzebin-hm/find_armors/detect/78.jpg new file mode 100644 index 0000000..58d34f2 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/78.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/79.jpg b/train-3/zhongzebin-hm/find_armors/detect/79.jpg new file mode 100644 index 0000000..5bd4efe Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/79.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/8.jpg b/train-3/zhongzebin-hm/find_armors/detect/8.jpg new file mode 100644 index 0000000..a6aa7f9 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/8.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/80.jpg b/train-3/zhongzebin-hm/find_armors/detect/80.jpg new file mode 100644 index 0000000..362ae25 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/80.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/81.jpg b/train-3/zhongzebin-hm/find_armors/detect/81.jpg new file mode 100644 index 0000000..9dcb7e4 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/81.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/82.jpg b/train-3/zhongzebin-hm/find_armors/detect/82.jpg new file mode 100644 index 0000000..20c4d51 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/82.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/83.jpg b/train-3/zhongzebin-hm/find_armors/detect/83.jpg new file mode 100644 index 0000000..a3ddaa7 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/83.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/84.jpg b/train-3/zhongzebin-hm/find_armors/detect/84.jpg new file mode 100644 index 0000000..4e71eea Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/84.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/85.jpg b/train-3/zhongzebin-hm/find_armors/detect/85.jpg new file mode 100644 index 0000000..aae32ab Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/85.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/86.jpg b/train-3/zhongzebin-hm/find_armors/detect/86.jpg new file mode 100644 index 0000000..7b73e87 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/86.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/87.jpg b/train-3/zhongzebin-hm/find_armors/detect/87.jpg new file mode 100644 index 0000000..512b37f Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/87.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/88.jpg b/train-3/zhongzebin-hm/find_armors/detect/88.jpg new file mode 100644 index 0000000..a83689f Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/88.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/89.jpg b/train-3/zhongzebin-hm/find_armors/detect/89.jpg new file mode 100644 index 0000000..08580ba Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/89.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/9.jpg b/train-3/zhongzebin-hm/find_armors/detect/9.jpg new file mode 100644 index 0000000..c8c23aa Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/9.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/90.jpg b/train-3/zhongzebin-hm/find_armors/detect/90.jpg new file mode 100644 index 0000000..9b5883b Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/90.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/91.jpg b/train-3/zhongzebin-hm/find_armors/detect/91.jpg new file mode 100644 index 0000000..542d8da Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/91.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/92.jpg b/train-3/zhongzebin-hm/find_armors/detect/92.jpg new file mode 100644 index 0000000..2b0806d Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/92.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/93.jpg b/train-3/zhongzebin-hm/find_armors/detect/93.jpg new file mode 100644 index 0000000..1080f35 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/93.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/94.jpg b/train-3/zhongzebin-hm/find_armors/detect/94.jpg new file mode 100644 index 0000000..a327918 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/94.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/95.jpg b/train-3/zhongzebin-hm/find_armors/detect/95.jpg new file mode 100644 index 0000000..1d836f9 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/95.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/96.jpg b/train-3/zhongzebin-hm/find_armors/detect/96.jpg new file mode 100644 index 0000000..6b7500b Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/96.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/97.jpg b/train-3/zhongzebin-hm/find_armors/detect/97.jpg new file mode 100644 index 0000000..27df77a Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/97.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/98.jpg b/train-3/zhongzebin-hm/find_armors/detect/98.jpg new file mode 100644 index 0000000..50e2fdf Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/98.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/detect/99.jpg b/train-3/zhongzebin-hm/find_armors/detect/99.jpg new file mode 100644 index 0000000..0a6dd87 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/detect/99.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/gray.jpg b/train-3/zhongzebin-hm/find_armors/gray.jpg new file mode 100644 index 0000000..8aa92a9 Binary files /dev/null and b/train-3/zhongzebin-hm/find_armors/gray.jpg differ diff --git a/train-3/zhongzebin-hm/find_armors/main.cpp b/train-3/zhongzebin-hm/find_armors/main.cpp new file mode 100644 index 0000000..8c4790b --- /dev/null +++ b/train-3/zhongzebin-hm/find_armors/main.cpp @@ -0,0 +1,222 @@ +#include +#include +#include +#include "classifier.hpp" +#include +namespace sp +{ + +float iou(const cv::Rect& lhs, const cv::Rect& rhs) +{ + //筛选出了两个矩形框的交集 + const int lt_x = std::max(lhs.x, rhs.x); + const int lt_y = std::max(lhs.y, rhs.y); + const int rd_x = std::min(lhs.x + lhs.width, rhs.x + rhs.width); + const int rd_y = std::min(lhs.y + lhs.height, rhs.y + rhs.height); + + const int inner_w = std::max(0, rd_x - lt_x + 1); + const int inner_h = std::max(0, rd_y - lt_y + 1); + const int inner_area = inner_h * inner_w; + + return static_cast(inner_area) / (lhs.area() + rhs.area() - inner_area); +} + +bool left_or_right(cv::Mat temp) +{ + const int iter_rows=temp.isContinuous() ? 1:temp.rows; + const int iter_cols=temp.rows*temp.cols/iter_rows*temp.channels(); + int left=0,right=0; + for(int i=0;i(i); + for(int j=0;jiter_cols/3*2) + right+=value; + } + if(i>iter_rows/3*2) + { + if(jiter_cols/3*2) + left+=value; + } + } + } + return left>right; +} + +} + +int main() +{ + //读入装甲板模型 + cf::classifier classifier("../armor"); + auto mat = cv::imread("../test.jpg", cv::IMREAD_GRAYSCALE); + auto gray = cv::imread("../test.jpg", cv::IMREAD_GRAYSCALE); + auto org=cv::imread("../test.jpg"); + cv::resize(mat, mat, {1280, 720});//存储灰度图像(阈值化后) + cv::resize(org, org, {1280, 720});//存储彩色图像 + cv::resize(gray, gray, {1280, 720});//存储灰度图像(阈值化前) + //对图像中像素值小于180的赋值为0 + const int iter_rows=mat.isContinuous() ? 1:mat.rows; + const int iter_cols=mat.rows*mat.cols/iter_rows*mat.channels(); + for(int i=0;i(i); + for(int j=0;j> contours; + std::vector bboxes; + + mser->detectRegions(mat, contours, bboxes); + std::cout << bboxes.size() << '\n'; + + + std::vector drawed_rects; + drawed_rects.reserve(bboxes.size() / 4);//reserve增加了容器的capacity,但size不变。capacity代表容器能存储的最大空间 + + int cnt = 0; + if (!bboxes.empty())//如果检测到了矩形框 + { + ++cnt; + //cv::rectangle(org, bboxes.front(), {0, 0, 255},3);//画上第一个检测到的矩形框 + drawed_rects.push_back(0); + } + + constexpr float thresh = 0.5; + for (int i = 1; i < bboxes.size(); ++i) + { + bool skip = false; + for (auto&& index : drawed_rects)//遍历drawed_rects里所有的元素,index即为元素内容 + {//应当要大框,舍弃小框 + //bool judge=!(bboxes[i].contains(bboxes[index].tl()) && bboxes[i].contains(bboxes[index].br())); + if (skip = (sp::iou(bboxes[i], bboxes[index]) > thresh) ) + { + break; + } + if(bboxes[i].width>bboxes[i].height)//如果宽大于高,skip为true并跳出循环 + { + skip=true; + break; + } + } + if (skip)//skip为true,进行下一个矩形框查找 + continue; + //cv::rectangle(org, bboxes[i], { 0, 0, 255 },3);//画出当前矩形框 + drawed_rects.push_back(i);//记录矩形框的index + ++cnt; + } + //将所有检测到的矩形框两两组合成待检测区域 + std::vector detect; + int count=0; + /*for(int i=12;i<13;i++) + for(int j=13;j<14;j++)*/ + for(int i=0;i contour; + contour.push_back(a); + contour.push_back(b); + contour.push_back(c); + contour.push_back(d); + cv::RotatedRect rect = minAreaRect(contour);//求最小外接矩形 + cv::Point2f vertices[4]; + rect.points(vertices);//外接矩形的4个顶点 + /*for (int i = 0; i < 4; i++)//画矩形 + line(org, vertices[i], vertices[(i + 1) % 4], {0,0,255});*/ + cv::Point2f center = rect.center;//外接矩形中心点坐标 + //std::cout<<"angle:"+std::to_string(rect.angle)<<'\n'; + cv::Mat rot_mat = cv::getRotationMatrix2D(center, rect.angle>-45?rect.angle:(-90-rect.angle), 1.0);//求旋转矩阵 + cv::Mat rot_image; + cv::Size dst_sz(gray.size()); + cv::warpAffine(gray, rot_image, rot_mat, dst_sz);//旋转变换 + if(rect.angle>-45) + { + if(center.x - (rect.size.width / 2)>=0 && center.x - (rect.size.width / 2)+rect.size.width<=rot_image.cols && center.y - (rect.size.height/2)-rect.size.height/2>=0 && center.y - (rect.size.height/2)+rect.size.height*2<=rot_image.rows) + { + cv::Mat result = rot_image(cv::Rect(center.x - (rect.size.width / 2), center.y - (rect.size.height/2)-rect.size.height/2, rect.size.width, rect.size.height*2));//提取ROI + count++; + cv::imwrite("../detect/"+std::to_string(count)+".jpg",result); + if(classifier.boolean_forward(result)) + { + for (int i = 0; i < 4; i++)//画矩形 + line(org, vertices[i], vertices[(i + 1) % 4], {0,0,255}); + } + } + } + else + { + if(center.x - (rect.size.height / 2)>=0 && center.x - (rect.size.height / 2)+rect.size.height<=rot_image.cols && center.y - (rect.size.width/2)-rect.size.width/2>=0 && center.y - (rect.size.width/2)+rect.size.width*2<=rot_image.rows) + { + cv::Mat result = rot_image(cv::Rect(center.x - (rect.size.height / 2), center.y - (rect.size.width/2)-rect.size.width/2, rect.size.height, rect.size.width*2));//提取ROI + count++; + cv::imwrite("../detect/"+std::to_string(count)+".jpg",result); + if(classifier.boolean_forward(result)) + { + for (int i = 0; i < 4; i++)//画矩形 + line(org, vertices[i], vertices[(i + 1) % 4], {0,0,255}); + } + } + } + } + std::cout< +#include +#include +const auto t1 = std::chrono::system_clock::now(); +void function_1() { + //延时500ms 为了保证test()运行结束之后才打印 + usleep(0.5*1000000); + std::cout << "I'm function_1()" << std::endl; + const auto t2 = std::chrono::system_clock::now(); + const auto duration = std::chrono::duration_cast(t2 - t1).count(); + std::cout << "time consumed "<(t2 - t1).count(); + std::cout << "time consumed "<(t2 - t1).count(); + std::cout << "time consumed "<>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(__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(__TINYC__) +# define COMPILER_ID "TinyCC" + +#elif defined(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(SDCC) +# define COMPILER_ID "SDCC" + /* SDCC = VRP */ +# define COMPILER_VERSION_MAJOR DEC(SDCC/100) +# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) +# define COMPILER_VERSION_PATCH DEC(SDCC % 10) + +#elif defined(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID "" +# 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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if !defined(__STDC_VERSION__) + "90" +#elif __STDC_VERSION__ >= 201000L + "11" +#elif __STDC_VERSION__ >= 199901L + "99" +#else +#endif +"]"; + +/*--------------------------------------------------------------------------*/ + +#ifdef ID_VOID_MAIN +void main() {} +#else +int main(int argc, char* argv[]) +{ + 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 SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} +#endif diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdC/a.out b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdC/a.out new file mode 100755 index 0000000..3e779cd Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdC/a.out differ diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp new file mode 100644 index 0000000..e6d8536 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/CMakeCXXCompilerId.cpp @@ -0,0 +1,533 @@ +/* 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 + /* __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 + +#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(__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(__SCO_VERSION__) +# define COMPILER_ID "SCO" + +#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__) +# 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" + +#elif defined(__ARMCC_VERSION) +# 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(_SGI_COMPILER_VERSION) || defined(_COMPILER_VERSION) +# define COMPILER_ID "MIPSpro" +# if defined(_SGI_COMPILER_VERSION) + /* _SGI_COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_SGI_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_SGI_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_SGI_COMPILER_VERSION % 10) +# else + /* _COMPILER_VERSION = VRP */ +# define COMPILER_VERSION_MAJOR DEC(_COMPILER_VERSION/100) +# define COMPILER_VERSION_MINOR DEC(_COMPILER_VERSION/10 % 10) +# define COMPILER_VERSION_PATCH DEC(_COMPILER_VERSION % 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(__sgi) +# define COMPILER_ID "MIPSpro" + +#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(__sgi) || defined(__sgi__) || defined(_SGI) +# define PLATFORM_ID "IRIX" + +#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" + +# else /* unknown platform */ +# define PLATFORM_ID "" +# 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_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 + +#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 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 "]"; + + + + +const char* info_language_dialect_default = "INFO" ":" "dialect_default[" +#if __cplusplus >= 201402L + "14" +#elif __cplusplus >= 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 SIMULATE_ID + require += info_simulate[argc]; +#endif +#ifdef SIMULATE_VERSION_MAJOR + require += info_simulate_version[argc]; +#endif +#if defined(__CRAYXE) || defined(__CRAYXC) + require += info_cray[argc]; +#endif + require += info_language_dialect_default[argc]; + (void)argv; + return require; +} diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out new file mode 100755 index 0000000..8f3f2ab Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out differ diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeDirectoryInformation.cmake b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeDirectoryInformation.cmake new file mode 100644 index 0000000..456fdf6 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeDirectoryInformation.cmake @@ -0,0 +1,16 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Relative path conversion top directories. +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build") + +# Force unix paths in dependencies. +set(CMAKE_FORCE_UNIX_PATHS 1) + + +# The C and CXX include file regular expressions for this directory. +set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$") +set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$") +set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN}) +set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN}) diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeOutput.log b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeOutput.log new file mode 100644 index 0000000..0ee8757 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeOutput.log @@ -0,0 +1,552 @@ +The system is: Linux - 4.15.0-66-generic - x86_64 +Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. +Compiler: /usr/bin/cc +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" + +The C compiler identification is GNU, found in "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdC/a.out" + +Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. +Compiler: /usr/bin/c++ +Build flags: +Id flags: + +The output was: +0 + + +Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" + +The CXX compiler identification is GNU, found in "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/3.5.1/CompilerIdCXX/a.out" + +Determining if the C compiler works passed with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_74be9/fast" +/usr/bin/make -f CMakeFiles/cmTC_74be9.dir/build.make CMakeFiles/cmTC_74be9.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_74be9.dir/testCCompiler.c.o +/usr/bin/cc -o CMakeFiles/cmTC_74be9.dir/testCCompiler.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_74be9 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_74be9.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_74be9.dir/testCCompiler.c.o -o cmTC_74be9 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + +Detecting C compiler ABI info compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_70200/fast" +/usr/bin/make -f CMakeFiles/cmTC_70200.dir/build.make CMakeFiles/cmTC_70200.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o +/usr/bin/cc -o CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_70200 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_70200.dir/link.txt --verbose=1 +/usr/bin/cc -v CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o -o cmTC_70200 +Using built-in specs. +COLLECT_GCC=/usr/bin/cc +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_70200' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCMwmcY.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_70200 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + +Parsed C implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_70200/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_70200.dir/build.make CMakeFiles/cmTC_70200.dir/build] + ignore line: [make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp'] + ignore line: [Building C object CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/cc -o CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_70200] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_70200.dir/link.txt --verbose=1] + ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o -o cmTC_70200 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/cc] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_70200' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCMwmcY.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_70200 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o -lgcc --as-needed -lgcc_s --no-as-needed -lc -lgcc --as-needed -lgcc_s --no-as-needed /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccCMwmcY.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_70200] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_70200.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [-lc] ==> lib [c] + arg [-lgcc] ==> lib [gcc] + arg [--as-needed] ==> ignore + arg [-lgcc_s] ==> lib [gcc_s] + arg [--no-as-needed] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting C [-std=c11] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_91e71/fast" +/usr/bin/make -f CMakeFiles/cmTC_91e71.dir/build.make CMakeFiles/cmTC_91e71.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_91e71.dir/feature_tests.c.o +/usr/bin/cc -std=c11 -o CMakeFiles/cmTC_91e71.dir/feature_tests.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_91e71 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_91e71.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_91e71.dir/feature_tests.c.o -o cmTC_91e71 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:1c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c99] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_99538/fast" +/usr/bin/make -f CMakeFiles/cmTC_99538.dir/build.make CMakeFiles/cmTC_99538.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_99538.dir/feature_tests.c.o +/usr/bin/cc -std=c99 -o CMakeFiles/cmTC_99538.dir/feature_tests.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_99538 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_99538.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_99538.dir/feature_tests.c.o -o cmTC_99538 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:1c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:1c_variadic_macros + + +Detecting C [-std=c90] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_1f5c3/fast" +/usr/bin/make -f CMakeFiles/cmTC_1f5c3.dir/build.make CMakeFiles/cmTC_1f5c3.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building C object CMakeFiles/cmTC_1f5c3.dir/feature_tests.c.o +/usr/bin/cc -std=c90 -o CMakeFiles/cmTC_1f5c3.dir/feature_tests.c.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_1f5c3 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1f5c3.dir/link.txt --verbose=1 +/usr/bin/cc CMakeFiles/cmTC_1f5c3.dir/feature_tests.c.o -o cmTC_1f5c3 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + + Feature record: C_FEATURE:1c_function_prototypes + Feature record: C_FEATURE:0c_restrict + Feature record: C_FEATURE:0c_static_assert + Feature record: C_FEATURE:0c_variadic_macros +Determining if the CXX compiler works passed with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_6b84c/fast" +/usr/bin/make -f CMakeFiles/cmTC_6b84c.dir/build.make CMakeFiles/cmTC_6b84c.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_6b84c.dir/testCXXCompiler.cxx.o +/usr/bin/c++ -o CMakeFiles/cmTC_6b84c.dir/testCXXCompiler.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_6b84c +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6b84c.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_6b84c.dir/testCXXCompiler.cxx.o -o cmTC_6b84c +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + +Detecting CXX compiler ABI info compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_9c013/fast" +/usr/bin/make -f CMakeFiles/cmTC_9c013.dir/build.make CMakeFiles/cmTC_9c013.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/c++ -o CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_9c013 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c013.dir/link.txt --verbose=1 +/usr/bin/c++ -v CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9c013 +Using built-in specs. +COLLECT_GCC=/usr/bin/c++ +COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper +Target: x86_64-linux-gnu +Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu +Thread model: posix +gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) +COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/ +LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/ +COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_9c013' '-shared-libgcc' '-mtune=generic' '-march=x86-64' + /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6cPB3A.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_9c013 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + +Parsed CXX implicit link information from above output: + link line regex: [^( *|.*[/\])(ld|([^/\]+-)?ld|collect2)[^/\]*( |$)] + ignore line: [Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp] + ignore line: [] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_9c013/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_9c013.dir/build.make CMakeFiles/cmTC_9c013.dir/build] + ignore line: [make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp'] + ignore line: [Building CXX object CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/c++ -o CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_9c013] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c013.dir/link.txt --verbose=1] + ignore line: [/usr/bin/c++ -v CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_9c013 ] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=/usr/bin/c++] + ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] + ignore line: [Target: x86_64-linux-gnu] + ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.11' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] + ignore line: [Thread model: posix] + ignore line: [gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.11) ] + ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/] + ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/5/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/5/../../../:/lib/:/usr/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_9c013' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] + link line: [ /usr/lib/gcc/x86_64-linux-gnu/5/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6cPB3A.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --sysroot=/ --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -z relro -o cmTC_9c013 /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/5 -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/5/../../.. CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/5/crtend.o /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/collect2] ==> ignore + arg [-plugin] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/liblto_plugin.so] ==> ignore + arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc6cPB3A.res] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [-plugin-opt=-pass-through=-lc] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore + arg [-plugin-opt=-pass-through=-lgcc] ==> ignore + arg [--sysroot=/] ==> ignore + arg [--build-id] ==> ignore + arg [--eh-frame-hdr] ==> ignore + arg [-m] ==> ignore + arg [elf_x86_64] ==> ignore + arg [--hash-style=gnu] ==> ignore + arg [--as-needed] ==> ignore + arg [-dynamic-linker] ==> ignore + arg [/lib64/ld-linux-x86-64.so.2] ==> ignore + arg [-zrelro] ==> ignore + arg [-o] ==> ignore + arg [cmTC_9c013] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crt1.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crti.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtbegin.o] ==> ignore + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] + arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] + arg [-L/lib/../lib] ==> dir [/lib/../lib] + arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] + arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] + arg [-L/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] + arg [CMakeFiles/cmTC_9c013.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [-lstdc++] ==> lib [stdc++] + arg [-lm] ==> lib [m] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [-lc] ==> lib [c] + arg [-lgcc_s] ==> lib [gcc_s] + arg [-lgcc] ==> lib [gcc] + arg [/usr/lib/gcc/x86_64-linux-gnu/5/crtend.o] ==> ignore + arg [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/crtn.o] ==> ignore + remove lib [gcc_s] + remove lib [gcc] + remove lib [gcc_s] + remove lib [gcc] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5] ==> [/usr/lib/gcc/x86_64-linux-gnu/5] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../../../lib] ==> [/usr/lib] + collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] + collapse library dir [/lib/../lib] ==> [/lib] + collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] + collapse library dir [/usr/lib/../lib] ==> [/usr/lib] + collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/5/../../..] ==> [/usr/lib] + implicit libs: [stdc++;m;c] + implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/5;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] + implicit fwks: [] + + + + +Detecting CXX [-std=c++14] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_ccf30/fast" +/usr/bin/make -f CMakeFiles/cmTC_ccf30.dir/build.make CMakeFiles/cmTC_ccf30.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_ccf30.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++14 -o CMakeFiles/cmTC_ccf30.dir/feature_tests.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_ccf30 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ccf30.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_ccf30.dir/feature_tests.cxx.o -o cmTC_ccf30 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:1cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:1cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:1cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:1cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:1cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:1cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:1cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:1cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:1cxx_relaxed_constexpr + Feature record: CXX_FEATURE:1cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:1cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++11] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_48fca/fast" +/usr/bin/make -f CMakeFiles/cmTC_48fca.dir/build.make CMakeFiles/cmTC_48fca.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_48fca.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++11 -o CMakeFiles/cmTC_48fca.dir/feature_tests.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_48fca +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_48fca.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_48fca.dir/feature_tests.cxx.o -o cmTC_48fca +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:1cxx_alias_templates + Feature record: CXX_FEATURE:1cxx_alignas + Feature record: CXX_FEATURE:1cxx_alignof + Feature record: CXX_FEATURE:1cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:1cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:1cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:1cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:1cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:1cxx_default_function_template_args + Feature record: CXX_FEATURE:1cxx_defaulted_functions + Feature record: CXX_FEATURE:1cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:1cxx_delegating_constructors + Feature record: CXX_FEATURE:1cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:1cxx_enum_forward_declarations + Feature record: CXX_FEATURE:1cxx_explicit_conversions + Feature record: CXX_FEATURE:1cxx_extended_friend_declarations + Feature record: CXX_FEATURE:1cxx_extern_templates + Feature record: CXX_FEATURE:1cxx_final + Feature record: CXX_FEATURE:1cxx_func_identifier + Feature record: CXX_FEATURE:1cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:1cxx_inheriting_constructors + Feature record: CXX_FEATURE:1cxx_inline_namespaces + Feature record: CXX_FEATURE:1cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:1cxx_local_type_template_args + Feature record: CXX_FEATURE:1cxx_long_long_type + Feature record: CXX_FEATURE:1cxx_noexcept + Feature record: CXX_FEATURE:1cxx_nonstatic_member_init + Feature record: CXX_FEATURE:1cxx_nullptr + Feature record: CXX_FEATURE:1cxx_override + Feature record: CXX_FEATURE:1cxx_range_for + Feature record: CXX_FEATURE:1cxx_raw_string_literals + Feature record: CXX_FEATURE:1cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:1cxx_right_angle_brackets + Feature record: CXX_FEATURE:1cxx_rvalue_references + Feature record: CXX_FEATURE:1cxx_sizeof_member + Feature record: CXX_FEATURE:1cxx_static_assert + Feature record: CXX_FEATURE:1cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:1cxx_thread_local + Feature record: CXX_FEATURE:1cxx_trailing_return_types + Feature record: CXX_FEATURE:1cxx_unicode_literals + Feature record: CXX_FEATURE:1cxx_uniform_initialization + Feature record: CXX_FEATURE:1cxx_unrestricted_unions + Feature record: CXX_FEATURE:1cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:1cxx_variadic_macros + Feature record: CXX_FEATURE:1cxx_variadic_templates + + +Detecting CXX [-std=c++98] compiler features compiled with the following output: +Change Dir: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp + +Run Build Command:"/usr/bin/make" "cmTC_46325/fast" +/usr/bin/make -f CMakeFiles/cmTC_46325.dir/build.make CMakeFiles/cmTC_46325.dir/build +make[1]: Entering directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' +Building CXX object CMakeFiles/cmTC_46325.dir/feature_tests.cxx.o +/usr/bin/c++ -std=c++98 -o CMakeFiles/cmTC_46325.dir/feature_tests.cxx.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_46325 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_46325.dir/link.txt --verbose=1 +/usr/bin/c++ CMakeFiles/cmTC_46325.dir/feature_tests.cxx.o -o cmTC_46325 +make[1]: Leaving directory '/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/CMakeTmp' + + + Feature record: CXX_FEATURE:0cxx_aggregate_default_initializers + Feature record: CXX_FEATURE:0cxx_alias_templates + Feature record: CXX_FEATURE:0cxx_alignas + Feature record: CXX_FEATURE:0cxx_alignof + Feature record: CXX_FEATURE:0cxx_attributes + Feature record: CXX_FEATURE:0cxx_attribute_deprecated + Feature record: CXX_FEATURE:0cxx_auto_type + Feature record: CXX_FEATURE:0cxx_binary_literals + Feature record: CXX_FEATURE:0cxx_constexpr + Feature record: CXX_FEATURE:0cxx_contextual_conversions + Feature record: CXX_FEATURE:0cxx_decltype + Feature record: CXX_FEATURE:0cxx_decltype_auto + Feature record: CXX_FEATURE:0cxx_decltype_incomplete_return_types + Feature record: CXX_FEATURE:0cxx_default_function_template_args + Feature record: CXX_FEATURE:0cxx_defaulted_functions + Feature record: CXX_FEATURE:0cxx_defaulted_move_initializers + Feature record: CXX_FEATURE:0cxx_delegating_constructors + Feature record: CXX_FEATURE:0cxx_deleted_functions + Feature record: CXX_FEATURE:0cxx_digit_separators + Feature record: CXX_FEATURE:0cxx_enum_forward_declarations + Feature record: CXX_FEATURE:0cxx_explicit_conversions + Feature record: CXX_FEATURE:0cxx_extended_friend_declarations + Feature record: CXX_FEATURE:0cxx_extern_templates + Feature record: CXX_FEATURE:0cxx_final + Feature record: CXX_FEATURE:0cxx_func_identifier + Feature record: CXX_FEATURE:0cxx_generalized_initializers + Feature record: CXX_FEATURE:0cxx_generic_lambdas + Feature record: CXX_FEATURE:0cxx_inheriting_constructors + Feature record: CXX_FEATURE:0cxx_inline_namespaces + Feature record: CXX_FEATURE:0cxx_lambdas + Feature record: CXX_FEATURE:0cxx_lambda_init_captures + Feature record: CXX_FEATURE:0cxx_local_type_template_args + Feature record: CXX_FEATURE:0cxx_long_long_type + Feature record: CXX_FEATURE:0cxx_noexcept + Feature record: CXX_FEATURE:0cxx_nonstatic_member_init + Feature record: CXX_FEATURE:0cxx_nullptr + Feature record: CXX_FEATURE:0cxx_override + Feature record: CXX_FEATURE:0cxx_range_for + Feature record: CXX_FEATURE:0cxx_raw_string_literals + Feature record: CXX_FEATURE:0cxx_reference_qualified_functions + Feature record: CXX_FEATURE:0cxx_relaxed_constexpr + Feature record: CXX_FEATURE:0cxx_return_type_deduction + Feature record: CXX_FEATURE:0cxx_right_angle_brackets + Feature record: CXX_FEATURE:0cxx_rvalue_references + Feature record: CXX_FEATURE:0cxx_sizeof_member + Feature record: CXX_FEATURE:0cxx_static_assert + Feature record: CXX_FEATURE:0cxx_strong_enums + Feature record: CXX_FEATURE:1cxx_template_template_parameters + Feature record: CXX_FEATURE:0cxx_thread_local + Feature record: CXX_FEATURE:0cxx_trailing_return_types + Feature record: CXX_FEATURE:0cxx_unicode_literals + Feature record: CXX_FEATURE:0cxx_uniform_initialization + Feature record: CXX_FEATURE:0cxx_unrestricted_unions + Feature record: CXX_FEATURE:0cxx_user_literals + Feature record: CXX_FEATURE:0cxx_variable_templates + Feature record: CXX_FEATURE:0cxx_variadic_macros + Feature record: CXX_FEATURE:0cxx_variadic_templates diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/Makefile.cmake b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/Makefile.cmake new file mode 100644 index 0000000..71fd2a3 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/Makefile.cmake @@ -0,0 +1,122 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# The generator used is: +set(CMAKE_DEPENDS_GENERATOR "Unix Makefiles") + +# The top level Makefile was generated from the following files: +set(CMAKE_MAKEFILE_DEPENDS + "CMakeCache.txt" + "../CMakeLists.txt" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/feature_tests.c" + "CMakeFiles/feature_tests.cxx" + "/usr/local/lib/cmake/opencv4/OpenCVConfig-version.cmake" + "/usr/local/share/OpenCV/OpenCVConfig-version.cmake" + "/usr/local/share/OpenCV/OpenCVConfig.cmake" + "/usr/local/share/OpenCV/OpenCVModules-release.cmake" + "/usr/local/share/OpenCV/OpenCVModules.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCCompiler.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeCCompilerABI.c" + "/usr/share/cmake-3.5/Modules/CMakeCInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompiler.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeCXXCompilerABI.cpp" + "/usr/share/cmake-3.5/Modules/CMakeCXXInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCommonLanguageInclude.cmake" + "/usr/share/cmake-3.5/Modules/CMakeCompilerIdDetection.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompileFeatures.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerABI.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineCompilerId.cmake" + "/usr/share/cmake-3.5/Modules/CMakeDetermineSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeFindBinUtils.cmake" + "/usr/share/cmake-3.5/Modules/CMakeGenericSystem.cmake" + "/usr/share/cmake-3.5/Modules/CMakeLanguageInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseArguments.cmake" + "/usr/share/cmake-3.5/Modules/CMakeParseImplicitLinkInfo.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystem.cmake.in" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInformation.cmake" + "/usr/share/cmake-3.5/Modules/CMakeSystemSpecificInitialize.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCXXCompiler.cmake" + "/usr/share/cmake-3.5/Modules/CMakeTestCompilerCommon.cmake" + "/usr/share/cmake-3.5/Modules/CMakeUnixFindMake.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/ARMCC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/AppleClang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Borland-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Cray-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GHS-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-C-FeatureTests.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-C.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX-FeatureTests.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/GNU.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/HP-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/HP-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IAR-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Intel-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MIPSpro-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/MSVC-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PGI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/PathScale-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SCO-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/TI-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/Watcom-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/XL-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/XL-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/zOS-C-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake" + "/usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake" + "/usr/share/cmake-3.5/Modules/FindPackageMessage.cmake" + "/usr/share/cmake-3.5/Modules/Internal/FeatureTesting.cmake" + "/usr/share/cmake-3.5/Modules/MultiArchCross.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-C.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU-CXX.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux-GNU.cmake" + "/usr/share/cmake-3.5/Modules/Platform/Linux.cmake" + "/usr/share/cmake-3.5/Modules/Platform/UnixPaths.cmake" + ) + +# The corresponding makefile is: +set(CMAKE_MAKEFILE_OUTPUTS + "Makefile" + "CMakeFiles/cmake.check_cache" + ) + +# Byproducts of CMake generate step: +set(CMAKE_MAKEFILE_PRODUCTS + "CMakeFiles/3.5.1/CMakeSystem.cmake" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCCompiler.cmake" + "CMakeFiles/3.5.1/CMakeCXXCompiler.cmake" + "CMakeFiles/CMakeDirectoryInformation.cmake" + ) + +# Dependency information for all targets: +set(CMAKE_DEPEND_INFO_FILES + "CMakeFiles/homework1.dir/DependInfo.cmake" + ) diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/Makefile2 b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/Makefile2 new file mode 100644 index 0000000..01dd4ae --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/Makefile2 @@ -0,0 +1,108 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# The main recursive all target +all: + +.PHONY : all + +# The main recursive preinstall target +preinstall: + +.PHONY : preinstall + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build + +#============================================================================= +# Target rules for target CMakeFiles/homework1.dir + +# All Build rule for target. +CMakeFiles/homework1.dir/all: + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/depend + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/build + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles --progress-num=1,2 "Built target homework1" +.PHONY : CMakeFiles/homework1.dir/all + +# Include target in all. +all: CMakeFiles/homework1.dir/all + +.PHONY : all + +# Build rule for subdir invocation for target. +CMakeFiles/homework1.dir/rule: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles 2 + $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/homework1.dir/all + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles 0 +.PHONY : CMakeFiles/homework1.dir/rule + +# Convenience name for target. +homework1: CMakeFiles/homework1.dir/rule + +.PHONY : homework1 + +# clean rule for target. +CMakeFiles/homework1.dir/clean: + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/clean +.PHONY : CMakeFiles/homework1.dir/clean + +# clean rule for target. +clean: CMakeFiles/homework1.dir/clean + +.PHONY : clean + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/TargetDirectories.txt b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/TargetDirectories.txt new file mode 100644 index 0000000..c050395 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/TargetDirectories.txt @@ -0,0 +1,3 @@ +/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/edit_cache.dir +/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/rebuild_cache.dir +/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/cmake.check_cache b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/cmake.check_cache new file mode 100644 index 0000000..3dccd73 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/cmake.check_cache @@ -0,0 +1 @@ +# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.bin b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.bin new file mode 100755 index 0000000..6dd032f Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.bin differ diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.c b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.c new file mode 100644 index 0000000..6590dde --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.c @@ -0,0 +1,34 @@ + + const char features[] = {"\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 +"1" +#else +"0" +#endif +"c_function_prototypes\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_restrict\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L +"1" +#else +"0" +#endif +"c_static_assert\n" +"C_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L +"1" +#else +"0" +#endif +"c_variadic_macros\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.cxx b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.cxx new file mode 100644 index 0000000..b93418c --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/feature_tests.cxx @@ -0,0 +1,405 @@ + + const char features[] = {"\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_aggregate_default_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alias_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_alignof\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_attributes\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_attribute_deprecated\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_auto_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_binary_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_contextual_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_decltype\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_decltype_auto\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_decltype_incomplete_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_default_function_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_defaulted_move_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_delegating_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_deleted_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_digit_separators\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_enum_forward_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_explicit_conversions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_extended_friend_declarations\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_extern_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_final\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_func_identifier\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_generalized_initializers\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_generic_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_inheriting_constructors\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_inline_namespaces\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_lambdas\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_lambda_init_captures\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_local_type_template_args\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_long_long_type\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_noexcept\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_nonstatic_member_init\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_nullptr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_override\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_range_for\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 405 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_raw_string_literals\n" +"CXX_FEATURE:" +#if ((__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) >= 40801) && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_reference_qualified_functions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_relaxed_constexpr\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 409 && __cplusplus > 201103L +"1" +#else +"0" +#endif +"cxx_return_type_deduction\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_right_angle_brackets\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_rvalue_references\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_sizeof_member\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_static_assert\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_strong_enums\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && __cplusplus +"1" +#else +"0" +#endif +"cxx_template_template_parameters\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 408 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_thread_local\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_trailing_return_types\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unicode_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_uniform_initialization\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_unrestricted_unions\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 407 && __cplusplus >= 201103L +"1" +#else +"0" +#endif +"cxx_user_literals\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 500 && __cplusplus >= 201402L +"1" +#else +"0" +#endif +"cxx_variable_templates\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_macros\n" +"CXX_FEATURE:" +#if (__GNUC__ * 100 + __GNUC_MINOR__) >= 404 && (__cplusplus >= 201103L || (defined(__GXX_EXPERIMENTAL_CXX0X__) && __GXX_EXPERIMENTAL_CXX0X__)) +"1" +#else +"0" +#endif +"cxx_variadic_templates\n" + +}; + +int main(int argc, char** argv) { (void)argv; return features[argc]; } diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/CXX.includecache b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/CXX.includecache new file mode 100644 index 0000000..7f3b963 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/CXX.includecache @@ -0,0 +1,1338 @@ +#IncludeRegexLine: ^[ ]*#[ ]*(include|import)[ ]*[<"]([^">]+)([">]) + +#IncludeRegexScan: ^.*$ + +#IncludeRegexComplain: ^$ + +#IncludeRegexTransform: + +/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/classifier.hpp +string +- +vector +- +utility +- +iostream +- +opencv2/opencv.hpp +- +dirent.h +- + +/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/main.cpp +opencv2/opencv.hpp +- +iostream +- +vector +- +classifier.hpp +/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/classifier.hpp +math.h +- + +/usr/local/include/opencv/cxcore.h +opencv2/core/core_c.h +/usr/local/include/opencv/opencv2/core/core_c.h + +/usr/local/include/opencv2/calib3d.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/opencv2/features2d.hpp +opencv2/core/affine.hpp +/usr/local/include/opencv2/opencv2/core/affine.hpp +opencv2/calib3d/calib3d_c.h +/usr/local/include/opencv2/opencv2/calib3d/calib3d_c.h + +/usr/local/include/opencv2/calib3d/calib3d_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/calib3d/opencv2/core/core_c.h + +/usr/local/include/opencv2/core.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/opencv2/core/cvdef.h +opencv2/core/version.hpp +/usr/local/include/opencv2/opencv2/core/version.hpp +opencv2/core/base.hpp +/usr/local/include/opencv2/opencv2/core/base.hpp +opencv2/core/cvstd.hpp +/usr/local/include/opencv2/opencv2/core/cvstd.hpp +opencv2/core/traits.hpp +/usr/local/include/opencv2/opencv2/core/traits.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv2/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/local/include/opencv2/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/local/include/opencv2/opencv2/core/mat.hpp +opencv2/core/persistence.hpp +/usr/local/include/opencv2/opencv2/core/persistence.hpp +opencv2/core/operations.hpp +/usr/local/include/opencv2/opencv2/core/operations.hpp +opencv2/core/cvstd.inl.hpp +/usr/local/include/opencv2/opencv2/core/cvstd.inl.hpp +opencv2/core/utility.hpp +/usr/local/include/opencv2/opencv2/core/utility.hpp +opencv2/core/optim.hpp +/usr/local/include/opencv2/opencv2/core/optim.hpp +opencv2/core/ovx.hpp +/usr/local/include/opencv2/opencv2/core/ovx.hpp + +/usr/local/include/opencv2/core/affine.hpp +opencv2/core.hpp +- + +/usr/local/include/opencv2/core/async.hpp +opencv2/core/mat.hpp +- +chrono +- + +/usr/local/include/opencv2/core/base.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/core/opencv2/opencv_modules.hpp +climits +- +algorithm +- +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/local/include/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/neon_utils.hpp +/usr/local/include/opencv2/core/opencv2/core/neon_utils.hpp +opencv2/core/vsx_utils.hpp +/usr/local/include/opencv2/core/opencv2/core/vsx_utils.hpp +opencv2/core/check.hpp +/usr/local/include/opencv2/core/opencv2/core/check.hpp + +/usr/local/include/opencv2/core/bufferpool.hpp + +/usr/local/include/opencv2/core/check.hpp +opencv2/core/base.hpp +- + +/usr/local/include/opencv2/core/core_c.h +opencv2/core/types_c.h +/usr/local/include/opencv2/core/opencv2/core/types_c.h +cxcore.h +/usr/local/include/opencv2/core/cxcore.h +cxcore.h +/usr/local/include/opencv2/core/cxcore.h +opencv2/core/utility.hpp +/usr/local/include/opencv2/core/opencv2/core/utility.hpp + +/usr/local/include/opencv2/core/cuda.hpp +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp +opencv2/core/cuda_types.hpp +/usr/local/include/opencv2/core/opencv2/core/cuda_types.hpp +opencv2/opencv.hpp +- +opencv2/core/cuda.inl.hpp +/usr/local/include/opencv2/core/opencv2/core/cuda.inl.hpp + +/usr/local/include/opencv2/core/cuda.inl.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/core/opencv2/core/cuda.hpp + +/usr/local/include/opencv2/core/cuda_types.hpp + +/usr/local/include/opencv2/core/cv_cpu_dispatch.h +cv_cpu_config.h +/usr/local/include/opencv2/core/cv_cpu_config.h +cv_cpu_helper.h +/usr/local/include/opencv2/core/cv_cpu_helper.h +emmintrin.h +- +pmmintrin.h +- +tmmintrin.h +- +smmintrin.h +- +nmmintrin.h +- +nmmintrin.h +- +popcntintrin.h +- +immintrin.h +- +arm_neon.h +- +immintrin.h +- +immintrin.h +- +immintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- +emmintrin.h +- +Intrin.h +- +arm_neon.h +- +arm_neon.h +- +altivec.h +- + +/usr/local/include/opencv2/core/cv_cpu_helper.h + +/usr/local/include/opencv2/core/cvdef.h +cvconfig.h +/usr/local/include/opencv2/core/cvconfig.h +limits.h +- +opencv2/core/hal/interface.h +/usr/local/include/opencv2/core/opencv2/core/hal/interface.h +cv_cpu_dispatch.h +/usr/local/include/opencv2/core/cv_cpu_dispatch.h +intrin.h +- +array +- +cstdint +- +stdint.h +- +stdint.h +- +opencv2/core/fast_math.hpp +/usr/local/include/opencv2/core/opencv2/core/fast_math.hpp + +/usr/local/include/opencv2/core/cvstd.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +cstddef +- +cstring +- +cctype +- +string +- +algorithm +- +utility +- +cstdlib +- +cmath +- +opencv2/core/ptr.inl.hpp +/usr/local/include/opencv2/core/opencv2/core/ptr.inl.hpp + +/usr/local/include/opencv2/core/cvstd.inl.hpp +complex +- +ostream +- + +/usr/local/include/opencv2/core/fast_math.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +emmintrin.h +- +cmath +- +fastmath.h +- +math.h +- +tegra_round.hpp +/usr/local/include/opencv2/core/tegra_round.hpp + +/usr/local/include/opencv2/core/hal/interface.h +cstddef +- +stddef.h +- +stdbool.h +- +cstdint +- +stdint.h +- + +/usr/local/include/opencv2/core/mat.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv2/core/opencv2/core/matx.hpp +opencv2/core/types.hpp +/usr/local/include/opencv2/core/opencv2/core/types.hpp +opencv2/core/bufferpool.hpp +/usr/local/include/opencv2/core/opencv2/core/bufferpool.hpp +type_traits +- +opencv2/core/mat.inl.hpp +/usr/local/include/opencv2/core/opencv2/core/mat.inl.hpp + +/usr/local/include/opencv2/core/mat.inl.hpp + +/usr/local/include/opencv2/core/matx.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/base.hpp +/usr/local/include/opencv2/core/opencv2/core/base.hpp +opencv2/core/traits.hpp +/usr/local/include/opencv2/core/opencv2/core/traits.hpp +opencv2/core/saturate.hpp +/usr/local/include/opencv2/core/opencv2/core/saturate.hpp +initializer_list +- + +/usr/local/include/opencv2/core/neon_utils.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h + +/usr/local/include/opencv2/core/operations.hpp +cstdio +- + +/usr/local/include/opencv2/core/optim.hpp +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp + +/usr/local/include/opencv2/core/ovx.hpp +cvdef.h +/usr/local/include/opencv2/core/cvdef.h + +/usr/local/include/opencv2/core/persistence.hpp +opencv2/core/types.hpp +/usr/local/include/opencv2/core/opencv2/core/types.hpp +opencv2/core/mat.hpp +/usr/local/include/opencv2/core/opencv2/core/mat.hpp +opencv2/opencv.hpp +/usr/local/include/opencv2/core/opencv2/opencv.hpp +time.h +- + +/usr/local/include/opencv2/core/ptr.inl.hpp +algorithm +- + +/usr/local/include/opencv2/core/saturate.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/fast_math.hpp +/usr/local/include/opencv2/core/opencv2/core/fast_math.hpp + +/usr/local/include/opencv2/core/traits.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h + +/usr/local/include/opencv2/core/types.hpp +climits +- +cfloat +- +vector +- +limits +- +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +opencv2/core/cvstd.hpp +/usr/local/include/opencv2/core/opencv2/core/cvstd.hpp +opencv2/core/matx.hpp +/usr/local/include/opencv2/core/opencv2/core/matx.hpp + +/usr/local/include/opencv2/core/types_c.h +ipl.h +- +ipl/ipl.h +- +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +assert.h +- +stdlib.h +- +string.h +- +float.h +- +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp + +/usr/local/include/opencv2/core/utility.hpp +opencv2/core.hpp +/usr/local/include/opencv2/core/opencv2/core.hpp +ostream +- +functional +- +opencv2/core/core_c.h +/usr/local/include/opencv2/core/opencv2/core/core_c.h + +/usr/local/include/opencv2/core/version.hpp + +/usr/local/include/opencv2/core/vsx_utils.hpp +opencv2/core/cvdef.h +/usr/local/include/opencv2/core/opencv2/core/cvdef.h +assert.h +- + +/usr/local/include/opencv2/dnn.hpp +opencv2/dnn/dnn.hpp +- + +/usr/local/include/opencv2/dnn/dict.hpp +opencv2/core.hpp +- +map +- +ostream +- +opencv2/dnn/dnn.hpp +- + +/usr/local/include/opencv2/dnn/dnn.hpp +vector +- +opencv2/core.hpp +- +opencv2/core/async.hpp +/usr/local/include/opencv2/dnn/opencv2/core/async.hpp +opencv2/dnn/dict.hpp +- +opencv2/dnn/layer.hpp +- +opencv2/dnn/dnn.inl.hpp +- +opencv2/dnn/utils/inference_engine.hpp +- + +/usr/local/include/opencv2/dnn/dnn.inl.hpp +opencv2/dnn.hpp +- + +/usr/local/include/opencv2/dnn/layer.hpp +opencv2/dnn.hpp +- + +/usr/local/include/opencv2/dnn/utils/inference_engine.hpp +../dnn.hpp +/usr/local/include/opencv2/dnn/dnn.hpp + +/usr/local/include/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/local/include/opencv2/opencv2/flann/miniflann.hpp + +/usr/local/include/opencv2/flann.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/flann/miniflann.hpp +/usr/local/include/opencv2/opencv2/flann/miniflann.hpp +opencv2/flann/flann_base.hpp +/usr/local/include/opencv2/opencv2/flann/flann_base.hpp + +/usr/local/include/opencv2/flann/all_indices.h +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +kdtree_index.h +/usr/local/include/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/local/include/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/local/include/opencv2/flann/kmeans_index.h +composite_index.h +/usr/local/include/opencv2/flann/composite_index.h +linear_index.h +/usr/local/include/opencv2/flann/linear_index.h +hierarchical_clustering_index.h +/usr/local/include/opencv2/flann/hierarchical_clustering_index.h +lsh_index.h +/usr/local/include/opencv2/flann/lsh_index.h +autotuned_index.h +/usr/local/include/opencv2/flann/autotuned_index.h + +/usr/local/include/opencv2/flann/allocator.h +stdlib.h +- +stdio.h +- + +/usr/local/include/opencv2/flann/any.h +defines.h +/usr/local/include/opencv2/flann/defines.h +stdexcept +- +ostream +- +typeinfo +- + +/usr/local/include/opencv2/flann/autotuned_index.h +sstream +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +ground_truth.h +/usr/local/include/opencv2/flann/ground_truth.h +index_testing.h +/usr/local/include/opencv2/flann/index_testing.h +sampling.h +/usr/local/include/opencv2/flann/sampling.h +kdtree_index.h +/usr/local/include/opencv2/flann/kdtree_index.h +kdtree_single_index.h +/usr/local/include/opencv2/flann/kdtree_single_index.h +kmeans_index.h +/usr/local/include/opencv2/flann/kmeans_index.h +composite_index.h +/usr/local/include/opencv2/flann/composite_index.h +linear_index.h +/usr/local/include/opencv2/flann/linear_index.h +logger.h +/usr/local/include/opencv2/flann/logger.h + +/usr/local/include/opencv2/flann/composite_index.h +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +kdtree_index.h +/usr/local/include/opencv2/flann/kdtree_index.h +kmeans_index.h +/usr/local/include/opencv2/flann/kmeans_index.h + +/usr/local/include/opencv2/flann/config.h + +/usr/local/include/opencv2/flann/defines.h +config.h +/usr/local/include/opencv2/flann/config.h + +/usr/local/include/opencv2/flann/dist.h +cmath +- +cstdlib +- +string.h +- +stdint.h +- +defines.h +/usr/local/include/opencv2/flann/defines.h +Intrin.h +- +arm_neon.h +/usr/local/include/opencv2/flann/arm_neon.h + +/usr/local/include/opencv2/flann/dynamic_bitset.h +boost/dynamic_bitset.hpp +- +limits.h +- +dist.h +/usr/local/include/opencv2/flann/dist.h + +/usr/local/include/opencv2/flann/flann_base.hpp +vector +- +cassert +- +cstdio +- +general.h +/usr/local/include/opencv2/flann/general.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +params.h +/usr/local/include/opencv2/flann/params.h +saving.h +/usr/local/include/opencv2/flann/saving.h +all_indices.h +/usr/local/include/opencv2/flann/all_indices.h + +/usr/local/include/opencv2/flann/general.h +opencv2/core.hpp +/usr/local/include/opencv2/flann/opencv2/core.hpp + +/usr/local/include/opencv2/flann/ground_truth.h +dist.h +/usr/local/include/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h + +/usr/local/include/opencv2/flann/heap.h +algorithm +- +vector +- + +/usr/local/include/opencv2/flann/hierarchical_clustering_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +dist.h +/usr/local/include/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/index_testing.h +cstring +- +cassert +- +cmath +- +matrix.h +/usr/local/include/opencv2/flann/matrix.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +logger.h +/usr/local/include/opencv2/flann/logger.h +timer.h +/usr/local/include/opencv2/flann/timer.h + +/usr/local/include/opencv2/flann/kdtree_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +dynamic_bitset.h +/usr/local/include/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/kdtree_single_index.h +algorithm +- +map +- +cassert +- +cstring +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/kmeans_index.h +algorithm +- +map +- +cassert +- +limits +- +cmath +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +dist.h +/usr/local/include/opencv2/flann/dist.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h +logger.h +/usr/local/include/opencv2/flann/logger.h + +/usr/local/include/opencv2/flann/linear_index.h +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h + +/usr/local/include/opencv2/flann/logger.h +stdio.h +- +stdarg.h +- +defines.h +/usr/local/include/opencv2/flann/defines.h + +/usr/local/include/opencv2/flann/lsh_index.h +algorithm +- +cassert +- +cstring +- +map +- +vector +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +heap.h +/usr/local/include/opencv2/flann/heap.h +lsh_table.h +/usr/local/include/opencv2/flann/lsh_table.h +allocator.h +/usr/local/include/opencv2/flann/allocator.h +random.h +/usr/local/include/opencv2/flann/random.h +saving.h +/usr/local/include/opencv2/flann/saving.h + +/usr/local/include/opencv2/flann/lsh_table.h +algorithm +- +iostream +- +iomanip +- +limits.h +- +unordered_map +- +map +- +math.h +- +stddef.h +- +dynamic_bitset.h +/usr/local/include/opencv2/flann/dynamic_bitset.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h + +/usr/local/include/opencv2/flann/matrix.h +stdio.h +- +general.h +/usr/local/include/opencv2/flann/general.h + +/usr/local/include/opencv2/flann/miniflann.hpp +opencv2/core.hpp +/usr/local/include/opencv2/flann/opencv2/core.hpp +opencv2/flann/defines.h +/usr/local/include/opencv2/flann/opencv2/flann/defines.h + +/usr/local/include/opencv2/flann/nn_index.h +general.h +/usr/local/include/opencv2/flann/general.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +result_set.h +/usr/local/include/opencv2/flann/result_set.h +params.h +/usr/local/include/opencv2/flann/params.h + +/usr/local/include/opencv2/flann/params.h +any.h +/usr/local/include/opencv2/flann/any.h +general.h +/usr/local/include/opencv2/flann/general.h +iostream +- +map +- + +/usr/local/include/opencv2/flann/random.h +algorithm +- +cstdlib +- +vector +- +general.h +/usr/local/include/opencv2/flann/general.h + +/usr/local/include/opencv2/flann/result_set.h +algorithm +- +cstring +- +iostream +- +limits +- +set +- +vector +- + +/usr/local/include/opencv2/flann/sampling.h +matrix.h +/usr/local/include/opencv2/flann/matrix.h +random.h +/usr/local/include/opencv2/flann/random.h + +/usr/local/include/opencv2/flann/saving.h +cstring +- +vector +- +general.h +/usr/local/include/opencv2/flann/general.h +nn_index.h +/usr/local/include/opencv2/flann/nn_index.h + +/usr/local/include/opencv2/flann/timer.h +time.h +- +opencv2/core.hpp +/usr/local/include/opencv2/flann/opencv2/core.hpp +opencv2/core/utility.hpp +/usr/local/include/opencv2/flann/opencv2/core/utility.hpp + +/usr/local/include/opencv2/highgui.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/imgcodecs.hpp +/usr/local/include/opencv2/opencv2/imgcodecs.hpp +opencv2/videoio.hpp +/usr/local/include/opencv2/opencv2/videoio.hpp +opencv2/highgui/highgui_c.h +/usr/local/include/opencv2/opencv2/highgui/highgui_c.h + +/usr/local/include/opencv2/highgui/highgui_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/highgui/opencv2/core/core_c.h +opencv2/imgproc/imgproc_c.h +/usr/local/include/opencv2/highgui/opencv2/imgproc/imgproc_c.h +opencv2/imgcodecs/imgcodecs_c.h +/usr/local/include/opencv2/highgui/opencv2/imgcodecs/imgcodecs_c.h +opencv2/videoio/videoio_c.h +/usr/local/include/opencv2/highgui/opencv2/videoio/videoio_c.h + +/usr/local/include/opencv2/imgcodecs.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp + +/usr/local/include/opencv2/imgcodecs/imgcodecs_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/imgcodecs/opencv2/core/core_c.h + +/usr/local/include/opencv2/imgproc.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/imgproc/imgproc_c.h +/usr/local/include/opencv2/opencv2/imgproc/imgproc_c.h + +/usr/local/include/opencv2/imgproc/imgproc_c.h +opencv2/imgproc/types_c.h +/usr/local/include/opencv2/imgproc/opencv2/imgproc/types_c.h + +/usr/local/include/opencv2/imgproc/types_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/imgproc/opencv2/core/core_c.h + +/usr/local/include/opencv2/ml.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +float.h +- +map +- +iostream +- +opencv2/ml/ml.inl.hpp +- + +/usr/local/include/opencv2/ml/ml.inl.hpp + +/usr/local/include/opencv2/objdetect.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/objdetect/detection_based_tracker.hpp +/usr/local/include/opencv2/opencv2/objdetect/detection_based_tracker.hpp +opencv2/objdetect/objdetect_c.h +/usr/local/include/opencv2/opencv2/objdetect/objdetect_c.h + +/usr/local/include/opencv2/objdetect/detection_based_tracker.hpp +opencv2/core.hpp +- +vector +- + +/usr/local/include/opencv2/objdetect/objdetect_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/objdetect/opencv2/core/core_c.h +deque +- +vector +- + +/usr/local/include/opencv2/opencv.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/opencv2/opencv_modules.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/calib3d.hpp +/usr/local/include/opencv2/opencv2/calib3d.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/opencv2/features2d.hpp +opencv2/dnn.hpp +/usr/local/include/opencv2/opencv2/dnn.hpp +opencv2/flann.hpp +/usr/local/include/opencv2/opencv2/flann.hpp +opencv2/highgui.hpp +/usr/local/include/opencv2/opencv2/highgui.hpp +opencv2/imgcodecs.hpp +/usr/local/include/opencv2/opencv2/imgcodecs.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/opencv2/imgproc.hpp +opencv2/ml.hpp +/usr/local/include/opencv2/opencv2/ml.hpp +opencv2/objdetect.hpp +/usr/local/include/opencv2/opencv2/objdetect.hpp +opencv2/photo.hpp +/usr/local/include/opencv2/opencv2/photo.hpp +opencv2/shape.hpp +/usr/local/include/opencv2/opencv2/shape.hpp +opencv2/stitching.hpp +/usr/local/include/opencv2/opencv2/stitching.hpp +opencv2/superres.hpp +/usr/local/include/opencv2/opencv2/superres.hpp +opencv2/video.hpp +/usr/local/include/opencv2/opencv2/video.hpp +opencv2/videoio.hpp +/usr/local/include/opencv2/opencv2/videoio.hpp +opencv2/videostab.hpp +/usr/local/include/opencv2/opencv2/videostab.hpp +opencv2/viz.hpp +/usr/local/include/opencv2/opencv2/viz.hpp +opencv2/cudaarithm.hpp +/usr/local/include/opencv2/opencv2/cudaarithm.hpp +opencv2/cudabgsegm.hpp +/usr/local/include/opencv2/opencv2/cudabgsegm.hpp +opencv2/cudacodec.hpp +/usr/local/include/opencv2/opencv2/cudacodec.hpp +opencv2/cudafeatures2d.hpp +/usr/local/include/opencv2/opencv2/cudafeatures2d.hpp +opencv2/cudafilters.hpp +/usr/local/include/opencv2/opencv2/cudafilters.hpp +opencv2/cudaimgproc.hpp +/usr/local/include/opencv2/opencv2/cudaimgproc.hpp +opencv2/cudaobjdetect.hpp +/usr/local/include/opencv2/opencv2/cudaobjdetect.hpp +opencv2/cudaoptflow.hpp +/usr/local/include/opencv2/opencv2/cudaoptflow.hpp +opencv2/cudastereo.hpp +/usr/local/include/opencv2/opencv2/cudastereo.hpp +opencv2/cudawarping.hpp +/usr/local/include/opencv2/opencv2/cudawarping.hpp + +/usr/local/include/opencv2/opencv_modules.hpp + +/usr/local/include/opencv2/photo.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/opencv2/imgproc.hpp +opencv2/photo/photo_c.h +/usr/local/include/opencv2/opencv2/photo/photo_c.h + +/usr/local/include/opencv2/photo/photo_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/photo/opencv2/core/core_c.h + +/usr/local/include/opencv2/shape.hpp +opencv2/shape/emdL1.hpp +/usr/local/include/opencv2/opencv2/shape/emdL1.hpp +opencv2/shape/shape_transformer.hpp +/usr/local/include/opencv2/opencv2/shape/shape_transformer.hpp +opencv2/shape/hist_cost.hpp +/usr/local/include/opencv2/opencv2/shape/hist_cost.hpp +opencv2/shape/shape_distance.hpp +/usr/local/include/opencv2/opencv2/shape/shape_distance.hpp + +/usr/local/include/opencv2/shape/emdL1.hpp +opencv2/core.hpp +/usr/local/include/opencv2/shape/opencv2/core.hpp + +/usr/local/include/opencv2/shape/hist_cost.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/shape/opencv2/imgproc.hpp + +/usr/local/include/opencv2/shape/shape_distance.hpp +opencv2/core.hpp +/usr/local/include/opencv2/shape/opencv2/core.hpp +opencv2/shape/hist_cost.hpp +/usr/local/include/opencv2/shape/opencv2/shape/hist_cost.hpp +opencv2/shape/shape_transformer.hpp +/usr/local/include/opencv2/shape/opencv2/shape/shape_transformer.hpp + +/usr/local/include/opencv2/shape/shape_transformer.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/shape/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/shape/opencv2/imgproc.hpp + +/usr/local/include/opencv2/stitching.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/opencv2/features2d.hpp +opencv2/stitching/warpers.hpp +/usr/local/include/opencv2/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/matchers.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/matchers.hpp +opencv2/stitching/detail/motion_estimators.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/motion_estimators.hpp +opencv2/stitching/detail/exposure_compensate.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/stitching/detail/seam_finders.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/seam_finders.hpp +opencv2/stitching/detail/blenders.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/blenders.hpp +opencv2/stitching/detail/camera.hpp +/usr/local/include/opencv2/opencv2/stitching/detail/camera.hpp + +/usr/local/include/opencv2/stitching/detail/blenders.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core/cuda.hpp + +/usr/local/include/opencv2/stitching/detail/camera.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp + +/usr/local/include/opencv2/stitching/detail/exposure_compensate.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp + +/usr/local/include/opencv2/stitching/detail/matchers.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/opencv_modules.hpp +opencv2/xfeatures2d/cuda.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/xfeatures2d/cuda.hpp + +/usr/local/include/opencv2/stitching/detail/motion_estimators.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +matchers.hpp +/usr/local/include/opencv2/stitching/detail/matchers.hpp +util.hpp +/usr/local/include/opencv2/stitching/detail/util.hpp +camera.hpp +/usr/local/include/opencv2/stitching/detail/camera.hpp + +/usr/local/include/opencv2/stitching/detail/seam_finders.hpp +set +- +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/opencv_modules.hpp + +/usr/local/include/opencv2/stitching/detail/util.hpp +list +- +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +util_inl.hpp +/usr/local/include/opencv2/stitching/detail/util_inl.hpp + +/usr/local/include/opencv2/stitching/detail/util_inl.hpp +queue +- +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +util.hpp +/usr/local/include/opencv2/stitching/detail/util.hpp + +/usr/local/include/opencv2/stitching/detail/warpers.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core/cuda.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/imgproc.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/opencv_modules.hpp +warpers_inl.hpp +/usr/local/include/opencv2/stitching/detail/warpers_inl.hpp + +/usr/local/include/opencv2/stitching/detail/warpers_inl.hpp +opencv2/core.hpp +/usr/local/include/opencv2/stitching/detail/opencv2/core.hpp +warpers.hpp +/usr/local/include/opencv2/stitching/detail/warpers.hpp +limits +- + +/usr/local/include/opencv2/stitching/warpers.hpp +opencv2/stitching/detail/warpers.hpp +/usr/local/include/opencv2/stitching/opencv2/stitching/detail/warpers.hpp + +/usr/local/include/opencv2/superres.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp +opencv2/superres/optical_flow.hpp +/usr/local/include/opencv2/opencv2/superres/optical_flow.hpp + +/usr/local/include/opencv2/superres/optical_flow.hpp +opencv2/core.hpp +/usr/local/include/opencv2/superres/opencv2/core.hpp + +/usr/local/include/opencv2/video.hpp +opencv2/video/tracking.hpp +/usr/local/include/opencv2/opencv2/video/tracking.hpp +opencv2/video/background_segm.hpp +/usr/local/include/opencv2/opencv2/video/background_segm.hpp +opencv2/video/tracking_c.h +/usr/local/include/opencv2/opencv2/video/tracking_c.h + +/usr/local/include/opencv2/video/background_segm.hpp +opencv2/core.hpp +/usr/local/include/opencv2/video/opencv2/core.hpp + +/usr/local/include/opencv2/video/tracking.hpp +opencv2/core.hpp +/usr/local/include/opencv2/video/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/video/opencv2/imgproc.hpp + +/usr/local/include/opencv2/video/tracking_c.h +opencv2/imgproc/types_c.h +/usr/local/include/opencv2/video/opencv2/imgproc/types_c.h + +/usr/local/include/opencv2/videoio.hpp +opencv2/core.hpp +/usr/local/include/opencv2/opencv2/core.hpp + +/usr/local/include/opencv2/videoio/videoio_c.h +opencv2/core/core_c.h +/usr/local/include/opencv2/videoio/opencv2/core/core_c.h + +/usr/local/include/opencv2/videostab.hpp +opencv2/videostab/stabilizer.hpp +/usr/local/include/opencv2/opencv2/videostab/stabilizer.hpp +opencv2/videostab/ring_buffer.hpp +/usr/local/include/opencv2/opencv2/videostab/ring_buffer.hpp + +/usr/local/include/opencv2/videostab/deblurring.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/fast_marching.hpp +cmath +- +queue +- +algorithm +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +fast_marching_inl.hpp +/usr/local/include/opencv2/videostab/fast_marching_inl.hpp + +/usr/local/include/opencv2/videostab/fast_marching_inl.hpp +opencv2/videostab/fast_marching.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/fast_marching.hpp + +/usr/local/include/opencv2/videostab/frame_source.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/global_motion.hpp +vector +- +fstream +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/features2d.hpp +/usr/local/include/opencv2/videostab/opencv2/features2d.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/videostab/opencv2/opencv_modules.hpp +opencv2/videostab/optical_flow.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/optical_flow.hpp +opencv2/videostab/motion_core.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/motion_core.hpp +opencv2/videostab/outlier_rejection.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/outlier_rejection.hpp +opencv2/cudaimgproc.hpp +/usr/local/include/opencv2/videostab/opencv2/cudaimgproc.hpp + +/usr/local/include/opencv2/videostab/inpainting.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/optical_flow.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/optical_flow.hpp +opencv2/videostab/fast_marching.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/fast_marching.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/photo.hpp +/usr/local/include/opencv2/videostab/opencv2/photo.hpp + +/usr/local/include/opencv2/videostab/log.hpp +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/motion_core.hpp +cmath +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp + +/usr/local/include/opencv2/videostab/motion_stabilizing.hpp +vector +- +utility +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp + +/usr/local/include/opencv2/videostab/optical_flow.hpp +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/opencv_modules.hpp +/usr/local/include/opencv2/videostab/opencv2/opencv_modules.hpp +opencv2/cudaoptflow.hpp +/usr/local/include/opencv2/videostab/opencv2/cudaoptflow.hpp + +/usr/local/include/opencv2/videostab/outlier_rejection.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/videostab/motion_core.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/motion_core.hpp + +/usr/local/include/opencv2/videostab/ring_buffer.hpp +vector +- +opencv2/imgproc.hpp +/usr/local/include/opencv2/videostab/opencv2/imgproc.hpp + +/usr/local/include/opencv2/videostab/stabilizer.hpp +vector +- +ctime +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/imgproc.hpp +/usr/local/include/opencv2/videostab/opencv2/imgproc.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/videostab/motion_stabilizing.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/motion_stabilizing.hpp +opencv2/videostab/frame_source.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/frame_source.hpp +opencv2/videostab/log.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/log.hpp +opencv2/videostab/inpainting.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/inpainting.hpp +opencv2/videostab/deblurring.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/deblurring.hpp +opencv2/videostab/wobble_suppression.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/wobble_suppression.hpp + +/usr/local/include/opencv2/videostab/wobble_suppression.hpp +vector +- +opencv2/core.hpp +/usr/local/include/opencv2/videostab/opencv2/core.hpp +opencv2/core/cuda.hpp +/usr/local/include/opencv2/videostab/opencv2/core/cuda.hpp +opencv2/videostab/global_motion.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/global_motion.hpp +opencv2/videostab/log.hpp +/usr/local/include/opencv2/videostab/opencv2/videostab/log.hpp + diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/DependInfo.cmake b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/DependInfo.cmake new file mode 100644 index 0000000..f15de7a --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/DependInfo.cmake @@ -0,0 +1,22 @@ +# The set of languages for which implicit dependencies are needed: +set(CMAKE_DEPENDS_LANGUAGES + "CXX" + ) +# The set of files for implicit dependencies of each language: +set(CMAKE_DEPENDS_CHECK_CXX + "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/main.cpp" "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/main.cpp.o" + ) +set(CMAKE_CXX_COMPILER_ID "GNU") + +# The include file search paths: +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "/usr/local/include" + "/usr/local/include/opencv" + ) + +# Targets to which this target links. +set(CMAKE_TARGET_LINKED_INFO_FILES + ) + +# Fortran module output directory. +set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/build.make b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/build.make new file mode 100644 index 0000000..406c881 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/build.make @@ -0,0 +1,130 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Delete rule output on recipe failure. +.DELETE_ON_ERROR: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build + +# Include any dependencies generated for this target. +include CMakeFiles/homework1.dir/depend.make + +# Include the progress variables for this target. +include CMakeFiles/homework1.dir/progress.make + +# Include the compile flags for this target's objects. +include CMakeFiles/homework1.dir/flags.make + +CMakeFiles/homework1.dir/main.cpp.o: CMakeFiles/homework1.dir/flags.make +CMakeFiles/homework1.dir/main.cpp.o: ../main.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/homework1.dir/main.cpp.o" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/homework1.dir/main.cpp.o -c /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/main.cpp + +CMakeFiles/homework1.dir/main.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/homework1.dir/main.cpp.i" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/main.cpp > CMakeFiles/homework1.dir/main.cpp.i + +CMakeFiles/homework1.dir/main.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/homework1.dir/main.cpp.s" + /usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/main.cpp -o CMakeFiles/homework1.dir/main.cpp.s + +CMakeFiles/homework1.dir/main.cpp.o.requires: + +.PHONY : CMakeFiles/homework1.dir/main.cpp.o.requires + +CMakeFiles/homework1.dir/main.cpp.o.provides: CMakeFiles/homework1.dir/main.cpp.o.requires + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/main.cpp.o.provides.build +.PHONY : CMakeFiles/homework1.dir/main.cpp.o.provides + +CMakeFiles/homework1.dir/main.cpp.o.provides.build: CMakeFiles/homework1.dir/main.cpp.o + + +# Object files for target homework1 +homework1_OBJECTS = \ +"CMakeFiles/homework1.dir/main.cpp.o" + +# External object files for target homework1 +homework1_EXTERNAL_OBJECTS = + +homework1: CMakeFiles/homework1.dir/main.cpp.o +homework1: CMakeFiles/homework1.dir/build.make +homework1: /usr/local/lib/libopencv_superres.so.3.4.7 +homework1: /usr/local/lib/libopencv_shape.so.3.4.7 +homework1: /usr/local/lib/libopencv_stitching.so.3.4.7 +homework1: /usr/local/lib/libopencv_videostab.so.3.4.7 +homework1: /usr/local/lib/libopencv_dnn.so.3.4.7 +homework1: /usr/local/lib/libopencv_objdetect.so.3.4.7 +homework1: /usr/local/lib/libopencv_ml.so.3.4.7 +homework1: /usr/local/lib/libopencv_highgui.so.3.4.7 +homework1: /usr/local/lib/libopencv_photo.so.3.4.7 +homework1: /usr/local/lib/libopencv_video.so.3.4.7 +homework1: /usr/local/lib/libopencv_calib3d.so.3.4.7 +homework1: /usr/local/lib/libopencv_features2d.so.3.4.7 +homework1: /usr/local/lib/libopencv_flann.so.3.4.7 +homework1: /usr/local/lib/libopencv_videoio.so.3.4.7 +homework1: /usr/local/lib/libopencv_imgcodecs.so.3.4.7 +homework1: /usr/local/lib/libopencv_imgproc.so.3.4.7 +homework1: /usr/local/lib/libopencv_core.so.3.4.7 +homework1: CMakeFiles/homework1.dir/link.txt + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable homework1" + $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/homework1.dir/link.txt --verbose=$(VERBOSE) + +# Rule to build all files generated by this target. +CMakeFiles/homework1.dir/build: homework1 + +.PHONY : CMakeFiles/homework1.dir/build + +CMakeFiles/homework1.dir/requires: CMakeFiles/homework1.dir/main.cpp.o.requires + +.PHONY : CMakeFiles/homework1.dir/requires + +CMakeFiles/homework1.dir/clean: + $(CMAKE_COMMAND) -P CMakeFiles/homework1.dir/cmake_clean.cmake +.PHONY : CMakeFiles/homework1.dir/clean + +CMakeFiles/homework1.dir/depend: + cd /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/DependInfo.cmake --color=$(COLOR) +.PHONY : CMakeFiles/homework1.dir/depend + diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/cmake_clean.cmake b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/cmake_clean.cmake new file mode 100644 index 0000000..daf7253 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/cmake_clean.cmake @@ -0,0 +1,10 @@ +file(REMOVE_RECURSE + "CMakeFiles/homework1.dir/main.cpp.o" + "homework1.pdb" + "homework1" +) + +# Per-language clean rules from dependency scanning. +foreach(lang CXX) + include(CMakeFiles/homework1.dir/cmake_clean_${lang}.cmake OPTIONAL) +endforeach() diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/depend.internal b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/depend.internal new file mode 100644 index 0000000..8dc621c --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/depend.internal @@ -0,0 +1,137 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/homework1.dir/main.cpp.o + /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/classifier.hpp + /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/main.cpp + /usr/local/include/opencv/cxcore.h + /usr/local/include/opencv2/calib3d.hpp + /usr/local/include/opencv2/calib3d/calib3d_c.h + /usr/local/include/opencv2/core.hpp + /usr/local/include/opencv2/core/affine.hpp + /usr/local/include/opencv2/core/async.hpp + /usr/local/include/opencv2/core/base.hpp + /usr/local/include/opencv2/core/bufferpool.hpp + /usr/local/include/opencv2/core/check.hpp + /usr/local/include/opencv2/core/core_c.h + /usr/local/include/opencv2/core/cuda.hpp + /usr/local/include/opencv2/core/cuda.inl.hpp + /usr/local/include/opencv2/core/cuda_types.hpp + /usr/local/include/opencv2/core/cv_cpu_dispatch.h + /usr/local/include/opencv2/core/cv_cpu_helper.h + /usr/local/include/opencv2/core/cvdef.h + /usr/local/include/opencv2/core/cvstd.hpp + /usr/local/include/opencv2/core/cvstd.inl.hpp + /usr/local/include/opencv2/core/fast_math.hpp + /usr/local/include/opencv2/core/hal/interface.h + /usr/local/include/opencv2/core/mat.hpp + /usr/local/include/opencv2/core/mat.inl.hpp + /usr/local/include/opencv2/core/matx.hpp + /usr/local/include/opencv2/core/neon_utils.hpp + /usr/local/include/opencv2/core/operations.hpp + /usr/local/include/opencv2/core/optim.hpp + /usr/local/include/opencv2/core/ovx.hpp + /usr/local/include/opencv2/core/persistence.hpp + /usr/local/include/opencv2/core/ptr.inl.hpp + /usr/local/include/opencv2/core/saturate.hpp + /usr/local/include/opencv2/core/traits.hpp + /usr/local/include/opencv2/core/types.hpp + /usr/local/include/opencv2/core/types_c.h + /usr/local/include/opencv2/core/utility.hpp + /usr/local/include/opencv2/core/version.hpp + /usr/local/include/opencv2/core/vsx_utils.hpp + /usr/local/include/opencv2/dnn.hpp + /usr/local/include/opencv2/dnn/dict.hpp + /usr/local/include/opencv2/dnn/dnn.hpp + /usr/local/include/opencv2/dnn/dnn.inl.hpp + /usr/local/include/opencv2/dnn/layer.hpp + /usr/local/include/opencv2/dnn/utils/inference_engine.hpp + /usr/local/include/opencv2/features2d.hpp + /usr/local/include/opencv2/flann.hpp + /usr/local/include/opencv2/flann/all_indices.h + /usr/local/include/opencv2/flann/allocator.h + /usr/local/include/opencv2/flann/any.h + /usr/local/include/opencv2/flann/autotuned_index.h + /usr/local/include/opencv2/flann/composite_index.h + /usr/local/include/opencv2/flann/config.h + /usr/local/include/opencv2/flann/defines.h + /usr/local/include/opencv2/flann/dist.h + /usr/local/include/opencv2/flann/dynamic_bitset.h + /usr/local/include/opencv2/flann/flann_base.hpp + /usr/local/include/opencv2/flann/general.h + /usr/local/include/opencv2/flann/ground_truth.h + /usr/local/include/opencv2/flann/heap.h + /usr/local/include/opencv2/flann/hierarchical_clustering_index.h + /usr/local/include/opencv2/flann/index_testing.h + /usr/local/include/opencv2/flann/kdtree_index.h + /usr/local/include/opencv2/flann/kdtree_single_index.h + /usr/local/include/opencv2/flann/kmeans_index.h + /usr/local/include/opencv2/flann/linear_index.h + /usr/local/include/opencv2/flann/logger.h + /usr/local/include/opencv2/flann/lsh_index.h + /usr/local/include/opencv2/flann/lsh_table.h + /usr/local/include/opencv2/flann/matrix.h + /usr/local/include/opencv2/flann/miniflann.hpp + /usr/local/include/opencv2/flann/nn_index.h + /usr/local/include/opencv2/flann/params.h + /usr/local/include/opencv2/flann/random.h + /usr/local/include/opencv2/flann/result_set.h + /usr/local/include/opencv2/flann/sampling.h + /usr/local/include/opencv2/flann/saving.h + /usr/local/include/opencv2/flann/timer.h + /usr/local/include/opencv2/highgui.hpp + /usr/local/include/opencv2/highgui/highgui_c.h + /usr/local/include/opencv2/imgcodecs.hpp + /usr/local/include/opencv2/imgcodecs/imgcodecs_c.h + /usr/local/include/opencv2/imgproc.hpp + /usr/local/include/opencv2/imgproc/imgproc_c.h + /usr/local/include/opencv2/imgproc/types_c.h + /usr/local/include/opencv2/ml.hpp + /usr/local/include/opencv2/ml/ml.inl.hpp + /usr/local/include/opencv2/objdetect.hpp + /usr/local/include/opencv2/objdetect/detection_based_tracker.hpp + /usr/local/include/opencv2/objdetect/objdetect_c.h + /usr/local/include/opencv2/opencv.hpp + /usr/local/include/opencv2/opencv_modules.hpp + /usr/local/include/opencv2/photo.hpp + /usr/local/include/opencv2/photo/photo_c.h + /usr/local/include/opencv2/shape.hpp + /usr/local/include/opencv2/shape/emdL1.hpp + /usr/local/include/opencv2/shape/hist_cost.hpp + /usr/local/include/opencv2/shape/shape_distance.hpp + /usr/local/include/opencv2/shape/shape_transformer.hpp + /usr/local/include/opencv2/stitching.hpp + /usr/local/include/opencv2/stitching/detail/blenders.hpp + /usr/local/include/opencv2/stitching/detail/camera.hpp + /usr/local/include/opencv2/stitching/detail/exposure_compensate.hpp + /usr/local/include/opencv2/stitching/detail/matchers.hpp + /usr/local/include/opencv2/stitching/detail/motion_estimators.hpp + /usr/local/include/opencv2/stitching/detail/seam_finders.hpp + /usr/local/include/opencv2/stitching/detail/util.hpp + /usr/local/include/opencv2/stitching/detail/util_inl.hpp + /usr/local/include/opencv2/stitching/detail/warpers.hpp + /usr/local/include/opencv2/stitching/detail/warpers_inl.hpp + /usr/local/include/opencv2/stitching/warpers.hpp + /usr/local/include/opencv2/superres.hpp + /usr/local/include/opencv2/superres/optical_flow.hpp + /usr/local/include/opencv2/video.hpp + /usr/local/include/opencv2/video/background_segm.hpp + /usr/local/include/opencv2/video/tracking.hpp + /usr/local/include/opencv2/video/tracking_c.h + /usr/local/include/opencv2/videoio.hpp + /usr/local/include/opencv2/videoio/videoio_c.h + /usr/local/include/opencv2/videostab.hpp + /usr/local/include/opencv2/videostab/deblurring.hpp + /usr/local/include/opencv2/videostab/fast_marching.hpp + /usr/local/include/opencv2/videostab/fast_marching_inl.hpp + /usr/local/include/opencv2/videostab/frame_source.hpp + /usr/local/include/opencv2/videostab/global_motion.hpp + /usr/local/include/opencv2/videostab/inpainting.hpp + /usr/local/include/opencv2/videostab/log.hpp + /usr/local/include/opencv2/videostab/motion_core.hpp + /usr/local/include/opencv2/videostab/motion_stabilizing.hpp + /usr/local/include/opencv2/videostab/optical_flow.hpp + /usr/local/include/opencv2/videostab/outlier_rejection.hpp + /usr/local/include/opencv2/videostab/ring_buffer.hpp + /usr/local/include/opencv2/videostab/stabilizer.hpp + /usr/local/include/opencv2/videostab/wobble_suppression.hpp diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/depend.make b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/depend.make new file mode 100644 index 0000000..6361806 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/depend.make @@ -0,0 +1,137 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +CMakeFiles/homework1.dir/main.cpp.o: ../classifier.hpp +CMakeFiles/homework1.dir/main.cpp.o: ../main.cpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv/cxcore.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/calib3d.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/calib3d/calib3d_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/affine.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/async.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/base.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/bufferpool.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/check.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/core_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cuda.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cuda.inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cuda_types.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cv_cpu_dispatch.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cv_cpu_helper.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cvdef.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cvstd.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/cvstd.inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/fast_math.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/hal/interface.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/mat.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/mat.inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/matx.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/neon_utils.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/operations.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/optim.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/ovx.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/persistence.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/ptr.inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/saturate.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/traits.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/types.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/types_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/utility.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/version.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/core/vsx_utils.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/dnn.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/dnn/dict.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/dnn/dnn.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/dnn/dnn.inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/dnn/layer.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/dnn/utils/inference_engine.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/features2d.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/all_indices.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/allocator.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/any.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/autotuned_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/composite_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/config.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/defines.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/dist.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/dynamic_bitset.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/flann_base.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/general.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/ground_truth.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/heap.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/hierarchical_clustering_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/index_testing.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/kdtree_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/kdtree_single_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/kmeans_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/linear_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/logger.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/lsh_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/lsh_table.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/matrix.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/miniflann.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/nn_index.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/params.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/random.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/result_set.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/sampling.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/saving.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/flann/timer.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/highgui.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/highgui/highgui_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/imgcodecs.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/imgcodecs/imgcodecs_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/imgproc.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/imgproc/imgproc_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/imgproc/types_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/ml.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/ml/ml.inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/objdetect.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/objdetect/detection_based_tracker.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/objdetect/objdetect_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/opencv.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/opencv_modules.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/photo.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/photo/photo_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/shape.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/shape/emdL1.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/shape/hist_cost.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/shape/shape_distance.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/shape/shape_transformer.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/blenders.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/camera.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/exposure_compensate.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/matchers.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/motion_estimators.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/seam_finders.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/util.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/util_inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/warpers.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/detail/warpers_inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/stitching/warpers.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/superres.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/superres/optical_flow.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/video.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/video/background_segm.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/video/tracking.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/video/tracking_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videoio.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videoio/videoio_c.h +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/deblurring.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/fast_marching.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/fast_marching_inl.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/frame_source.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/global_motion.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/inpainting.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/log.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/motion_core.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/motion_stabilizing.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/optical_flow.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/outlier_rejection.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/ring_buffer.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/stabilizer.hpp +CMakeFiles/homework1.dir/main.cpp.o: /usr/local/include/opencv2/videostab/wobble_suppression.hpp + diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/flags.make b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/flags.make new file mode 100644 index 0000000..2001b99 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/flags.make @@ -0,0 +1,10 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# compile CXX with /usr/bin/c++ +CXX_FLAGS = -std=gnu++11 + +CXX_DEFINES = + +CXX_INCLUDES = -isystem /usr/local/include -isystem /usr/local/include/opencv + diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/link.txt b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/link.txt new file mode 100644 index 0000000..4e6d653 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/link.txt @@ -0,0 +1 @@ +/usr/bin/c++ CMakeFiles/homework1.dir/main.cpp.o -o homework1 /usr/local/lib/libopencv_superres.so.3.4.7 /usr/local/lib/libopencv_shape.so.3.4.7 /usr/local/lib/libopencv_stitching.so.3.4.7 /usr/local/lib/libopencv_videostab.so.3.4.7 /usr/local/lib/libopencv_dnn.so.3.4.7 /usr/local/lib/libopencv_objdetect.so.3.4.7 /usr/local/lib/libopencv_ml.so.3.4.7 /usr/local/lib/libopencv_highgui.so.3.4.7 /usr/local/lib/libopencv_photo.so.3.4.7 /usr/local/lib/libopencv_video.so.3.4.7 /usr/local/lib/libopencv_calib3d.so.3.4.7 /usr/local/lib/libopencv_features2d.so.3.4.7 /usr/local/lib/libopencv_flann.so.3.4.7 /usr/local/lib/libopencv_videoio.so.3.4.7 /usr/local/lib/libopencv_imgcodecs.so.3.4.7 /usr/local/lib/libopencv_imgproc.so.3.4.7 /usr/local/lib/libopencv_core.so.3.4.7 -Wl,-rpath,/usr/local/lib diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/main.cpp.o b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/main.cpp.o new file mode 100644 index 0000000..6980c84 Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/main.cpp.o differ diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/progress.make b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/progress.make new file mode 100644 index 0000000..abadeb0 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/homework1.dir/progress.make @@ -0,0 +1,3 @@ +CMAKE_PROGRESS_1 = 1 +CMAKE_PROGRESS_2 = 2 + diff --git a/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/progress.marks b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/progress.marks new file mode 100644 index 0000000..0cfbf08 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/progress.marks @@ -0,0 +1 @@ +2 diff --git a/train-4/zhongzebin-hm/find_distance/build/Makefile b/train-4/zhongzebin-hm/find_distance/build/Makefile new file mode 100644 index 0000000..cc0a2b1 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/Makefile @@ -0,0 +1,178 @@ +# CMAKE generated file: DO NOT EDIT! +# Generated by "Unix Makefiles" Generator, CMake Version 3.5 + +# Default target executed when no arguments are given to make. +default_target: all + +.PHONY : default_target + +# Allow only one "make -f Makefile2" at a time, but pass parallelism. +.NOTPARALLEL: + + +#============================================================================= +# Special targets provided by cmake. + +# Disable implicit rules so canonical targets will work. +.SUFFIXES: + + +# Remove some rules from gmake that .SUFFIXES does not remove. +SUFFIXES = + +.SUFFIXES: .hpux_make_needs_suffix_list + + +# Suppress display of executed commands. +$(VERBOSE).SILENT: + + +# A target that is always out of date. +cmake_force: + +.PHONY : cmake_force + +#============================================================================= +# Set environment variables for the build. + +# The shell in which to execute make rules. +SHELL = /bin/sh + +# The CMake executable. +CMAKE_COMMAND = /usr/bin/cmake + +# The command to remove a file. +RM = /usr/bin/cmake -E remove -f + +# Escaping for special characters. +EQUALS = = + +# The top-level source directory on which CMake was run. +CMAKE_SOURCE_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance + +# The top-level build directory on which CMake was run. +CMAKE_BINARY_DIR = /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build + +#============================================================================= +# Targets provided globally by CMake. + +# Special rule for the target edit_cache +edit_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..." + /usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. +.PHONY : edit_cache + +# Special rule for the target edit_cache +edit_cache/fast: edit_cache + +.PHONY : edit_cache/fast + +# Special rule for the target rebuild_cache +rebuild_cache: + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..." + /usr/bin/cmake -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) +.PHONY : rebuild_cache + +# Special rule for the target rebuild_cache +rebuild_cache/fast: rebuild_cache + +.PHONY : rebuild_cache/fast + +# The main all target +all: cmake_check_build_system + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles/progress.marks + $(MAKE) -f CMakeFiles/Makefile2 all + $(CMAKE_COMMAND) -E cmake_progress_start /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/CMakeFiles 0 +.PHONY : all + +# The main clean target +clean: + $(MAKE) -f CMakeFiles/Makefile2 clean +.PHONY : clean + +# The main clean target +clean/fast: clean + +.PHONY : clean/fast + +# Prepare targets for installation. +preinstall: all + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall + +# Prepare targets for installation. +preinstall/fast: + $(MAKE) -f CMakeFiles/Makefile2 preinstall +.PHONY : preinstall/fast + +# clear depends +depend: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 +.PHONY : depend + +#============================================================================= +# Target rules for targets named homework1 + +# Build rule for target. +homework1: cmake_check_build_system + $(MAKE) -f CMakeFiles/Makefile2 homework1 +.PHONY : homework1 + +# fast build rule for target. +homework1/fast: + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/build +.PHONY : homework1/fast + +main.o: main.cpp.o + +.PHONY : main.o + +# target to build an object file +main.cpp.o: + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/main.cpp.o +.PHONY : main.cpp.o + +main.i: main.cpp.i + +.PHONY : main.i + +# target to preprocess a source file +main.cpp.i: + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/main.cpp.i +.PHONY : main.cpp.i + +main.s: main.cpp.s + +.PHONY : main.s + +# target to generate assembly for a file +main.cpp.s: + $(MAKE) -f CMakeFiles/homework1.dir/build.make CMakeFiles/homework1.dir/main.cpp.s +.PHONY : main.cpp.s + +# Help Target +help: + @echo "The following are some of the valid targets for this Makefile:" + @echo "... all (the default if no target is provided)" + @echo "... clean" + @echo "... depend" + @echo "... edit_cache" + @echo "... rebuild_cache" + @echo "... homework1" + @echo "... main.o" + @echo "... main.i" + @echo "... main.s" +.PHONY : help + + + +#============================================================================= +# Special targets to cleanup operation of make. + +# Special rule to run CMake to check the build system integrity. +# No rule that depends on this can have commands that come from listfiles +# because they might be regenerated. +cmake_check_build_system: + $(CMAKE_COMMAND) -H$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0 +.PHONY : cmake_check_build_system + diff --git a/train-4/zhongzebin-hm/find_distance/build/cmake_install.cmake b/train-4/zhongzebin-hm/find_distance/build/cmake_install.cmake new file mode 100644 index 0000000..bc0afc9 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/build/cmake_install.cmake @@ -0,0 +1,44 @@ +# Install script for directory: /home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance + +# Set the install prefix +if(NOT DEFINED CMAKE_INSTALL_PREFIX) + set(CMAKE_INSTALL_PREFIX "/usr/local") +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 "") + 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() + +# Install shared libraries without execute permission? +if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) + set(CMAKE_INSTALL_SO_NO_EXE "1") +endif() + +if(CMAKE_INSTALL_COMPONENT) + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +file(WRITE "/home/zhongzebin/文档/SPTraining-VisionGroup/train-4/zhongzebin-hm/find_distance/build/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/train-4/zhongzebin-hm/find_distance/build/homework1 b/train-4/zhongzebin-hm/find_distance/build/homework1 new file mode 100755 index 0000000..ba333c1 Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/build/homework1 differ diff --git a/train-4/zhongzebin-hm/find_distance/classifier.hpp b/train-4/zhongzebin-hm/find_distance/classifier.hpp new file mode 100644 index 0000000..745c968 --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/classifier.hpp @@ -0,0 +1,199 @@ +#pragma once + +#include +#include +#include +#include + +#include +#include // POSIX.(As C++11 doesn't support filesystem) + +namespace cf +{ + +class template_classifier; +using classifier = template_classifier; + +class template_classifier +{ +public: + using container_t = std::vector;//container_t表示图像容器 + // Constructor,构造函数 + template_classifier(const std::string& g_loc, const std::string& b_loc)//其中loc代表地址 + { create_templates(g_loc, b_loc); } + template_classifier(const std::string& loc) + { + if(loc.back() == '/' || loc.back() == '\\')//判断地址字符串最后是否加了/,没加的话加上 + create_templates(loc+"positive", loc+"negative"); + else + create_templates(loc+"/positive", loc+"/negative"); + } + inline void create_templates(const std::string& g_loc, const std::string& b_loc)//内联函数相当于直接将代码粘贴到调用处,减少查找函数的时间 + { + container_t ret; + good_templates = make_templates_(g_loc);//返回正样本 + bad_templates = make_templates_(b_loc);//返回负样本 + /*good_templates_debug=good_templates; + bad_templates_debug=bad_templates; + for(int i=0;i(i); + for (uint32_t j = 0; j < iter_cols; ++j) + { + uchar value=row_ptr[i*iter_cols+j]; + if(value==1) row_ptr[i*iter_cols+j]=255; + } + } + cv::imwrite("../change/"+std::to_string(i)+".png", good_templates_debug[i]); + }*/ + } + inline int forward(cv::Mat mat) // noexcept + { + prepare_(mat); + int match_id = 0; + int now_belief; + int max_belief = std::numeric_limits::min();//int型最小值 + int id = 0; + for(; id < good_templates.size(); ++id)//遍历所有的正样本 + { + now_belief = compare_(mat, good_templates[id]);//比较输入图像和正样本,返回当前置信度 + // std::cout << id << " --- " << now_belief << '\n'; + if(max_belief < now_belief)//求得对应置信度最大的正样本 + { + max_belief = now_belief; + match_id = id; + } + } + if(max_belief < low_bound)//如果最大置信度小于阈值,返回当前id(对应最后的正样本id+1) + return id; + for(int i = 0; i < bad_templates.size(); ++id, ++i)//遍历所有的负样本 + { + now_belief = compare_(mat, bad_templates[i]); + // std::cout << id << " --- " << now_belief << '\n'; + if(max_belief < now_belief) // 如果当前置信度大于最大置信度,返回最后的正样本id+1 + return id; + } + return match_id;//返回匹配的正样本id + } + inline bool boolean_forward(cv::Mat& mat) + { + return forward(mat) < good_templates.size();//如果成功找到对应的正样本,返回1 + } + inline void debug_prepared_show(cv::Mat& x) + { + debug_prepare_(x); + cv::imshow("debug", x); + } +public: // Default values. + double thre_proportion = 0.25; // 比例阈值,取直方图中thre_proportion位置亮的像素作为thre,把前0.25亮的元素取1,其余取0 + int low_bound = 1000;//最小置信阈值 + cv::Size2i fixed_sz = {64, 64};//所有读入的图像都放缩到fixed_sz大小 +private: + // @@@ get_threshold: 按获取一个cv::Mat的阈值 + inline int get_threshold_(cv::Mat& mat) + { + uint32_t iter_rows = mat.rows; + uint32_t iter_cols = mat.cols; + auto sum_pixel = iter_rows * iter_cols; + if(mat.isContinuous()) + { + iter_cols = sum_pixel; + iter_rows = 1; + } + int histogram[256]; + memset(histogram, 0, sizeof(histogram)); + for (uint32_t i = 0; i < iter_rows; ++i) + { + const uchar* lhs = mat.ptr(i); + for (uint32_t j = 0; j < iter_cols; ++j) + ++histogram[*lhs++]; + } + auto left = thre_proportion * sum_pixel; + int i = 255; + while((left -= histogram[i--]) > 0); + if(std::max(i,0)>5) + return std::max(i, 0); + else return 255; + } + inline void debug_prepare_(cv::Mat& mat) + { + // std::cout << dst_sz << std::endl; + cv::resize(mat, mat, fixed_sz); + cv::threshold(mat, mat, get_threshold_(mat), 255, cv::THRESH_BINARY); + } + // @@@ prepare_ + inline void prepare_(cv::Mat& mat) + { + // std::cout << dst_sz << std::endl; + cv::resize(mat, mat, fixed_sz);//放缩图像 + cv::threshold(mat, mat, get_threshold_(mat), 1, cv::THRESH_BINARY);//二值化图像,前0.25亮取1,反之取0 + } + // @@@ make_templates_ + inline container_t make_templates_(const std::string& where) + { + container_t ret; + // std::cout << where.c_str() << std::endl; + DIR* dir_ptr = opendir(where.c_str());//.c_str()返回指向该字符串的指针,形式为char*,dir_ptr为该文件夹目录 + dirent* dptr; + while((dptr = readdir(dir_ptr)) != NULL)//将dir_ptr目录下的文件信息依次传入dptr中 + { + if(dptr->d_name[0] == '.')//如果文件名第一位为.则进行下一个 + continue; + cv::Mat tem; + if(where.back() == '/')//判断where最后一位是否为/,不是的话就加上 + tem = cv::imread(where+dptr->d_name, cv::IMREAD_GRAYSCALE); + else + tem = cv::imread(where+'/'+dptr->d_name, cv::IMREAD_GRAYSCALE);//图像读入tem中 + prepare_(tem); + ret.push_back(tem);//将变换后的图像放入ret中 + } + std::cout << "@@@ " << where << " ~ " << ret.size() << " file reading finished.\n"; + return ret; + } + // @@@ compare_ + inline int compare_(cv::Mat& tem, cv::Mat& true_sample) + { + uint32_t iter_rows = fixed_sz.height; + uint32_t iter_cols = fixed_sz.width; + auto sum_pixel = iter_rows * iter_cols; + if(tem.isContinuous() && true_sample.isContinuous()) + { + iter_cols = sum_pixel; + iter_rows = 1; + } + int same_cnt = 0; + for (uint32_t i = 0; i < iter_rows; ++i) + { + const uchar* lhs = tem.ptr(i); + const uchar* rhs = true_sample.ptr(i); + for (uint32_t j = 0; j < iter_cols; ++j) + { + bool l = *lhs++, r = *rhs++; + if(!l && !r)//如果l,r都为0,same_cnt不变 + continue; + same_cnt += (l && r) ? 3 : -1;//如果l,r都为1,same_cnt+3;如果l,r一个为0一个为1,same_cnt-1 + } + } + return same_cnt; + } +private: + container_t good_templates; + container_t bad_templates; + //container_t good_templates_debug; + //container_t bad_templates_debug; +}; // class template_classifier + + + +} // namespace sp diff --git a/train-4/zhongzebin-hm/find_distance/detect/1.jpg b/train-4/zhongzebin-hm/find_distance/detect/1.jpg new file mode 100644 index 0000000..1d85999 Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/detect/1.jpg differ diff --git a/train-4/zhongzebin-hm/find_distance/detect/2.jpg b/train-4/zhongzebin-hm/find_distance/detect/2.jpg new file mode 100644 index 0000000..b0d741f Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/detect/2.jpg differ diff --git a/train-4/zhongzebin-hm/find_distance/detect/3.jpg b/train-4/zhongzebin-hm/find_distance/detect/3.jpg new file mode 100644 index 0000000..ec59adc Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/detect/3.jpg differ diff --git a/train-4/zhongzebin-hm/find_distance/gray.jpg b/train-4/zhongzebin-hm/find_distance/gray.jpg new file mode 100644 index 0000000..17dd910 Binary files /dev/null and b/train-4/zhongzebin-hm/find_distance/gray.jpg differ diff --git a/train-4/zhongzebin-hm/find_distance/main.cpp b/train-4/zhongzebin-hm/find_distance/main.cpp new file mode 100644 index 0000000..44f230d --- /dev/null +++ b/train-4/zhongzebin-hm/find_distance/main.cpp @@ -0,0 +1,252 @@ +#include +#include +#include +#include "classifier.hpp" +#include +namespace sp +{ + +float iou(const cv::Rect& lhs, const cv::Rect& rhs) +{ + //筛选出了两个矩形框的交集 + const int lt_x = std::max(lhs.x, rhs.x); + const int lt_y = std::max(lhs.y, rhs.y); + const int rd_x = std::min(lhs.x + lhs.width, rhs.x + rhs.width); + const int rd_y = std::min(lhs.y + lhs.height, rhs.y + rhs.height); + + const int inner_w = std::max(0, rd_x - lt_x + 1); + const int inner_h = std::max(0, rd_y - lt_y + 1); + const int inner_area = inner_h * inner_w; + + return static_cast(inner_area) / (lhs.area() + rhs.area() - inner_area); +} + +bool left_or_right(cv::Mat temp) +{ + const int iter_rows=temp.isContinuous() ? 1:temp.rows; + const int iter_cols=temp.rows*temp.cols/iter_rows*temp.channels(); + int left=0,right=0; + for(int i=0;i(i); + for(int j=0;jiter_cols/3*2) + right+=value; + } + if(i>iter_rows/3*2) + { + if(jiter_cols/3*2) + left+=value; + } + } + } + return left>right; +} +double find_distance(std::vector dis_pixel) +{ + sort(dis_pixel.begin(),dis_pixel.end()); + double min=(dis_pixel[0]+dis_pixel[1])/2; + double length=55; + double real_distance=length*2784/min; + return real_distance/1452*1000;//基于1m标定对数据矫正 +} + +} + +int main() +{ + //读入装甲板模型 + cf::classifier classifier("../armor"); + auto mat = cv::imread("../pic5_Calibration.jpg", cv::IMREAD_GRAYSCALE); + auto gray = cv::imread("../pic5_Calibration.jpg", cv::IMREAD_GRAYSCALE); + auto org=cv::imread("../pic5_Calibration.jpg"); + std::cout<<"rows:"+std::to_string(mat.rows)<<'\n'; + std::cout<<"cols:"+std::to_string(mat.cols)<<'\n'; + cv::resize(mat, mat, {1280, 720});//存储灰度图像(阈值化后) + cv::resize(org, org, {1280, 720});//存储彩色图像 + cv::resize(gray, gray, {1280, 720});//存储灰度图像(阈值化前) + //对图像中像素值小于180的赋值为0 + const int iter_rows=mat.isContinuous() ? 1:mat.rows; + const int iter_cols=mat.rows*mat.cols/iter_rows*mat.channels(); + for(int i=0;i(i); + for(int j=0;j> contours; + std::vector bboxes; + + mser->detectRegions(mat, contours, bboxes); + std::cout << bboxes.size() << '\n'; + + + std::vector drawed_rects; + drawed_rects.reserve(bboxes.size() / 4);//reserve增加了容器的capacity,但size不变。capacity代表容器能存储的最大空间 + + int cnt = 0; + if (!bboxes.empty())//如果检测到了矩形框 + { + ++cnt; + //cv::rectangle(org, bboxes.front(), {0, 0, 255},3);//画上第一个检测到的矩形框 + drawed_rects.push_back(0); + } + + constexpr float thresh = 0.5; + for (int i = 1; i < bboxes.size(); ++i) + { + bool skip = false; + for (auto&& index : drawed_rects)//遍历drawed_rects里所有的元素,index即为元素内容 + {//应当要大框,舍弃小框 + //bool judge=!(bboxes[i].contains(bboxes[index].tl()) && bboxes[i].contains(bboxes[index].br())); + if (skip = (sp::iou(bboxes[i], bboxes[index]) > thresh) ) + { + break; + } + if(bboxes[i].width>bboxes[i].height)//如果宽大于高,skip为true并跳出循环 + { + skip=true; + break; + } + } + if (skip)//skip为true,进行下一个矩形框查找 + continue; + //cv::rectangle(org, bboxes[i], { 0, 0, 255 },3);//画出当前矩形框 + drawed_rects.push_back(i);//记录矩形框的index + ++cnt; + } + //将所有检测到的矩形框两两组合成待检测区域 + std::vector detect; + int count=0; + /*for(int i=1;i<2;i++) + for(int j=3;j<4;j++)*/ + for(int i=0;i contour; + contour.push_back(a); + contour.push_back(b); + contour.push_back(c); + contour.push_back(d); + cv::RotatedRect rect = minAreaRect(contour);//求最小外接矩形 + cv::Point2f vertices[4]; + rect.points(vertices);//外接矩形的4个顶点 + /*for (int i = 0; i < 4; i++)//画矩形 + line(org, vertices[i], vertices[(i + 1) % 4], {0,0,255});*/ + cv::Point2f center = rect.center;//外接矩形中心点坐标 + //std::cout<<"angle:"+std::to_string(rect.angle)<<'\n'; + cv::Mat rot_mat = cv::getRotationMatrix2D(center, rect.angle>-45?rect.angle:(-90-rect.angle), 1.0);//求旋转矩阵 + cv::Mat rot_image; + cv::Size dst_sz(gray.size()); + cv::warpAffine(gray, rot_image, rot_mat, dst_sz);//旋转变换 + if(rect.angle>-45) + { + if(center.x - (rect.size.width / 2)>=0 && center.x - (rect.size.width / 2)+rect.size.width<=rot_image.cols && center.y - (rect.size.height/2)-rect.size.height/2>=0 && center.y - (rect.size.height/2)+rect.size.height*2<=rot_image.rows) + { + cv::Mat result = rot_image(cv::Rect(center.x - (rect.size.width / 2), center.y - (rect.size.height/2)-rect.size.height/2, rect.size.width, rect.size.height*2));//提取ROI + + if(result.cols dis_pixel; + for (int i = 0; i < 4; i++)//画矩形 + { + line(org, vertices[i], vertices[(i + 1) % 4], {0,0,255}); + //计算矩形每个边的像素长度(放缩回原图) + dis_pixel.push_back(sqrt(pow(4.167*(vertices[i].x-vertices[(i + 1) % 4].x),2)+pow(3.513*(vertices[i].y-vertices[(i + 1) % 4].y),2))); + } + //计算灯条距离 + //std::cout<<"distance:"+std::to_string(sp::find_distance(dis_pixel))<<'\n'; + cv::putText(org,"distance:"+std::to_string(sp::find_distance(dis_pixel)),vertices[0],cv::FONT_HERSHEY_SIMPLEX, 0.5, cv::Scalar(255, 255, 255), 1, 8); + } + } + } + else + { + if(center.x - (rect.size.height / 2)>=0 && center.x - (rect.size.height / 2)+rect.size.height<=rot_image.cols && center.y - (rect.size.width/2)-rect.size.width/2>=0 && center.y - (rect.size.width/2)+rect.size.width*2<=rot_image.rows) + { + cv::Mat result = rot_image(cv::Rect(center.x - (rect.size.height / 2), center.y - (rect.size.width/2)-rect.size.width/2, rect.size.height, rect.size.width*2));//提取ROI + + if(result.cols dis_pixel; + for (int i = 0; i < 4; i++)//画矩形 + { + line(org, vertices[i], vertices[(i + 1) % 4], {0,0,255}); + //计算矩形每个边的像素长度(放缩回原图) + dis_pixel.push_back(sqrt(pow(4.167*(vertices[i].x-vertices[(i + 1) % 4].x),2)+pow(3.513*(vertices[i].y-vertices[(i + 1) % 4].y),2))); + } + //计算灯条距离 + //std::cout<<"min:"+std::to_string(sp::find_distance(dis_pixel))<<'\n'; + cv::putText(org,"distance:"+std::to_string(sp::find_distance(dis_pixel)),vertices[0],cv::FONT_HERSHEY_SIMPLEX, 0.5, cv::Scalar(255, 255, 255), 1, 8); + } + } + } + } + std::cout< +#include +#include +#include +namespace sp +{ + +float iou(const cv::Rect& lhs, const cv::Rect& rhs) +{ + //筛选出了两个矩形框的交集 + const int lt_x = std::max(lhs.x, rhs.x); + const int lt_y = std::max(lhs.y, rhs.y); + const int rd_x = std::min(lhs.x + lhs.width, rhs.x + rhs.width); + const int rd_y = std::min(lhs.y + lhs.height, rhs.y + rhs.height); + + const int inner_w = std::max(0, rd_x - lt_x + 1); + const int inner_h = std::max(0, rd_y - lt_y + 1); + const int inner_area = inner_h * inner_w; + + return static_cast(inner_area) / (lhs.area() + rhs.area() - inner_area); +} + +std::vector sort_index(std::vector index, std::vector area) +{ + for(int i=0;iarea[j]) + { + int t=area[i]; + area[i]=area[j]; + area[j]=t; + t=index[i]; + index[i]=index[j]; + index[j]=t; + } + } + return index; +} + +cv::Point center(cv::Rect rect) +{ + cv::Point tl=rect.tl(); + cv::Point br=rect.br(); + cv::Point c; + c.x=int((tl.x+br.x)/2); + c.y=int((tl.y+br.y)/2); + return c; +} + +cv::Mat polyfit(std::vector &chain, int n) +{ + cv::Mat y(chain.size(), 1, CV_32F, cv::Scalar::all(0)); + cv::Mat phy(chain.size(), n, CV_32F, cv::Scalar::all(0)); + for (int i = 0; i < phy.rows; i++) + { + float* pr = phy.ptr(i); + for (int j = 0; j < phy.cols; j++) + { + pr[j] = pow(chain[i].x, j); + } + y.at(i) = chain[i].y; + } + cv::Mat phy_t = phy.t(); + cv::Mat phyMULphy_t = phy.t()*phy; + cv::Mat phyMphyInv = phyMULphy_t.inv(); + cv::Mat a = phyMphyInv * phy_t; + a = a * y; + return a; +} + +cv::Mat draw_line(cv::Mat org,float a,float b) +{ + cv::Point begin,end; + begin.x=0; + begin.y=int(b); + int end_y=int((org.cols-1)*a+b); + if(org.rows>end_y) + { + end.x=org.cols-1; + end.y=end_y; + } + else + { + end.y=org.rows-1; + end.x=int((end.y-b)/a); + } + cv::line(org, begin, end, {255,0,0}); + return org; +} + +double distance(float a,float b,cv::Point c) +{ + double dis=(a*c.x+b-c.y)/sqrt(a*a+1); + return abs(dis); +} + +} + + +int main() +{ + /*cv::VideoCapture cap; + cap.open("../10.avi"); + cv::Mat img; + int count=0; + while(1) + { + cap>>img; + if(img.empty()) break; + count++; + if(count==2480) {cv::imwrite("../test2.jpg",img);break;} + //std::cout< channels; + auto org=cv::imread("../test2.jpg"); + cv::split(org,channels); + gray=channels.at(2); + mat=channels.at(2); + cv::Mat blue=channels.at(0); + cv::Mat green=channels.at(1); + std::cout<<"rows:"+std::to_string(mat.rows)<<'\n'; + std::cout<<"cols:"+std::to_string(mat.cols)<<'\n'; + cv::resize(mat, mat, {1280, 720});//存储灰度图像(阈值化后) + cv::resize(org, org, {1280, 720});//存储彩色图像 + cv::resize(gray, gray, {1280, 720});//存储灰度图像(阈值化前) + cv::resize(blue, blue, {1280, 720}); + cv::resize(green, green, {1280, 720}); + //对图像中红色通道小于180或蓝绿通道均大于50赋值为0 + const int iter_rows=mat.isContinuous() ? 1:mat.rows; + const int iter_cols=mat.rows*mat.cols/iter_rows*mat.channels(); + for(int i=0;i(i); + const auto row_ptr_b=blue.ptr(i); + const auto row_ptr_g=green.ptr(i); + for(int j=0;j50 && value_g>50)) + row_ptr[i*iter_cols+j]=0; + } + } + //cv::imshow("gray",mat); + //cv::waitKey(0); + + //使用mser进行聚类,得到聚类后的矩形框区域 + auto mser = cv::MSER::create(); + std::vector> contours; + std::vector bboxes; + + mser->detectRegions(mat, contours, bboxes); + std::cout << bboxes.size() << '\n'; + + + std::vector drawed_rects; + drawed_rects.reserve(bboxes.size() / 4);//reserve增加了容器的capacity,但size不变。capacity代表容器能存储的最大空间 + int area; + std::vector drawed_area;//存储每个合格的矩形框的面积 + if (!bboxes.empty())//如果检测到了矩形框 + { + //cv::rectangle(org, bboxes.front(), {255, 0, 0},3);//画上第一个检测到的矩形框 + area=bboxes.front().area(); + drawed_area.push_back(area); + drawed_rects.push_back(0); + } + + constexpr float thresh = 0.2; + for (int i = 1; i < bboxes.size(); ++i) + { + bool skip = false; + for (auto&& index : drawed_rects)//遍历drawed_rects里所有的元素,index即为元素内容 + { + if (skip = (sp::iou(bboxes[i], bboxes[index]) > thresh) ) + { + break; + } + } + if (skip)//skip为true,进行下一个矩形框查找 + continue; + //cv::rectangle(org, bboxes[i], { 255, 0, 0 },3);//画出当前矩形框 + area=bboxes[i].area(); + drawed_area.push_back(area); + drawed_rects.push_back(i);//记录矩形框的index + } + //排序并获得面积最小的前7个矩形框,并将其中心点存储 + std::vector sort_bboxes=sp::sort_index(drawed_rects,drawed_area); + std::vector c_list; + for(int i=0;i<7;i++) + { + cv::Point c=sp::center(bboxes[sort_bboxes[i]]); + c_list.push_back(c); + } + //for(int i=0;i(0)[0]; + float a=mm.ptr(1)[0]; + //画线 + //org=sp::draw_line(org,a,b); + int mid=bboxes[sort_bboxes[6]].area()+200; + int min_dis=10000; + int flag; + for(int i=sort_bboxes.size()-1;bboxes[sort_bboxes[i]].area()>mid;i--) + { + //cv::rectangle(org, bboxes[sort_bboxes[i]], { 255, 0, 0 },3); + cv::Point c=sp::center(bboxes[sort_bboxes[i]]); + double dis=sp::distance(a,b,c); + if(dis