01 2019 档案

摘要:I try to login Ubuntu 16.04 xrdp through window 10 with mstsc. It was successful in 2019/01/09 night, but failed in 2019/01/10 morning. An system auto 阅读全文
posted @ 2019-01-11 16:50 Jerry_Jin 阅读(2814) 评论(0) 推荐(0)
摘要:TensorFlow Saver 保存最佳模型 tf.train.Saver Save Best Model Checkmate is designed to be a simple drop-in solution for a very common Tensorflow use-case: ke 阅读全文
posted @ 2019-01-09 20:45 Jerry_Jin 阅读(4785) 评论(0) 推荐(0)
摘要:nn.softmax 和 softmax_cross_entropy_with_logits 和 softmax_cross_entropy_with_logits_v2 的区别 You have every reason to be confused, because in supervised 阅读全文
posted @ 2019-01-09 13:50 Jerry_Jin 阅读(759) 评论(0) 推荐(0)
摘要:英文详细版参考:https://www.cnblogs.com/jins-note/p/10243716.html Dataset API是TensorFlow 1.3版本中引入的一个新的模块,主要服务于数据读取,构建输入数据的pipeline。此前,在TensorFlow中读取数据一般有两种方法:使用placeholder读内存中的数据使用queue读硬盘中的数据(关于这种方式,可以参考我之前的... 阅读全文
posted @ 2019-01-09 13:41 Jerry_Jin 阅读(5899) 评论(0) 推荐(0)
摘要:How to use Data Iterator in TensorFlowone_shot_iteratorinitializable iteratorreinitializable iteratorfeedable iteratorThe built-in Input Pipeline. Never use ‘feed-dict’ anymoreUpdate 2/06/2018: Added ... 阅读全文
posted @ 2019-01-09 13:19 Jerry_Jin 阅读(2099) 评论(0) 推荐(0)
摘要:Mine: 图中圈出来的是三极管 和滤波电容 依赖库: wiringPi Shell脚本 本文介绍使用Shell脚本在树莓派上启用软件PWM控制风扇转速。 最新版本下载地址https://github.com/tankririri/RaspberryPi_CPU_PWM 硬件需求 树莓派(这里用的3 阅读全文
posted @ 2019-01-06 17:18 Jerry_Jin 阅读(7629) 评论(0) 推荐(0)
摘要:树莓派 引脚图 树莓派 引脚图 注:本表格适用于各版本,并且兼容26Pin的树莓派B,树莓派B为26Pin,其引脚对应于上表的前26Pin。 树莓派 接口图 AV接口又称(RCA),AV接口算是出现比较早的一种接口,它由黄、白、红三种颜色的线组成,其中黄线为视频,红色为左声道,白色为右声道。 树莓派 阅读全文
posted @ 2019-01-06 17:01 Jerry_Jin 阅读(8968) 评论(0) 推荐(0)
摘要:Enable the Pi's hardware decoding of MPEG-2 and VC-1 MPEG2 patents have expired If you have start.elf in /boot If you have start_x.elf in /boot If you 阅读全文
posted @ 2019-01-06 16:47 Jerry_Jin 阅读(1835) 评论(0) 推荐(0)
摘要:一、前情提要 如果你对目标跟踪和KCF是什么东西还不了解的话欢迎你看前一篇博文KCF入门详解:https://www.cnblogs.com/jins-note/p/10215511.html 。如果你已经对基于KCF的目标跟踪有了一定的了解,并想知道这个算法有怎么样的后续的发展的话,就请听我慢慢介 阅读全文
posted @ 2019-01-03 17:07 Jerry_Jin 阅读(4020) 评论(1) 推荐(0)
摘要:一、算法介绍 KCF全称为Kernel Correlation Filter 核相关滤波算法。是在2014年由Joao F. Henriques, Rui Caseiro, Pedro Martins, and Jorge Batista提出来的,算法出来之后也算是轰动一时,这个算法不论是在跟踪效果 阅读全文
posted @ 2019-01-03 17:02 Jerry_Jin 阅读(76593) 评论(1) 推荐(7)
摘要:C语言类型大小总览 编译器pack指令 #pragma pack(n)——定义n字节对齐 C++固有类型的对齐取编译器对齐与自身大小中较小的一个 32位C++默认8字节对齐。gcc编译器默认4字节对齐 static变量在静态区,sizeof均不纳入计算 在编译阶段处理,sizeof作用范围内的内容不 阅读全文
posted @ 2019-01-02 20:38 Jerry_Jin 阅读(7102) 评论(0) 推荐(0)
摘要:Error no matching function for call to 'std::exception::exception(const char [15])' Error 'logic_error' was not declared in this scope 错误原因 C++在使用VS 编 阅读全文
posted @ 2019-01-02 19:30 Jerry_Jin 阅读(4026) 评论(0) 推荐(0)