接触3D tracking一周多,学习一下kalman filters。借鉴优质博客,自己记录下来,便于总结和巩固。 ref:https://www.zhihu.com/people/huang-piao-72/posts?page=1 卡尔曼滤波器是多目标跟踪任务中的一个经典的运动模型。 1 背景 ...
分类:
其他好文 时间:
2020-08-04 23:59:31
阅读次数:
79
8.4 学习日记 KVM KVM 是 Linux 的一部分。Linux 也是 KVM 的一部分。Linux 有的,KVM 全都有。然而,KVM 的某些特点让它成为了企业的首选虚拟机监控程序。 静态类: 所谓静态,指以static关键字修饰的,包括类,方法,块,字段。 静态类和非静态类之间的区别 1. ...
分类:
其他好文 时间:
2020-08-04 16:52:29
阅读次数:
79
构建bean文件: public class People { private String name = "小明"; } 编写配置类: @Configuration @Import(ApplicationConfig2.class) public class ApplicationConfig { ...
分类:
编程语言 时间:
2020-07-28 22:20:26
阅读次数:
71
/*程序袁欢,袁欢的博客,www.g-7.net,革启博客 版本:vs2019社区版 功能:计算学生个人平均成绩*/ #include<stdio.h> int main() { int i, j;//循环变量 int score[4][3]; int aver_people[4] = { 0 }; ...
分类:
其他好文 时间:
2020-07-22 15:29:49
阅读次数:
64
1、首先需要了解哪些占位符分别代表什么 这些是死知识,把常用的记住,不常用的直接查表就行了 golang 的fmt 包实现了格式化I/O函数,类似于C的 printf 和 scanf。 定义示例类型和变量 type Human struct { Name string } var people = ...
分类:
编程语言 时间:
2020-07-20 15:24:23
阅读次数:
75
Pass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei have many people to meet. Especially a ...
分类:
其他好文 时间:
2020-07-17 01:14:23
阅读次数:
90
日本高中数学的学习范围 高一上学期(数1): 数论(数と式) 整数,小数,分数,有理数,无理数的定义 绝对值的计算,联立不等式的解法,因式分解,对称式 双重根号的计算 集合,逻辑与命题(集合と論理) 集合的概念 充分条件,必要条件 命题的真伪 三种命题:逆,否,逆否 二次函数(二次関数) 二次函数的 ...
分类:
其他好文 时间:
2020-07-15 10:45:14
阅读次数:
125
https://www.eweek.com/security/mark-russinovich-on-the-future-of-security Windows IT people everywhere owe thanks to Dr. Mark Russinovich, now a techn ...
分类:
其他好文 时间:
2020-07-13 16:52:05
阅读次数:
92
一 代码及执行结果 ex30.py 1 people = 14 2 cars = 15 3 trucks = 10 4 5 if cars > people: 6 print("We should take the cars.") 7 elif cars < people: 8 print("We ...
分类:
其他好文 时间:
2020-07-13 13:46:48
阅读次数:
67
//方法:函数指定接收者之后就是方法,只有某个具体的类型才能调用 package main import "fmt" type people struct { name string gender string } //go中,约定使用类型首字母小写 func (p people) dream() ...
分类:
其他好文 时间:
2020-07-12 22:10:36
阅读次数:
69