1、FBM320控制寄存器 a、AD数据寄存器地址(24bit数据): 0xF6:Data-LSB 0xF7:Data-CSB 0xF8:Data-MSB b、CONFIG寄存器地址(0xF4): OSR(bit6-bit7):00=1024X;01=2048X;10=4096X;11=8192X ...
分类:
其他好文 时间:
2020-07-01 11:05:19
阅读次数:
86
我们在使用python的flask框架时,可能会经常用到生命周期函数如:before_request, before_first_request,或者信号等,刚开始学的时候就想只要写一个函数,然后加上一个装饰器居然就可以实现这种开挂般的效果,那时感觉这框架代码写得真棒, 再过些时间自己学会阅读框架源 ...
分类:
编程语言 时间:
2020-06-30 14:41:29
阅读次数:
70
A few weeks ago we introduced the first demonstration of “P4 Runtime”. We invite all members of the networking community to join with us, so that toge ...
分类:
其他好文 时间:
2020-06-30 13:01:44
阅读次数:
51
Jump Game II (H) 题目 Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array r ...
分类:
其他好文 时间:
2020-06-30 09:14:16
阅读次数:
59
高效能人士的七个习惯: 习惯一:积极主动 Be Proactive 习惯二:以始为终 Begin with the end in mind 习惯三:要事第一 Put first things first 习惯四:双赢思维 Think win/win 习惯五:知彼解己 Seek first to un ...
分类:
其他好文 时间:
2020-06-29 22:49:01
阅读次数:
119
1. class Solution { public: int missingNumber(vector<int>& nums) { sort(nums.begin(),nums.end()); for(int i=0;i<nums.size();++i) { if(nums[i]!=i) retu ...
分类:
其他好文 时间:
2020-06-29 11:35:36
阅读次数:
47
CCSU团队训练赛 H - Billionaires URAL - 1650 ? You probably are aware that Moscow holds the first place in the world with respect to the number of billionai ...
分类:
其他好文 时间:
2020-06-28 22:22:44
阅读次数:
149
六月箴言 走好选择的路,别选择好走的路,你才能拥有真正的自己。—— 杨绛 第十三章 真实世界中的模式 定义设计模式 模式是在某情景下,针对某问题的某种解决方案。 情景就是应用某个模式的情况。这应该是会不断出现的情况。 问题就是你想在某情景下达到的目标,单也可以是某情景下的约束。 解决方案就是你所追求 ...
分类:
其他好文 时间:
2020-06-28 22:22:25
阅读次数:
61
与设计模式相处 定义设计模式 模式时在某情境下,针对某问题的某种解决方案 情境,就是应用某个模式的情况,这应该是会不断出现的情况。 问题,就是你想在某情境下达到的目标,但也可以是某情境下的约束。 解决方案,就是你说追求的一个通用的设计,用来解决约束、达到目标。 如果你发现自己处于某个情境下,面对着所 ...
分类:
其他好文 时间:
2020-06-28 20:49:13
阅读次数:
44
常规方法: 1 void SobelAmplitude(Mat &sobelx, Mat &sobely, Mat &SobelXY) { 2 SobelXY = Mat::zeros(sobelx.size(), CV_32FC1); 3 for (int i = 0; i < SobelXY.r ...
分类:
其他好文 时间:
2020-06-28 18:24:46
阅读次数:
51