摘要: linux内核介绍 https://blog.csdn.net/u012489236/article/list/3?t=1 内核体系结构 https://www.cnblogs.com/luxiaodai/p/13379737.html Linux内核主要由五个子系统组成:进程调度,内存管理,虚拟文 阅读全文
posted @ 2021-06-13 22:06 Tadeas 阅读(450) 评论(0) 推荐(0) 编辑
摘要: Object Detection Bounding box(最小外截距项)和category label Difference with the other task: 1. single task: classification classification and localization 2. 阅读全文
posted @ 2019-10-17 23:09 Tadeas 阅读(274) 评论(0) 推荐(0) 编辑
摘要: Reference: https://blog.csdn.net/qq_27396861/article/details/88209199 https://blog.csdn.net/weixin_44072651/article/details/89262277 https://blog.csdn 阅读全文
posted @ 2019-09-08 23:33 Tadeas 阅读(655) 评论(0) 推荐(0) 编辑
摘要: 特征提取 直方图 用于计算图片的特征(Feature) 和表达(representation) 对图片数据/特征分别的一种统计 灰度、颜色 梯度/边缘、形状、纹理 局部特征点、视觉词汇 区间(bin) 均有一定的统计或者物理意义 一种数据或者特征的代表 需要预定义或者基于数据进行学习 数值是一种统计 阅读全文
posted @ 2019-09-03 23:02 Tadeas 阅读(227) 评论(0) 推荐(0) 编辑
摘要: $ $ 6中匹配算法的原理 缺点:模板匹配具有自身的局限性,主要表现在它只能进行平行移动,若原图像中的匹配目标发生旋转或大小变化,该算法无效。 阅读全文
posted @ 2019-09-02 22:44 Tadeas 阅读(1209) 评论(0) 推荐(0) 编辑
摘要: 滤波/卷积函数 $$h[x,y]=\sum\limits_{k,l}{f[k,l]I[x+k,y+l]}$$ 其中,$I$表示对应的像素点,$f(x,y)$为滤波函数,$k, l$为扫扫描窗(卷积核)中的任意点。 在卷积的过程中,需要注意的是padding, 根据padding的类型可以大致分为:z 阅读全文
posted @ 2019-09-01 23:00 Tadeas 阅读(422) 评论(0) 推荐(0) 编辑
摘要: FYI: http://www.wangafu.net/~nickm/libevent-book/Ref6_bufferevent.html Bufferevents: concepts and basics Most of the time, an application wants to per 阅读全文
posted @ 2018-12-17 17:58 Tadeas 阅读(220) 评论(0) 推荐(0) 编辑
摘要: FYI: http://www.wangafu.net/~nickm/libevent-book/Ref5_evutil.html Helper functions and types for Libevent Basic types Miscellaneous compatibility type 阅读全文
posted @ 2018-12-17 15:01 Tadeas 阅读(247) 评论(0) 推荐(0) 编辑
摘要: FYI: http://www.wangafu.net/~nickm/libevent-book/TOC.html Working with events Libevent’s basic unit of operation is the event. Every event represents 阅读全文
posted @ 2018-12-17 14:00 Tadeas 阅读(388) 评论(0) 推荐(0) 编辑
摘要: FYI: http://www.wangafu.net/~nickm/libevent-book/TOC.html The Libevent Reference Manual: Preliminaries Libevent is a library for writing fast portable 阅读全文
posted @ 2018-12-14 17:48 Tadeas 阅读(273) 评论(0) 推荐(0) 编辑
摘要: FYI:http://www.wangafu.net/~nickm/libevent-book/ This lib is a integral of asynchronous IO. we should change the concept from blocking PRO to nonblock 阅读全文
posted @ 2018-12-13 15:23 Tadeas 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 版权:https://linuxtools-rst.readthedocs.io/zh_CN/latest/tool/gdb.html 1. gdb 调试利器 GDB是一个由GNU开源组织发布的、UNIX/LINUX操作系统下的、基于命令行的、功能强大的程序调试工具。 对于一名Linux下工作的c+ 阅读全文
posted @ 2018-12-10 15:36 Tadeas 阅读(228) 评论(0) 推荐(0) 编辑