基本信息
源码名称:目标物体轮廓检测
源码大小:2.00M
文件格式:.zip
开发语言:Python
更新时间:2022-04-29
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
目标物体轮廓检测

.
├── CED-master
│   ├── CMakeLists.txt
│   ├── LICENSE
│   ├── Makefile
│   ├── Makefile.config.example
│   ├── README.md
│   ├── caffe.cloc
│   ├── cmake
│   │   ├── ConfigGen.cmake
│   │   ├── Cuda.cmake
│   │   ├── Dependencies.cmake
│   │   ├── External
│   │   │   ├── gflags.cmake
│   │   │   └── glog.cmake
│   │   ├── Misc.cmake
│   │   ├── Modules
│   │   │   ├── FindAtlas.cmake
│   │   │   ├── FindGFlags.cmake
│   │   │   ├── FindGlog.cmake
│   │   │   ├── FindLAPACK.cmake
│   │   │   ├── FindLMDB.cmake
│   │   │   ├── FindLevelDB.cmake
│   │   │   ├── FindMKL.cmake
│   │   │   ├── FindMatlabMex.cmake
│   │   │   ├── FindNumPy.cmake
│   │   │   ├── FindOpenBLAS.cmake
│   │   │   ├── FindSnappy.cmake
│   │   │   └── FindvecLib.cmake
│   │   ├── ProtoBuf.cmake
│   │   ├── Summary.cmake
│   │   ├── Targets.cmake
│   │   ├── Templates
│   │   │   ├── CaffeConfig.cmake.in
│   │   │   ├── CaffeConfigVersion.cmake.in
│   │   │   └── caffe_config.h.in
│   │   ├── Utils.cmake
│   │   └── lint.cmake
│   ├── docs
│   │   ├── CMakeLists.txt
│   │   ├── CNAME
│   │   ├── README.md
│   │   ├── _config.yml
│   │   ├── _layouts
│   │   │   └── default.html
│   │   ├── development.md
│   │   ├── images
│   │   │   ├── GitHub-Mark-64px.png
│   │   │   └── caffeine-icon.png
│   │   ├── index.md
│   │   ├── install_apt.md
│   │   ├── install_osx.md
│   │   ├── install_yum.md
│   │   ├── installation.md
│   │   ├── model_zoo.md
│   │   ├── performance_hardware.md
│   │   ├── stylesheets
│   │   │   ├── pygment_trac.css
│   │   │   ├── reset.css
│   │   │   └── styles.css
│   │   └── tutorial
│   │       ├── convolution.md
│   │       ├── data.md
│   │       ├── fig
│   │       │   ├── backward.jpg
│   │       │   ├── forward.jpg
│   │       │   ├── forward_backward.png
│   │       │   ├── layer.jpg
│   │       │   └── logreg.jpg
│   │       ├── forward_backward.md
│   │       ├── index.md
│   │       ├── interfaces.md
│   │       ├── layers.md
│   │       ├── loss.md
│   │       ├── net_layer_blob.md
│   │       └── solver.md
│   ├── examples
│   │   └── CED
│   │       ├── deploy.prototxt
│   │       ├── solve.py
│   │       ├── solver.prototxt
│   │       └── train_val.prototxt
│   ├── include
│   │   └── caffe
│   │       └── layers
│   │           └── periodic_shuffle_layer.hpp
│   ├── matlab
│   │   ├── caffe
│   │   │   ├── test
│   │   │   │   ├── test_net.m
│   │   │   │   └── test_solver.m
│   │   │   ├── Blob.m
│   │   │   ├── Layer.m
│   │   │   ├── Net.m
│   │   │   ├── Solver.m
│   │   │   ├── get_net.m
│   │   │   ├── get_solver.m
│   │   │   ├── imagenet
│   │   │   │   └── ilsvrc_2012_mean.mat
│   │   │   ├── io.m
│   │   │   ├── private
│   │   │   │   ├── CHECK.m
│   │   │   │   ├── CHECK_FILE_EXIST.m
│   │   │   │   ├── caffe_.cpp
│   │   │   │   └── is_valid_handle.m
│   │   │   ├── reset_all.m
│   │   │   ├── run_tests.m
│   │   │   ├── set_device.m
│   │   │   ├── set_mode_cpu.m
│   │   │   └── set_mode_gpu.m
│   │   ├── CMakeLists.txt
│   │   ├── demo
│   │   │   └── classification_demo.m
│   │   └── hdf5creation
│   │       ├── demo.m
│   │       └── store2hdf5.m
│   ├── python
│   │   ├── CMakeLists.txt
│   │   ├── caffe
│   │   │   ├── __init__.py
│   │   │   ├── __init__.pyc
│   │   │   ├── _caffe.cpp
│   │   │   ├── _caffe.so
│   │   │   ├── classifier.py
│   │   │   ├── classifier.pyc
│   │   │   ├── detector.py
│   │   │   ├── detector.pyc
│   │   │   ├── draw.py
│   │   │   ├── imagenet
│   │   │   │   └── ilsvrc_2012_mean.npy
│   │   │   ├── io.py
│   │   │   ├── io.pyc
│   │   │   ├── net_spec.py
│   │   │   ├── net_spec.pyc
│   │   │   ├── proto
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __init__.pyc
│   │   │   │   ├── caffe_pb2.py
│   │   │   │   └── caffe_pb2.pyc
│   │   │   ├── pycaffe.py
│   │   │   ├── pycaffe.pyc
│   │   │   └── test
│   │   │       ├── test_layer_type_list.py
│   │   │       ├── test_net.py
│   │   │       ├── test_net_spec.py
│   │   │       ├── test_python_layer.py
│   │   │       ├── test_python_layer_with_param_str.py
│   │   │       └── test_solver.py
│   │   ├── classify.py
│   │   ├── detect.py
│   │   ├── draw_net.py
│   │   └── requirements.txt
│   ├── scripts
│   │   ├── build_docs.sh
│   │   ├── copy_notebook.py
│   │   ├── cpp_lint.py
│   │   ├── deploy_docs.sh
│   │   ├── download_model_binary.py
│   │   ├── download_model_from_gist.sh
│   │   ├── gather_examples.sh
│   │   ├── travis
│   │   │   ├── travis_build_and_test.sh
│   │   │   ├── travis_install.sh
│   │   │   └── travis_setup_makefile_config.sh
│   │   └── upload_model_to_gist.sh
│   ├── src
│   │   └── caffe
│   │       └── layers
│   │           ├── periodic_shuffle_layer.cpp
│   │           └── periodic_shuffle_layer.cu
│   └── tools
│       ├── CMakeLists.txt
│       ├── caffe.cpp
│       ├── compute_image_mean.cpp
│       ├── convert_imageset.cpp
│       ├── device_query.cpp
│       ├── extra
│       │   ├── extract_seconds.py
│       │   ├── launch_resize_and_crop_images.sh
│       │   ├── parse_log.py
│       │   ├── parse_log.sh
│       │   ├── plot_log.gnuplot.example
│       │   ├── plot_training_log.py.example
│       │   └── resize_and_crop_images.py
│       ├── extract_features.cpp
│       ├── finetune_net.cpp
│       ├── net_speed_benchmark.cpp
│       ├── test_net.cpp
│       ├── train_net.cpp
│       ├── upgrade_net_proto_binary.cpp
│       └── upgrade_net_proto_text.cpp
└── 目标物体轮廓检测.zip

35 directories, 156 files