摘要:
读visual object tracking -- eco (Efficient Convolution Operator (ECO) tracker.) 算法的源码,一时好奇,想自己推导一下这个cubic spline kernel的计算函数。 作者:Ma... 阅读全文
摘要:
Blob::Reshape(const vector& shape) 功能:为blob分配内容空间 该函数一般在开辟空间内存时调用,如输入的data层,InputLayer::LayerSetUp中调用。 一般shape是(num, channel, widt... 阅读全文
摘要:
作用:对 top输出到多个 Layer的情况进行分割,建立完整的网络结构 重要的参数说明举例: layer_idx_to_layer_name[i] 记录各层的名称,如 [0x00000000] "input"blob_name_to_last_top_idx... 阅读全文
摘要:
visual object tracking的项目,运行中碰到些小问题。Windows下matlab运行的这两个项目非常接近, https://github.com/HyeonseobNam/MDNet https://github.com/ybsong00/... 阅读全文
摘要:
记一下,备忘。 用OpenCV打开OpenCV录制的视频,发现报错,代码如下 cv::VideoCapture capture; capture.open("E:\\opencv.avi"); 追踪了一下,原来是打开要求用MJPG, bool AviMjpe... 阅读全文
摘要:
Happynear Caffe + vs2015 + protobuf3.1 visual studio 版本问题: Microso... 阅读全文
摘要:
caffe中所有的layer都是类的结构,它们的构造相关的函数都注册在一个全局变量g_registry_ 中。 首先这个变量的类型 CreatorRegistry是一个map定义, public: typedef shared_ptr > (*Creato... 阅读全文
摘要:
过滤规则 Net::StateMeetsRule函数 作用:StateMeetsRule()中net的state是否满足NetStaterule 用构造net时的输入phase/level/stage与prototxt中各层的规则(include/exclud... 阅读全文