在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 深度学习之卷积神经网络CNN用于人脸检测C++库

深度学习之卷积神经网络CNN用于人脸检测C++库

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:4.10M
  • 下载次数:17
  • 浏览次数:137
  • 发布时间:2020-09-04
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
深度学习的卷积神经网络CNN用于做人脸检测等CV算法的C++库。
【实例截图】
【核心代码】
eblearn_1.2_r2631-src
└── eblearn_1.2_r2631
├── changes.txt
├── core
│   ├── CMakeLists.txt
│   ├── libeblearn
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   ├── bbox.h
│   │   │   ├── bbox.hpp
│   │   │   ├── datasource.h
│   │   │   ├── datasource.hpp
│   │   │   ├── detector.h
│   │   │   ├── detector.hpp
│   │   │   ├── ebl_answer.h
│   │   │   ├── ebl_answer.hpp
│   │   │   ├── ebl_arch.h
│   │   │   ├── ebl_arch.hpp
│   │   │   ├── ebl_basic.h
│   │   │   ├── ebl_basic.hpp
│   │   │   ├── ebl_cudabasic.h
│   │   │   ├── ebl_cudabasic.hpp
│   │   │   ├── ebl_cudamerge.h
│   │   │   ├── ebl_cudamerge.hpp
│   │   │   ├── ebl_cudanonlinearity.h
│   │   │   ├── ebl_cudanonlinearity.hpp
│   │   │   ├── ebl_cudanormalization.h
│   │   │   ├── ebl_cudanormalization.hpp
│   │   │   ├── ebl_cudaops.h
│   │   │   ├── ebl_cudaops.hpp
│   │   │   ├── ebl_cudapooling.h
│   │   │   ├── ebl_cudapooling.hpp
│   │   │   ├── ebl_cudautils.h
│   │   │   ├── ebl_cudautils.hpp
│   │   │   ├── ebl_defines.h
│   │   │   ├── ebl_ebm.h
│   │   │   ├── ebl_ebm.hpp
│   │   │   ├── ebl_energy.h
│   │   │   ├── ebl_energy.hpp
│   │   │   ├── ebl_layers.h
│   │   │   ├── ebl_layers.hpp
│   │   │   ├── ebl_logger.h
│   │   │   ├── ebl_logger.hpp
│   │   │   ├── ebl_lua.h
│   │   │   ├── ebl_lua.hpp
│   │   │   ├── ebl_machines.h
│   │   │   ├── ebl_machines.hpp
│   │   │   ├── ebl_march.h
│   │   │   ├── ebl_march.hpp
│   │   │   ├── ebl_merge.h
│   │   │   ├── ebl_merge.hpp
│   │   │   ├── ebl_module.h
│   │   │   ├── ebl_module.hpp
│   │   │   ├── ebl_nonlinearity.h
│   │   │   ├── ebl_nonlinearity.hpp
│   │   │   ├── ebl_normalization.h
│   │   │   ├── ebl_normalization.hpp
│   │   │   ├── ebl_parameters.h
│   │   │   ├── ebl_parameters.hpp
│   │   │   ├── ebl_pooling.h
│   │   │   ├── ebl_pooling.hpp
│   │   │   ├── ebl_preprocessing.h
│   │   │   ├── ebl_preprocessing.hpp
│   │   │   ├── ebl_state.h
│   │   │   ├── ebl_state.hpp
│   │   │   ├── ebl_tester.h
│   │   │   ├── ebl_tester.hpp
│   │   │   ├── ebl_trainer.h
│   │   │   ├── ebl_trainer.hpp
│   │   │   ├── ebl_utils.h
│   │   │   ├── libeblearn.h
│   │   │   └── nms.h
│   │   └── src
│   │   ├── bbox.cpp
│   │   ├── datasource.cpp
│   │   ├── detector.cpp
│   │   ├── ebl_arch.cpp
│   │   ├── ebl_basic.cpp
│   │   ├── ebl_cudaops.cu
│   │   ├── ebl_cudautils.cu
│   │   ├── ebl_layers.cpp
│   │   ├── ebl_logger.cpp
│   │   ├── ebl_machines.cpp
│   │   ├── ebl_module.cpp
│   │   ├── ebl_nonlinearity.cpp
│   │   ├── ebl_normalization.cpp
│   │   ├── ebl_parameters.cpp
│   │   ├── ebl_state.cpp
│   │   ├── ebl_tester.cpp
│   │   ├── ebl_trainer.cpp
│   │   ├── ebl_utils.cpp
│   │   └── nms.cpp
│   ├── libidx
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   ├── blasops.h
│   │   │   ├── color_spaces.h
│   │   │   ├── color_spaces.hpp
│   │   │   ├── config.h.in
│   │   │   ├── defines.h
│   │   │   ├── filters.h
│   │   │   ├── filters.hpp
│   │   │   ├── geometry.h
│   │   │   ├── geometry.hpp
│   │   │   ├── idx.h
│   │   │   ├── idx.hpp
│   │   │   ├── idxIO.h
│   │   │   ├── idxIO.hpp
│   │   │   ├── idxiter.h
│   │   │   ├── idxiter.hpp
│   │   │   ├── idxops.h
│   │   │   ├── idxops.hpp
│   │   │   ├── idxops_ipp.hpp
│   │   │   ├── idxops_th.hpp
│   │   │   ├── idxspec.h
│   │   │   ├── idxspec.hpp
│   │   │   ├── image.h
│   │   │   ├── image.hpp
│   │   │   ├── imageIO.h
│   │   │   ├── imageIO.hpp
│   │   │   ├── ipp.h
│   │   │   ├── ippops.h
│   │   │   ├── ippops.hpp
│   │   │   ├── libidx.h
│   │   │   ├── matlab.h
│   │   │   ├── matlab.hpp
│   │   │   ├── numerics.h
│   │   │   ├── numerics.hpp
│   │   │   ├── padder.h
│   │   │   ├── padder.hpp
│   │   │   ├── pyramids.h
│   │   │   ├── pyramids.hpp
│   │   │   ├── random.h
│   │   │   ├── smart.h
│   │   │   ├── smart.hpp
│   │   │   ├── srg.h
│   │   │   ├── srg.hpp
│   │   │   ├── stl.h
│   │   │   ├── stl.hpp
│   │   │   ├── string_utils.h
│   │   │   ├── string_utils.hpp
│   │   │   ├── th.h
│   │   │   ├── thops.h
│   │   │   ├── thops.hpp
│   │   │   ├── utils.h
│   │   │   └── utils.hpp
│   │   └── src
│   │   ├── blasops.cpp
│   │   ├── color_spaces.cpp
│   │   ├── idx.cpp
│   │   ├── idxIO.cpp
│   │   ├── idxops.cpp
│   │   ├── idxspec.cpp
│   │   ├── image.cpp
│   │   ├── imageIO.cpp
│   │   ├── ipp.cpp
│   │   ├── ippops.cpp
│   │   ├── matlab.cpp
│   │   ├── numerics.cpp
│   │   ├── random.cpp
│   │   ├── smart.cpp
│   │   ├── srg.cpp
│   │   ├── stl.cpp
│   │   ├── string_utils.cpp
│   │   ├── th.cpp
│   │   ├── thops.cpp
│   │   └── utils.cpp
│   ├── Makefile
│   └── scripts
│   ├── FindAll.cmake
│   ├── FindCBLAS.cmake
│   ├── FindCustom.cmake
│   ├── FindEFence.cmake
│   ├── FindIPP.cmake
│   ├── FindMagick++.cmake
│   ├── FindValgrind.cmake
│   └── LibFindMacros.cmake
├── demos
│   ├── CMakeLists.txt
│   ├── face
│   │   ├── best_cam.conf
│   │   ├── best_dir.conf
│   │   ├── compile_dataset.sh
│   │   ├── download_datasets.sh
│   │   ├── face.conf
│   │   ├── oldfiles
│   │   │   ├── best_cam.conf
│   │   │   ├── best_dir.conf
│   │   │   ├── dsmass.sh
│   │   │   ├── dsprepare.sh
│   │   │   ├── dsyale.sh
│   │   │   ├── face.conf
│   │   │   ├── face_mitcbcl.conf
│   │   │   ├── mitcbcl_dsprepare.sh
│   │   │   └── train.sh
│   │   └── trained
│   │   ├── 20100227.175046.face_conf05_eta_.000005_retrain_1_classes.mat
│   │   └── 20100227.175046.face_conf05_eta_.000005_retrain_1_net044.mat
│   ├── mnist
│   │   ├── mnist_classes.mat
│   │   └── mnist.conf
│   ├── regression
│   │   └── uci-isolet
│   │   └── isolet.conf
│   ├── simple
│   │   ├── Makefile
│   │   └── simple.cpp
│   ├── svhn
│   │   ├── svhn.conf
│   │   ├── svhn_convert_to_images.m
│   │   ├── svhn_dsprepare.py
│   │   ├── svhn_trained.conf
│   │   ├── table_16_512_connect_1792_fanin_2_3_4_5_density_0.22_random.mat
│   │   └── table_3_16_connect_32_fanin_density_0.67_yuv_y8_u0_v0_yuv16_uv0.mat
│   ├── text
│   │   ├── dsprepare.sh
│   │   ├── text.conf
│   │   └── train.sh
│   └── window
│   ├── 20100227.175046.face_conf05_eta_.000005_retrain_1_classes.mat
│   ├── 20100227.175046.face_conf05_eta_.000005_retrain_1_net044.mat
│   ├── CMakeLists.txt
│   ├── src
│   │   └── window.cpp
│   └── window.conf
├── doc
│   ├── demos
│   │   ├── face
│   │   │   └── index.shtml
│   │   ├── facenet
│   │   │   ├── facenet.shtml
│   │   │   ├── face.png
│   │   │   ├── Howto-img1.png
│   │   │   ├── Howto-img2.png
│   │   │   ├── Howto-img3.png
│   │   │   ├── Howto-img4.png
│   │   │   ├── Howto-img5.png
│   │   │   ├── Howto-img6.png
│   │   │   ├── Howto-img7.png
│   │   │   └── Howto-img8.png
│   │   ├── mnist
│   │   │   ├── img
│   │   │   │   ├── mnist_datasets.png
│   │   │   │   ├── mnist_fprop0.png
│   │   │   │   ├── mnist_fprop1.png
│   │   │   │   └── mnist_fprop.png
│   │   │   ├── index.shtml
│   │   │   └── invar.png
│   │   ├── norb
│   │   │   ├── img
│   │   │   │   └── norb_plane.png
│   │   │   └── index.shtml
│   │   └── simple
│   │   ├── img
│   │   │   └── example.png
│   │   └── index.shtml
│   ├── documentation
│   │   ├── Doxyfile.everything
│   │   ├── Doxyfile.libeblearn
│   │   ├── Doxyfile.libeblearngui
│   │   ├── Doxyfile.libeblearntools
│   │   ├── Doxyfile.libidx
│   │   ├── Doxyfile.libidxgui
│   │   ├── generate.sh
│   │   ├── index.html
│   │   └── readme
│   ├── guidelines.shtml
│   ├── index.shtml
│   ├── install.shtml
│   ├── nav.html
│   ├── start.shtml
│   ├── todo.sh
│   ├── todo.txt
│   ├── tools
│   │   ├── detect.shtml
│   │   ├── dscompile.shtml
│   │   ├── dscompile_video.shtml
│   │   ├── matshow.shtml
│   │   ├── metarun.shtml
│   │   ├── tools.shtml
│   │   └── train.shtml
│   ├── tutorials
│   │   ├── libeblearn
│   │   │   ├── img
│   │   │   │   ├── lenet7.png
│   │   │   │   ├── train_machine.odg
│   │   │   │   ├── train_machine.png
│   │   │   │   └── train_machine_small.png
│   │   │   └── index.shtml
│   │   └── libidx
│   │   └── index.shtml
│   └── web
│   ├── eblearn-logo3.png
│   ├── eblearn-logo4.png
│   ├── index_004.css
│   ├── logo2.ico
│   ├── logo_300.png
│   ├── logo.ico
│   ├── logo.png
│   ├── logo.xcf
│   ├── main.css
│   ├── style.css
│   └── styles.css
├── LICENSE.BSD
├── README.txt
└── tools
├── CMakeLists.txt
├── data
│   ├── 2008_007714.jpg
│   ├── 2.mat
│   ├── barn.png
│   ├── face
│   │   ├── 20100227.175046.face_conf05_eta_.000005_retrain_1_classes.mat
│   │   ├── 20100227.175046.face_conf05_eta_.000005_retrain_1_net044.mat
│   │   ├── best.conf
│   │   └── nens.gif
│   ├── lena.png
│   ├── mnist
│   │   ├── 0.ppm
│   │   ├── 1.ppm
│   │   ├── 2.ppm
│   │   ├── 3.ppm
│   │   ├── 4.ppm
│   │   ├── 5.ppm
│   │   ├── 6.ppm
│   │   ├── 7.ppm
│   │   ├── 8.ppm
│   │   └── 9.ppm
│   ├── pnm
│   │   ├── hat_P6.ppm
│   │   ├── rgb_P3.ppm
│   │   └── rgb_P6.ppm
│   ├── reagan.jpg
│   ├── signs
│   │   ├── blurry.ppm
│   │   ├── contrast.ppm
│   │   └── dark.ppm
│   └── tables
│   ├── table_2_6_connect_6_fanin_0_density_0.5_uv0_u3_v6.mat
│   ├── table_32_64_connect_1664_fanin_26_density_0.81_random.mat
│   ├── table_32_96_connect_1632_fanin_17_density_0.53_random.mat
│   ├── table_32_96_connect_1920_fanin_20_density_0.62_random.mat
│   ├── table_32_96_connect_2496_fanin_26_density_0.81_random.mat
│   ├── table_3_32_connect_32_fanin_0_density_0.33_yuv0.mat
│   ├── table_3_32_connect_32_fanin_0_density_0.33_yuv0_y24_u28_v32.mat
│   ├── table_3_32_connect_32_fanin_0_density_0.33_yuv0_y26_u29_v32.mat
│   ├── table_38_68_connect_2040_fanin_30_density_0.79_random.mat
│   ├── table_6_16_connect_60.mat
│   ├── table_64_96_connect_4992_fanin_52_density_0.81_random.mat
│   ├── table_70_134_connect_2144_fanin_16_density_0.23_random.mat
│   └── table_8_24_connect_96.mat
├── debug.sh
├── libeblearngui
│   ├── CMakeLists.txt
│   ├── include
│   │   ├── datasource_gui.h
│   │   ├── datasource_gui.hpp
│   │   ├── detector_gui.h
│   │   ├── detector_gui.hpp
│   │   ├── ebl_arch_gui.h
│   │   ├── ebl_arch_gui.hpp
│   │   ├── ebl_basic_gui.h
│   │   ├── ebl_basic_gui.hpp
│   │   ├── ebl_layers_gui.h
│   │   ├── ebl_layers_gui.hpp
│   │   ├── ebl_normalization_gui.h
│   │   ├── ebl_normalization_gui.hpp
│   │   ├── ebl_trainer_gui.h
│   │   ├── ebl_trainer_gui.hpp
│   │   ├── libeblearngui.h
│   │   ├── old_ebbox.h
│   │   └── old_ebm_gui.h
│   └── src
│   ├── datasource_gui.cpp
│   ├── detector_gui.cpp
│   ├── ebl_layers_gui.cpp
│   ├── ebl_normalization_gui.cpp
│   ├── ebl_trainer_gui.cpp
│   └── ebm_gui.cpp
├── libeblearntools
│   ├── CMakeLists.txt
│   ├── include
│   │   ├── bootstrapping.h
│   │   ├── bootstrapping.hpp
│   │   ├── camera_datasource.h
│   │   ├── camera_datasource.hpp
│   │   ├── camera_directory.h
│   │   ├── camera_directory.hpp
│   │   ├── camera.h
│   │   ├── camera.hpp
│   │   ├── camera_kinect.h
│   │   ├── camera_kinect.hpp
│   │   ├── camera_mac.h
│   │   ├── camera_mac.hpp
│   │   ├── camera_mcams.h
│   │   ├── camera_mcams.hpp
│   │   ├── camera_opencv.h
│   │   ├── camera_opencv.hpp
│   │   ├── camera_shmem.h
│   │   ├── camera_shmem.hpp
│   │   ├── camera_v4l2.h
│   │   ├── camera_v4l2.hpp
│   │   ├── camera_video.h
│   │   ├── camera_video.hpp
│   │   ├── camera_windows.h
│   │   ├── camera_windows.hpp
│   │   ├── configuration.h
│   │   ├── configuration.hpp
│   │   ├── dataset.h
│   │   ├── dataset.hpp
│   │   ├── defines_tools.h
│   │   ├── detection_thread.h
│   │   ├── detection_thread.hpp
│   │   ├── fprop_thread.h
│   │   ├── fprop_thread.hpp
│   │   ├── gdb.h
│   │   ├── grid_dataset.h
│   │   ├── grid_dataset.hpp
│   │   ├── job.h
│   │   ├── libeblearntools.h
│   │   ├── metaparser.h
│   │   ├── mpijob.h
│   │   ├── netconf.h
│   │   ├── netconf.hpp
│   │   ├── opencv.h
│   │   ├── opencv.hpp
│   │   ├── pascalbg_dataset.h
│   │   ├── pascalbg_dataset.hpp
│   │   ├── pascalclear_dataset.h
│   │   ├── pascalclear_dataset.hpp
│   │   ├── pascal_dataset.h
│   │   ├── pascal_dataset.hpp
│   │   ├── pascalfull_dataset.h
│   │   ├── pascalfull_dataset.hpp
│   │   ├── pascal_xml.h
│   │   ├── patch_dataset.h
│   │   ├── patch_dataset.hpp
│   │   ├── sort.h
│   │   ├── thread.h
│   │   ├── tools_utils.h
│   │   ├── tools_utils.hpp
│   │   ├── tracking_thread.h
│   │   ├── tracking_thread.hpp
│   │   ├── train_utils.h
│   │   ├── train_utils.hpp
│   │   ├── vfw.h
│   │   └── xml_utils.h
│   ├── README.txt
│   └── src
│   ├── configuration.cpp
│   ├── dataset.cpp
│   ├── gdb.cpp
│   ├── job.cpp
│   ├── metaparser.cpp
│   ├── mpijob.cpp
│   ├── netconf.cpp
│   ├── opencv.cpp
│   ├── pascal_dataset.cpp
│   ├── pascal_xml.cpp
│   ├── sort.cpp
│   ├── thread.cpp
│   ├── tools_utils.cpp
│   ├── vfw.cpp
│   └── xml_utils.cpp
├── libidxgui
│   ├── CMakeLists.txt
│   ├── include
│   │   ├── defines_idxgui.h
│   │   ├── defines_windows.h
│   │   ├── gui.h
│   │   ├── gui.hpp
│   │   ├── gui_thread.h
│   │   ├── idxgui.h
│   │   ├── idxgui.hpp
│   │   ├── libidxgui.h
│   │   ├── scroll_box0.h
│   │   ├── scroll_box.h
│   │   ├── win2d.h
│   │   ├── win3d.h
│   │   └── win.h
│   └── src
│   ├── gui.cpp
│   ├── gui_thread.cpp
│   ├── idxgui.cpp
│   ├── scroll_box0.cpp
│   ├── scroll_box.cpp
│   ├── win2d.cpp
│   ├── win3d.cpp
│   └── win.cpp
├── Makefile
├── mobile
│   └── android
│   └── eblearn
│   ├── AndroidManifest.xml
│   ├── Application.mk
│   ├── assets
│   │   ├── face_classes.mat.mp3
│   │   ├── face.conf.mp3
│   │   ├── face.mat.mp3
│   │   └── table_6_16_connect_60.mat.mp3
│   ├── core
│   ├── default.properties
│   ├── jni
│   │   ├── Android.mk
│   │   ├── eblearn
│   │   │   └── Android.mk
│   │   ├── eblearntools
│   │   │   ├── Android.mk
│   │   │   └── entries.cpp
│   │   └── idx
│   │   ├── Android.mk
│   │   └── entries.cpp
│   ├── libeblearntools
│   ├── Makefile
│   ├── README.txt
│   ├── res
│   │   └── values
│   │   └── strings.xml
│   └── src
│   └── com
│   └── eblearn
│   └── eblearn.java
├── scripts
│   ├── configure_build.sh
│   ├── FindAll.cmake
│   ├── FindBoost.cmake
│   ├── FindCBLAS.cmake
│   ├── FindCPPUNIT.cmake
│   ├── FindCUDA
│   │   ├── make2cmake.cmake
│   │   ├── parse_cubin.cmake
│   │   └── run_nvcc.cmake
│   ├── FindCUDA.cmake
│   ├── FindCustom.cmake
│   ├── FindEFence.cmake
│   ├── FindIPP.cmake
│   ├── FindKinect.cmake
│   ├── FindMagick++.cmake
│   ├── FindOpenCV.cmake
│   ├── FindQt4_2.6.0.cmake
│   ├── FindQt4.cmake.old
│   ├── FindValgrind.cmake
│   ├── FindXml++.cmake
│   └── LibFindMacros.cmake
├── tester
│   ├── CMakeLists.txt
│   ├── include
│   │   ├── BriefTestProgressListener.h
│   │   ├── ClusterTest.h
│   │   ├── datasource_test.h
│   │   ├── detector_test.h
│   │   ├── ebl_basic_test.h
│   │   ├── ebl_machines_test.h
│   │   ├── ebl_machines_test.hpp
│   │   ├── ebl_preprocessing_test.h
│   │   ├── gui3d_test.h
│   │   ├── idxIO_test.h
│   │   ├── idxiter_test.h
│   │   ├── idxops_test2.h
│   │   ├── idxops_test.h
│   │   ├── idx_test.h
│   │   ├── image_test.h
│   │   ├── ippops_test.h
│   │   ├── MyTextOutputter.h
│   │   └── thops_test.h
│   ├── README.txt
│   ├── sptester
│   │   ├── CMakeLists.txt
│   │   ├── include
│   │   │   ├── spBlasTest.h
│   │   │   ├── spIdxIOTest.h
│   │   │   └── spIdxTest.h
│   │   └── src
│   │   ├── spBlasTest.cpp
│   │   ├── spIdxIOTest.cpp
│   │   ├── spIdxTest.cpp
│   │   └── testspidx.cpp
│   ├── src
│   │   ├── ClusterTest.cpp
│   │   ├── datasource_test.cpp
│   │   ├── detector_test.cpp
│   │   ├── ebl_basic_test.cpp
│   │   ├── ebl_machines_test.cpp
│   │   ├── ebl_preprocessing_test.cpp
│   │   ├── gui3d_test.cpp
│   │   ├── idxIO_test.cpp
│   │   ├── idxiter_test.cpp
│   │   ├── idxops_test2.cpp
│   │   ├── idxops_test.cpp
│   │   ├── idx_test.cpp
│   │   ├── image_test.cpp
│   │   ├── ippops_test.cpp
│   │   ├── main.cpp
│   │   ├── MyBriefTestProgressListener.cpp
│   │   ├── MyTextOutputter.cpp
│   │   └── thops_test.cpp
│   ├── timer
│   │   ├── CMakeLists.txt
│   │   ├── conf
│   │   ├── generator.py
│   │   ├── main.py
│   │   ├── parse_conf.py
│   │   ├── printer.py
│   │   ├── result.py
│   │   ├── timeconv.cpp
│   │   └── timer.py
│   └── timing
│   └── go.sh
└── tools
├── CMakeLists.txt
├── include
│   └── eblapp.h
└── src
├── capture.cpp
├── detect.cpp
├── dscompile.cpp
├── dsdisplay.cpp
├── dsfprop.cpp
├── dsmerge.cpp
├── dssplit.cpp
├── ebl2matlab.cpp
├── imfprop.cpp
├── maketable.cpp
├── matshow.cpp
├── mconvert.cpp
├── meta_example.conf
├── metaparse.cpp
├── metarun.cpp
├── metatrain.sh
├── mpidetect.cpp
├── narrow.cpp
├── stdetect.cpp
├── track.cpp
├── train.cpp
└── video_features_finder.cpp

80 directories, 554 files

标签:

实例下载地址

深度学习之卷积神经网络CNN用于人脸检测C++库

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警