
project
Thuzxy
这个作者很懒,什么都没留下…
展开
-
python中[:-1]
python中[:,-1]: It slices the string to omit the last character, in this case a newline character: ‘test\n’[:-1] ‘test’ Since this works even on empty strings, it’s a prett原创 2017-05-07 10:37:37 · 12289 阅读 · 0 评论 -
模板匹配
平移不变性图像的模板匹配1.尺度变换 详见:http://www.pyimagesearch.com/2015/01/26/multi-scale-template-matching-using-python-opencv/2.多个目标的匹配 详见:http://docs.opencv.org/trunk/d4/dc6/tutorial_py_template_matching.htmlopen原创 2017-05-07 10:36:16 · 552 阅读 · 0 评论 -
matlab与C语言混合编程-----利用Mex函数
http://blog.sciencenet.cn/blog-620659-579885.html接口函数规范mexFunction介绍 void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]) nlhs:输出参数数目 plhs:指向输出参数的指针 nrhs:输入参数数目原创 2017-05-08 11:03:37 · 695 阅读 · 0 评论