实例介绍
win10系统中OpenCV3.4.1版本在VS2013中的编译结果,可以直接使用
【实例截图】
【核心代码】
OpenCV3.4.1+VS2013.zip
└── 新建文件夹
├── include
│ ├── CMakeFiles
│ │ ├── generate.stamp
│ │ └── generate.stamp.depend
│ ├── cmake_install.cmake
│ ├── CTestTestfile.cmake
│ ├── INSTALL.vcxproj
│ ├── INSTALL.vcxproj.filters
│ ├── PACKAGE.vcxproj
│ ├── PACKAGE.vcxproj.filters
│ ├── RUN_TESTS.vcxproj
│ └── RUN_TESTS.vcxproj.filters
├── install
│ ├── etc
│ │ ├── haarcascades
│ │ │ ├── haarcascade_eye_tree_eyeglasses.xml
│ │ │ ├── haarcascade_eye.xml
│ │ │ ├── haarcascade_frontalcatface_extended.xml
│ │ │ ├── haarcascade_frontalcatface.xml
│ │ │ ├── haarcascade_frontalface_alt2.xml
│ │ │ ├── haarcascade_frontalface_alt_tree.xml
│ │ │ ├── haarcascade_frontalface_alt.xml
│ │ │ ├── haarcascade_frontalface_default.xml
│ │ │ ├── haarcascade_fullbody.xml
│ │ │ ├── haarcascade_lefteye_2splits.xml
│ │ │ ├── haarcascade_licence_plate_rus_16stages.xml
│ │ │ ├── haarcascade_lowerbody.xml
│ │ │ ├── haarcascade_profileface.xml
│ │ │ ├── haarcascade_righteye_2splits.xml
│ │ │ ├── haarcascade_russian_plate_number.xml
│ │ │ ├── haarcascade_smile.xml
│ │ │ └── haarcascade_upperbody.xml
│ │ └── lbpcascades
│ │ ├── lbpcascade_frontalcatface.xml
│ │ ├── lbpcascade_frontalface_improved.xml
│ │ ├── lbpcascade_frontalface.xml
│ │ ├── lbpcascade_profileface.xml
│ │ └── lbpcascade_silverware.xml
│ ├── include
│ │ ├── opencv
│ │ │ ├── cvaux.h
│ │ │ ├── cvaux.hpp
│ │ │ ├── cv.h
│ │ │ ├── cv.hpp
│ │ │ ├── cvwimage.h
│ │ │ ├── cxcore.h
│ │ │ ├── cxcore.hpp
│ │ │ ├── cxeigen.hpp
│ │ │ ├── cxmisc.h
│ │ │ ├── highgui.h
│ │ │ └── ml.h
│ │ └── opencv2
│ │ ├── calib3d
│ │ │ ├── calib3d_c.h
│ │ │ └── calib3d.hpp
│ │ ├── calib3d.hpp
│ │ ├── core
│ │ │ ├── affine.hpp
│ │ │ ├── base.hpp
│ │ │ ├── bufferpool.hpp
│ │ │ ├── core_c.h
│ │ │ ├── core.hpp
│ │ │ ├── cuda
│ │ │ │ ├── block.hpp
│ │ │ │ ├── border_interpolate.hpp
│ │ │ │ ├── color.hpp
│ │ │ │ ├── common.hpp
│ │ │ │ ├── datamov_utils.hpp
│ │ │ │ ├── detail
│ │ │ │ │ ├── color_detail.hpp
│ │ │ │ │ ├── reduce.hpp
│ │ │ │ │ ├── reduce_key_val.hpp
│ │ │ │ │ ├── transform_detail.hpp
│ │ │ │ │ ├── type_traits_detail.hpp
│ │ │ │ │ └── vec_distance_detail.hpp
│ │ │ │ ├── dynamic_smem.hpp
│ │ │ │ ├── emulation.hpp
│ │ │ │ ├── filters.hpp
│ │ │ │ ├── funcattrib.hpp
│ │ │ │ ├── functional.hpp
│ │ │ │ ├── limits.hpp
│ │ │ │ ├── reduce.hpp
│ │ │ │ ├── saturate_cast.hpp
│ │ │ │ ├── scan.hpp
│ │ │ │ ├── simd_functions.hpp
│ │ │ │ ├── transform.hpp
│ │ │ │ ├── type_traits.hpp
│ │ │ │ ├── utility.hpp
│ │ │ │ ├── vec_distance.hpp
│ │ │ │ ├── vec_math.hpp
│ │ │ │ ├── vec_traits.hpp
│ │ │ │ ├── warp.hpp
│ │ │ │ ├── warp_reduce.hpp
│ │ │ │ └── warp_shuffle.hpp
│ │ │ ├── cuda.hpp
│ │ │ ├── cuda.inl.hpp
│ │ │ ├── cuda_stream_accessor.hpp
│ │ │ ├── cuda_types.hpp
│ │ │ ├── cv_cpu_dispatch.h
│ │ │ ├── cv_cpu_helper.h
│ │ │ ├── cvdef.h
│ │ │ ├── cvstd.hpp
│ │ │ ├── cvstd.inl.hpp
│ │ │ ├── directx.hpp
│ │ │ ├── eigen.hpp
│ │ │ ├── fast_math.hpp
│ │ │ ├── hal
│ │ │ │ ├── hal.hpp
│ │ │ │ ├── interface.h
│ │ │ │ ├── intrin_cpp.hpp
│ │ │ │ ├── intrin.hpp
│ │ │ │ ├── intrin_neon.hpp
│ │ │ │ ├── intrin_sse.hpp
│ │ │ │ └── intrin_vsx.hpp
│ │ │ ├── ippasync.hpp
│ │ │ ├── mat.hpp
│ │ │ ├── mat.inl.hpp
│ │ │ ├── matx.hpp
│ │ │ ├── neon_utils.hpp
│ │ │ ├── ocl_genbase.hpp
│ │ │ ├── ocl.hpp
│ │ │ ├── opencl
│ │ │ │ ├── ocl_defs.hpp
│ │ │ │ ├── opencl_info.hpp
│ │ │ │ ├── opencl_svm.hpp
│ │ │ │ └── runtime
│ │ │ │ ├── autogenerated
│ │ │ │ │ ├── opencl_clamdblas.hpp
│ │ │ │ │ ├── opencl_clamdfft.hpp
│ │ │ │ │ ├── opencl_core.hpp
│ │ │ │ │ ├── opencl_core_wrappers.hpp
│ │ │ │ │ ├── opencl_gl.hpp
│ │ │ │ │ └── opencl_gl_wrappers.hpp
│ │ │ │ ├── opencl_clamdblas.hpp
│ │ │ │ ├── opencl_clamdfft.hpp
│ │ │ │ ├── opencl_core.hpp
│ │ │ │ ├── opencl_core_wrappers.hpp
│ │ │ │ ├── opencl_gl.hpp
│ │ │ │ ├── opencl_gl_wrappers.hpp
│ │ │ │ ├── opencl_svm_20.hpp
│ │ │ │ ├── opencl_svm_definitions.hpp
│ │ │ │ └── opencl_svm_hsa_extension.hpp
│ │ │ ├── opengl.hpp
│ │ │ ├── operations.hpp
│ │ │ ├── optim.hpp
│ │ │ ├── ovx.hpp
│ │ │ ├── persistence.hpp
│ │ │ ├── ptr.inl.hpp
│ │ │ ├── saturate.hpp
│ │ │ ├── softfloat.hpp
│ │ │ ├── sse_utils.hpp
│ │ │ ├── traits.hpp
│ │ │ ├── types_c.h
│ │ │ ├── types.hpp
│ │ │ ├── utility.hpp
│ │ │ ├── utils
│ │ │ │ ├── filesystem.hpp
│ │ │ │ ├── logger.defines.hpp
│ │ │ │ ├── logger.hpp
│ │ │ │ └── trace.hpp
│ │ │ ├── va_intel.hpp
│ │ │ ├── version.hpp
│ │ │ ├── vsx_utils.hpp
│ │ │ └── wimage.hpp
│ │ ├── core.hpp
│ │ ├── cvconfig.h
│ │ ├── dnn
│ │ │ ├── all_layers.hpp
│ │ │ ├── dict.hpp
│ │ │ ├── dnn.hpp
│ │ │ ├── dnn.inl.hpp
│ │ │ ├── layer.details.hpp
│ │ │ ├── layer.hpp
│ │ │ └── shape_utils.hpp
│ │ ├── dnn.hpp
│ │ ├── features2d
│ │ │ ├── features2d.hpp
│ │ │ └── hal
│ │ │ └── interface.h
│ │ ├── features2d.hpp
│ │ ├── flann
│ │ │ ├── all_indices.h
│ │ │ ├── allocator.h
│ │ │ ├── any.h
│ │ │ ├── autotuned_index.h
│ │ │ ├── composite_index.h
│ │ │ ├── config.h
│ │ │ ├── defines.h
│ │ │ ├── dist.h
│ │ │ ├── dummy.h
│ │ │ ├── dynamic_bitset.h
│ │ │ ├── flann_base.hpp
│ │ │ ├── flann.hpp
│ │ │ ├── general.h
│ │ │ ├── ground_truth.h
│ │ │ ├── hdf5.h
│ │ │ ├── heap.h
│ │ │ ├── hierarchical_clustering_index.h
│ │ │ ├── index_testing.h
│ │ │ ├── kdtree_index.h
│ │ │ ├── kdtree_single_index.h
│ │ │ ├── kmeans_index.h
│ │ │ ├── linear_index.h
│ │ │ ├── logger.h
│ │ │ ├── lsh_index.h
│ │ │ ├── lsh_table.h
│ │ │ ├── matrix.h
│ │ │ ├── miniflann.hpp
│ │ │ ├── nn_index.h
│ │ │ ├── object_factory.h
│ │ │ ├── params.h
│ │ │ ├── random.h
│ │ │ ├── result_set.h
│ │ │ ├── sampling.h
│ │ │ ├── saving.h
│ │ │ ├── simplex_downhill.h
│ │ │ └── timer.h
│ │ ├── flann.hpp
│ │ ├── highgui
│ │ │ ├── highgui_c.h
│ │ │ └── highgui.hpp
│ │ ├── highgui.hpp
│ │ ├── imgcodecs
│ │ │ ├── imgcodecs_c.h
│ │ │ ├── imgcodecs.hpp
│ │ │ └── ios.h
│ │ ├── imgcodecs.hpp
│ │ ├── imgproc
│ │ │ ├── detail
│ │ │ │ └── distortion_model.hpp
│ │ │ ├── hal
│ │ │ │ ├── hal.hpp
│ │ │ │ └── interface.h
│ │ │ ├── imgproc_c.h
│ │ │ ├── imgproc.hpp
│ │ │ └── types_c.h
│ │ ├── imgproc.hpp
│ │ ├── ml
│ │ │ ├── ml.hpp
│ │ │ └── ml.inl.hpp
│ │ ├── ml.hpp
│ │ ├── objdetect
│ │ │ ├── detection_based_tracker.hpp
│ │ │ ├── objdetect_c.h
│ │ │ └── objdetect.hpp
│ │ ├── objdetect.hpp
│ │ ├── opencv.hpp
│ │ ├── opencv_modules.hpp
│ │ ├── photo
│ │ │ ├── cuda.hpp
│ │ │ ├── photo_c.h
│ │ │ └── photo.hpp
│ │ ├── photo.hpp
│ │ ├── shape
│ │ │ ├── emdL1.hpp
│ │ │ ├── hist_cost.hpp
│ │ │ ├── shape_distance.hpp
│ │ │ ├── shape.hpp
│ │ │ └── shape_transformer.hpp
│ │ ├── shape.hpp
│ │ ├── stitching
│ │ │ ├── detail
│ │ │ │ ├── autocalib.hpp
│ │ │ │ ├── blenders.hpp
│ │ │ │ ├── camera.hpp
│ │ │ │ ├── exposure_compensate.hpp
│ │ │ │ ├── matchers.hpp
│ │ │ │ ├── motion_estimators.hpp
│ │ │ │ ├── seam_finders.hpp
│ │ │ │ ├── timelapsers.hpp
│ │ │ │ ├── util.hpp
│ │ │ │ ├── util_inl.hpp
│ │ │ │ ├── warpers.hpp
│ │ │ │ └── warpers_inl.hpp
│ │ │ └── warpers.hpp
│ │ ├── stitching.hpp
│ │ ├── superres
│ │ │ └── optical_flow.hpp
│ │ ├── superres.hpp
│ │ ├── video
│ │ │ ├── background_segm.hpp
│ │ │ ├── tracking_c.h
│ │ │ ├── tracking.hpp
│ │ │ └── video.hpp
│ │ ├── video.hpp
│ │ ├── videoio
│ │ │ ├── cap_ios.h
│ │ │ ├── videoio_c.h
│ │ │ └── videoio.hpp
│ │ ├── videoio.hpp
│ │ ├── videostab
│ │ │ ├── deblurring.hpp
│ │ │ ├── fast_marching.hpp
│ │ │ ├── fast_marching_inl.hpp
│ │ │ ├── frame_source.hpp
│ │ │ ├── global_motion.hpp
│ │ │ ├── inpainting.hpp
│ │ │ ├── log.hpp
│ │ │ ├── motion_core.hpp
│ │ │ ├── motion_stabilizing.hpp
│ │ │ ├── optical_flow.hpp
│ │ │ ├── outlier_rejection.hpp
│ │ │ ├── ring_buffer.hpp
│ │ │ ├── stabilizer.hpp
│ │ │ └── wobble_suppression.hpp
│ │ ├── videostab.hpp
│ │ └── world.hpp
│ ├── LICENSE
│ ├── OpenCVConfig.cmake
│ ├── OpenCVConfig-version.cmake
│ ├── samples
│ │ ├── cpp
│ │ │ ├── example_cpp_3calibration.exe
│ │ │ ├── example_cpp_application_trace.exe
│ │ │ ├── example_cpp_autofocus.exe
│ │ │ ├── example_cpp_bgfg_segm.exe
│ │ │ ├── example_cpp_calibration.exe
│ │ │ ├── example_cpp_camshiftdemo.exe
│ │ │ ├── example_cpp_cloning_demo.exe
│ │ │ ├── example_cpp_cloning_gui.exe
│ │ │ ├── example_cpp_connected_components.exe
│ │ │ ├── example_cpp_contours2.exe
│ │ │ ├── example_cpp_convexhull.exe
│ │ │ ├── example_cpp_cout_mat.exe
│ │ │ ├── example_cpp_create_mask.exe
│ │ │ ├── example_cpp_dbt_face_detection.exe
│ │ │ ├── example_cpp_delaunay2.exe
│ │ │ ├── example_cpp_demhist.exe
│ │ │ ├── example_cpp_detect_blob.exe
│ │ │ ├── example_cpp_detect_mser.exe
│ │ │ ├── example_cpp_dft.exe
│ │ │ ├── example_cpp_distrans.exe
│ │ │ ├── example_cpp_drawing.exe
│ │ │ ├── example_cpp_edge.exe
│ │ │ ├── example_cpp_em.exe
│ │ │ ├── example_cpp_example.exe
│ │ │ ├── example_cpp_facedetect.exe
│ │ │ ├── example_cpp_facial_features.exe
│ │ │ ├── example_cpp_falsecolor.exe
│ │ │ ├── example_cpp_fback.exe
│ │ │ ├── example_cpp_ffilldemo.exe
│ │ │ ├── example_cpp_filestorage_base64.exe
│ │ │ ├── example_cpp_filestorage.exe
│ │ │ ├── example_cpp_fitellipse.exe
│ │ │ ├── example_cpp_grabcut.exe
│ │ │ ├── example_cpp_image_alignment.exe
│ │ │ ├── example_cpp_image.exe
│ │ │ ├── example_cpp_imagelist_creator.exe
│ │ │ ├── example_cpp_image_sequence.exe
│ │ │ ├── example_cpp_inpaint.exe
│ │ │ ├── example_cpp_intelperc_capture.exe
│ │ │ ├── example_cpp_kalman.exe
│ │ │ ├── example_cpp_kmeans.exe
│ │ │ ├── example_cpp_laplace.exe
│ │ │ ├── example_cpp_letter_recog.exe
│ │ │ ├── example_cpp_lkdemo.exe
│ │ │ ├── example_cpp_logistic_regression.exe
│ │ │ ├── example_cpp_lsd_lines.exe
│ │ │ ├── example_cpp_mask_tmpl.exe
│ │ │ ├── example_cpp_matchmethod_orb_akaze_brisk.exe
│ │ │ ├── example_cpp_minarea.exe
│ │ │ ├── example_cpp_morphology2.exe
│ │ │ ├── example_cpp_neural_network.exe
│ │ │ ├── example_cpp_npr_demo.exe
│ │ │ ├── example_cpp_opencv_version.exe
│ │ │ ├── example_cpp_openni_capture.exe
│ │ │ ├── example_cpp_pca.exe
│ │ │ ├── example_cpp_peopledetect.exe
│ │ │ ├── example_cpp_phase_corr.exe
│ │ │ ├── example_cpp_points_classifier.exe
│ │ │ ├── example_cpp_polar_transforms.exe
│ │ │ ├── example_cpp_segment_objects.exe
│ │ │ ├── example_cpp_select3dobj.exe
│ │ │ ├── example_cpp_shape_example.exe
│ │ │ ├── example_cpp_smiledetect.exe
│ │ │ ├── example_cpp_squares.exe
│ │ │ ├── example_cpp_starter_imagelist.exe
│ │ │ ├── example_cpp_stereo_calib.exe
│ │ │ ├── example_cpp_stereo_match.exe
│ │ │ ├── example_cpp_stitching_detailed.exe
│ │ │ ├── example_cpp_stitching.exe
│ │ │ ├── example_cpp_train_HOG.exe
│ │ │ ├── example_cpp_train_svmsgd.exe
│ │ │ ├── example_cpp_travelsalesman.exe
│ │ │ ├── example_cpp_tree_engine.exe
│ │ │ ├── example_cpp_tvl1_optical_flow.exe
│ │ │ ├── example_cpp_videocapture_basic.exe
│ │ │ ├── example_cpp_videocapture_starter.exe
│ │ │ ├── example_cpp_videostab.exe
│ │ │ ├── example_cpp_videowriter_basic.exe
│ │ │ ├── example_cpp_warpPerspective_demo.exe
│ │ │ └── example_cpp_watershed.exe
│ │ ├── directx
│ │ │ ├── example_directx_d3d10_interop.exe
│ │ │ ├── example_directx_d3d11_interop.exe
│ │ │ ├── example_directx_d3d9ex_interop.exe
│ │ │ └── example_directx_d3d9_interop.exe
│ │ ├── dnn
│ │ │ ├── example_dnn_caffe_googlenet.exe
│ │ │ ├── example_dnn_colorization.exe
│ │ │ ├── example_dnn_faster_rcnn.exe
│ │ │ ├── example_dnn_fcn_semsegm.exe
│ │ │ ├── example_dnn_resnet_ssd_face.exe
│ │ │ ├── example_dnn_squeezenet_halide.exe
│ │ │ ├── example_dnn_ssd_mobilenet_object_detection.exe
│ │ │ ├── example_dnn_ssd_object_detection.exe
│ │ │ ├── example_dnn_tf_inception.exe
│ │ │ ├── example_dnn_torch_enet.exe
│ │ │ └── example_dnn_yolo_object_detection.exe
│ │ ├── tapi
│ │ │ ├── example_tapi_bgfg_segm.exe
│ │ │ ├── example_tapi_camshift.exe
│ │ │ ├── example_tapi_clahe.exe
│ │ │ ├── example_tapi_hog.exe
│ │ │ ├── example_tapi_opencl_custom_kernel.exe
│ │ │ ├── example_tapi_pyrlk_optical_flow.exe
│ │ │ ├── example_tapi_squares.exe
│ │ │ ├── example_tapi_tvl1_optical_flow.exe
│ │ │ └── example_tapi_ufacedetect.exe
│ │ └── tutorial
│ │ ├── example_tutorial_AddingImages.exe
│ │ ├── example_tutorial_AddingImagesTrackbar.exe
│ │ ├── example_tutorial_AKAZE_match.exe
│ │ ├── example_tutorial_BasicLinearTransforms.exe
│ │ ├── example_tutorial_BasicLinearTransformsTrackbar.exe
│ │ ├── example_tutorial_bg_sub.exe
│ │ ├── example_tutorial_calcBackProject_Demo1.exe
│ │ ├── example_tutorial_calcBackProject_Demo2.exe
│ │ ├── example_tutorial_calcHist_Demo.exe
│ │ ├── example_tutorial_camera_calibration.exe
│ │ ├── example_tutorial_CannyDetector_Demo.exe
│ │ ├── example_tutorial_changing_contrast_brightness_image.exe
│ │ ├── example_tutorial_cloning_demo.exe
│ │ ├── example_tutorial_cloning_gui.exe
│ │ ├── example_tutorial_compareHist_Demo.exe
│ │ ├── example_tutorial_copyMakeBorder_demo.exe
│ │ ├── example_tutorial_core_mat_checkVector.exe
│ │ ├── example_tutorial_core_merge.exe
│ │ ├── example_tutorial_core_reduce.exe
│ │ ├── example_tutorial_core_split.exe
│ │ ├── example_tutorial_core_various.exe
│ │ ├── example_tutorial_cornerDetector_Demo.exe
│ │ ├── example_tutorial_cornerHarris_Demo.exe
│ │ ├── example_tutorial_cornerSubPix_Demo.exe
│ │ ├── example_tutorial_decolor.exe
│ │ ├── example_tutorial_decompose_homography.exe
│ │ ├── example_tutorial_discrete_fourier_transform.exe
│ │ ├── example_tutorial_display_image.exe
│ │ ├── example_tutorial_documentation.exe
│ │ ├── example_tutorial_Drawing_1.exe
│ │ ├── example_tutorial_Drawing_2.exe
│ │ ├── example_tutorial_EqualizeHist_Demo.exe
│ │ ├── example_tutorial_file_input_output.exe
│ │ ├── example_tutorial_filter2D_demo.exe
│ │ ├── example_tutorial_findContours_demo.exe
│ │ ├── example_tutorial_gdal-image.exe
│ │ ├── example_tutorial_generalContours_demo1.exe
│ │ ├── example_tutorial_generalContours_demo2.exe
│ │ ├── example_tutorial_Geometric_Transforms_Demo.exe
│ │ ├── example_tutorial_goodFeaturesToTrack_Demo.exe
│ │ ├── example_tutorial_hdr_imaging.exe
│ │ ├── example_tutorial_HitMiss.exe
│ │ ├── example_tutorial_homography_from_camera_displacement.exe
│ │ ├── example_tutorial_HoughCircle_Demo.exe
│ │ ├── example_tutorial_houghcircles.exe
│ │ ├── example_tutorial_HoughLines_Demo.exe
│ │ ├── example_tutorial_houghlines.exe
│ │ ├── example_tutorial_how_to_scan_images.exe
│ │ ├── example_tutorial_how_to_use_OpenCV_parallel_for_.exe
│ │ ├── example_tutorial_hull_demo.exe
│ │ ├── example_tutorial_imageSegmentation.exe
│ │ ├── example_tutorial_imgcodecs_imwrite.exe
│ │ ├── example_tutorial_imgproc_HoughLinesPointSet.exe
│ │ ├── example_tutorial_interoperability_with_OpenCV_1.exe
│ │ ├── example_tutorial_introduction_to_pca.exe
│ │ ├── example_tutorial_introduction_to_svm.exe
│ │ ├── example_tutorial_introduction_windows_vs.exe
│ │ ├── example_tutorial_Laplace_Demo.exe
│ │ ├── example_tutorial_LATCH_match.exe
│ │ ├── example_tutorial_MatchTemplate_Demo.exe
│ │ ├── example_tutorial_mat_mask_operations.exe
│ │ ├── example_tutorial_mat_the_basic_image_container.exe
│ │ ├── example_tutorial_moments_demo.exe
│ │ ├── example_tutorial_Morphology_1.exe
│ │ ├── example_tutorial_Morphology_2.exe
│ │ ├── example_tutorial_Morphology_3.exe
│ │ ├── example_tutorial_non_linear_svms.exe
│ │ ├── example_tutorial_npr_demo.exe
│ │ ├── example_tutorial_objectDetection.exe
│ │ ├── example_tutorial_panorama_stitching_rotating_camera.exe
│ │ ├── example_tutorial_perspective_correction.exe
│ │ ├── example_tutorial_planar_tracking.exe
│ │ ├── example_tutorial_pointPolygonTest_demo.exe
│ │ ├── example_tutorial_pose_from_homography.exe
│ │ ├── example_tutorial_Pyramids.exe
│ │ ├── example_tutorial_Remap_Demo.exe
│ │ ├── example_tutorial_Smoothing.exe
│ │ ├── example_tutorial_Sobel_Demo.exe
│ │ ├── example_tutorial_Threshold.exe
│ │ ├── example_tutorial_Threshold_inRange.exe
│ │ ├── example_tutorial_video-input-psnr-ssim.exe
│ │ └── example_tutorial_video-write.exe
│ ├── x64
│ │ └── vc12
│ │ ├── bin
│ │ │ ├── opencv_annotationd.exe
│ │ │ ├── opencv_annotation.exe
│ │ │ ├── opencv_createsamplesd.exe
│ │ │ ├── opencv_createsamples.exe
│ │ │ ├── opencv_ffmpeg341_64.dll
│ │ │ ├── opencv_interactive-calibrationd.exe
│ │ │ ├── opencv_interactive-calibration.exe
│ │ │ ├── opencv_traincascaded.exe
│ │ │ ├── opencv_traincascade.exe
│ │ │ ├── opencv_versiond.exe
│ │ │ ├── opencv_version.exe
│ │ │ ├── opencv_visualisationd.exe
│ │ │ ├── opencv_visualisation.exe
│ │ │ ├── opencv_world341d.dll
│ │ │ └── opencv_world341.dll
│ │ └── lib
│ │ ├── OpenCVConfig.cmake
│ │ ├── OpenCVConfig-version.cmake
│ │ ├── OpenCVModules.cmake
│ │ ├── OpenCVModules-debug.cmake
│ │ ├── OpenCVModules-release.cmake
│ │ ├── opencv_world341d.lib
│ │ └── opencv_world341.lib
│ └── x86
│ └── vc12
│ ├── bin
│ │ ├── opencv_annotationd.exe
│ │ ├── opencv_calib3d341d.dll
│ │ ├── opencv_core341d.dll
│ │ ├── opencv_createsamplesd.exe
│ │ ├── opencv_dnn341d.dll
│ │ ├── opencv_features2d341d.dll
│ │ ├── opencv_ffmpeg341.dll
│ │ ├── opencv_flann341d.dll
│ │ ├── opencv_highgui341d.dll
│ │ ├── opencv_imgcodecs341d.dll
│ │ ├── opencv_imgproc341d.dll
│ │ ├── opencv_interactive-calibrationd.exe
│ │ ├── opencv_ml341d.dll
│ │ ├── opencv_objdetect341d.dll
│ │ ├── opencv_photo341d.dll
│ │ ├── opencv_shape341d.dll
│ │ ├── opencv_stitching341d.dll
│ │ ├── opencv_superres341d.dll
│ │ ├── opencv_traincascaded.exe
│ │ ├── opencv_versiond.exe
│ │ ├── opencv_video341d.dll
│ │ ├── opencv_videoio341d.dll
│ │ ├── opencv_videostab341d.dll
│ │ └── opencv_visualisationd.exe
│ └── lib
│ ├── opencv_calib3d341d.lib
│ ├── OpenCVConfig.cmake
│ ├── OpenCVConfig-version.cmake
│ ├── opencv_core341d.lib
│ ├── opencv_dnn341d.lib
│ ├── opencv_features2d341d.lib
│ ├── opencv_flann341d.lib
│ ├── opencv_highgui341d.lib
│ ├── opencv_imgcodecs341d.lib
│ ├── opencv_imgproc341d.lib
│ ├── opencv_ml341d.lib
│ ├── OpenCVModules.cmake
│ ├── OpenCVModules-debug.cmake
│ ├── opencv_objdetect341d.lib
│ ├── opencv_photo341d.lib
│ ├── opencv_shape341d.lib
│ ├── opencv_stitching341d.lib
│ ├── opencv_superres341d.lib
│ ├── opencv_video341d.lib
│ ├── opencv_videoio341d.lib
│ └── opencv_videostab341d.lib
└── lib
├── Debug
│ ├── opencv_calib3d341d.exp
│ ├── opencv_calib3d341d.lib
│ ├── opencv_calib3d341d.pdb
│ ├── opencv_core341d.exp
│ ├── opencv_core341d.lib
│ ├── opencv_core341d.pdb
│ ├── opencv_dnn341d.exp
│ ├── opencv_dnn341d.lib
│ ├── opencv_dnn341d.pdb
│ ├── opencv_features2d341d.exp
│ ├── opencv_features2d341d.lib
│ ├── opencv_features2d341d.pdb
│ ├── opencv_flann341d.exp
│ ├── opencv_flann341d.lib
│ ├── opencv_flann341d.pdb
│ ├── opencv_highgui341d.exp
│ ├── opencv_highgui341d.lib
│ ├── opencv_highgui341d.pdb
│ ├── opencv_imgcodecs341d.exp
│ ├── opencv_imgcodecs341d.lib
│ ├── opencv_imgcodecs341d.pdb
│ ├── opencv_imgproc341d.exp
│ ├── opencv_imgproc341d.lib
│ ├── opencv_imgproc341d.pdb
│ ├── opencv_ml341d.exp
│ ├── opencv_ml341d.lib
│ ├── opencv_ml341d.pdb
│ ├── opencv_objdetect341d.exp
│ ├── opencv_objdetect341d.lib
│ ├── opencv_objdetect341d.pdb
│ ├── opencv_photo341d.exp
│ ├── opencv_photo341d.lib
│ ├── opencv_photo341d.pdb
│ ├── opencv_python3.exp
│ ├── opencv_python3.lib
│ ├── opencv_shape341d.exp
│ ├── opencv_shape341d.lib
│ ├── opencv_shape341d.pdb
│ ├── opencv_stitching341d.exp
│ ├── opencv_stitching341d.lib
│ ├── opencv_stitching341d.pdb
│ ├── opencv_superres341d.exp
│ ├── opencv_superres341d.lib
│ ├── opencv_superres341d.pdb
│ ├── opencv_ts341d.lib
│ ├── opencv_ts341d.pdb
│ ├── opencv_video341d.exp
│ ├── opencv_video341d.lib
│ ├── opencv_video341d.pdb
│ ├── opencv_videoio341d.exp
│ ├── opencv_videoio341d.lib
│ ├── opencv_videoio341d.pdb
│ ├── opencv_videostab341d.exp
│ ├── opencv_videostab341d.lib
│ ├── opencv_videostab341d.pdb
│ ├── opencv_world341d.exp
│ ├── opencv_world341d.lib
│ └── opencv_world341d.pdb
├── python3
│ ├── Debug
│ │ ├── cv2.cp36-win_amd64.ilk
│ │ ├── cv2.cp36-win_amd64.pyd
│ │ └── cv2.pdb
│ └── Release
│ └── cv2.cp36-win_amd64.pyd
└── Release
├── opencv_python3.exp
├── opencv_python3.lib
├── opencv_ts341.lib
├── opencv_world341.exp
└── opencv_world341.lib
58 directories, 593 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论