• 积分通道特征行人检测源代码

    Matlab代码,使用HOF+CSS+adaboost做行人检测。包含完整的训练和测试源码。非常先进的行人检测算法代码。 主要相关的文章: Integral channel features The Fastest Pedestrian Detector in the West Fast Feature Pyramids for Object Detection Pedestrian Detection A Benchmark

    5
    260
    4.62MB
    2014-04-10
    13
  • 深度学习之卷积神经网络CNN用于人脸检测C++库

    深度学习的卷积神经网络CNN用于做人脸检测等CV算法的C++库。

    5
    1027
    4.1MB
    2014-02-19
    42
  • 深度学习之卷积神经网络CNN模式识别VS代码

    深度学习之卷积神经网络CNN做手写体识别的VS代码。支持linux版本和VS2012版本。 tiny-cnn: A C++11 implementation of convolutional neural networks ======== tiny-cnn is a C++11 implementation of convolutional neural networks. design principle ----- * fast, without GPU 98.8% accuracy on MNIST in 13 minutes training (@Core i7-3520M) * header only, policy-based design supported networks ----- ### layer-types * fully-connected layer * convolutional layer * average pooling layer ### activation functions * tanh * sigmoid * rectified linear * identity ### loss functions * cross-entropy * mean-squared-error ### optimization algorithm * stochastic gradient descent (with/without L2 normalization) * stochastic gradient levenberg marquardt dependencies ----- * boost C++ library * Intel TBB sample code ------ ```cpp #include "tiny_cnn.h" using namespace tiny_cnn; // specify loss-function and optimization-algorithm typedef network<mse, gradient_descent> CNN; // tanh, 32x32 input, 5x5 window, 1-6 feature-maps convolution convolutional_layer<CNN, tanh_activation> C1(32, 32, 5, 1, 6); // tanh, 28x28 input, 6 feature-maps, 2x2 subsampling average_pooling_layer<CNN, tanh_activation> S2(28, 28, 6, 2); // fully-connected layers fully_connected_layer<CNN, sigmoid_activation> F3(14*14*6, 120); fully_connected_layer<CNN, identity_activation> F4(120, 10); // connect all CNN mynet; mynet.add(&C1); mynet.add(&S2); mynet.add(&F3); mynet.add(&F4); assert(mynet.in_dim() == 32*32); assert(mynet.out_dim() == 10); ``` more sample, read main.cpp build sample program ------ ### gcc(4.6~) without tbb ./waf configure --BOOST_ROOT=your-boost-root ./waf build with tbb ./waf configure --TBB --TBB_ROOT=your-tbb-root --BOOST_ROOT=your-boost-root ./waf build with tbb and SSE/AVX ./waf configure --AVX --TBB --TBB_ROOT=your-tbb-root --BOOST_ROOT=your-boost-root ./waf build ./waf configure --SSE --TBB --TBB_ROOT=your-tbb-root --BOOST_ROOT=your-boost-root ./waf build or edit inlude/config.h to customize default behavior. ### vc(2012~) open vc/tiny_cnn.sln and build in release mode.

    5
    1021
    10.29MB
    2014-02-18
    32
  • 数据结构C语言描述清华大学出版社

    数据结构C语言描述清华大学出版社,作者严蔚敏、吴伟民。

    5
    0
    7.67MB
    2011-01-12
    3
  • 练成Linux高手.chm

    很好的chm格式的linux资料,共享,希望大家会喜欢。 喜欢的顶一下啊。

    0
    82
    3.76MB
    2010-08-07
    0
  • Linux下makefile实例讲解

    1) 详细介绍Linux下makefile编写方法; 2) 讲解清楚、详细、完整; 3) 讲解过程中伴随实例讲解、说明;

    3
    423
    574KB
    2010-08-07
    47
关注 私信
上传资源赚积分or赚钱