Markdown学习 标题: 二级标题 三级标题 字体 hello,world! hello,world! hello,world! hello,world! 引用 好好学习,天天向上 分割线 图片 图片(C:\Users\chenhao\Pictures\Saved Pictures\英雄联盟LO ...
分类:
其他好文 时间:
2020-05-25 23:43:04
阅读次数:
91
前一段时间就在研究用Dockerfile构建MySQL镜像并实现容器启动过程中MySQL数据库系统的初始化,但被一些无关紧要的事儿给耽误了,经过查阅《dockerfile最佳实践》及MySQL数据库的迁移与备份还原的资料,整理了操作过程,并进行了实验,确认此方法可行:MySQL数据库系统的初始化是指MySQL安装到OS上后所经历的initinstall过程,只有经过初始化的数据库系统才能提供数据存
分类:
数据库 时间:
2020-05-21 10:37:40
阅读次数:
76
以上是自我理解 分割线 以下来源网络 一维 二维 整体 参考文献: 1. 图说卡尔曼-bzarg- http://www.bzarg.com/p/how-a-kalman-filter-works-in-pictures/ 2. 知乎 - 卡尔曼滤波:从入门到精通-David LEE https:/ ...
分类:
其他好文 时间:
2020-05-09 23:16:29
阅读次数:
63
from PIL import Image import numpy as np a = np.asarray(Image.open(r'C:\Users\Administrator\Pictures\院徽.jpg').convert('L')).astype('float') depth = 10 ...
分类:
其他好文 时间:
2020-05-06 21:44:04
阅读次数:
74
1、使用http接收IO流 2、使用接收formdata表单的方式 controller: @PostMapping("savePicByIo") public String savePicByIo(HttpServletRequest request) throws Exception{ Syst ...
分类:
编程语言 时间:
2020-03-13 21:03:20
阅读次数:
154
Some scientists took pictures of thousands of birds in a forest. Assume that all the birds appear in the same picture belong to the same tree. You are ...
分类:
其他好文 时间:
2020-03-04 15:07:02
阅读次数:
86
/** * 获取图标 bitmap * * @param context * Context.getExternalFilesDir(Environment.DIRECTORY_PICTURES)//android 10存储图片地址 */ public static synchronized Bit ...
分类:
移动开发 时间:
2020-01-10 00:26:56
阅读次数:
117
前言 产品开发要求添加视频剪辑功能,翻阅有关的文档,查到了GOP(group of pictures)这个概念。 解析 GOP说白了就是两个I帧之间的间隔.比较说GOP为120,如果是720p60的话,那就是2s一次I帧. ? 在视频编码序列中,主要有三种编码帧:I帧、P帧、B帧。 ? ● I帧即I ...
分类:
其他好文 时间:
2020-01-08 18:38:15
阅读次数:
125
Week1 Bird recognition in the city of Peacetopia (case study)( 和平之城中的鸟类识别(案例研究)) 1.Problem Statement This example is adapted from a real production ap ...
分类:
系统相关 时间:
2020-01-06 13:02:04
阅读次数:
90
这两天学习了一些卡尔曼滤波算法的相关知识。相比其它的滤波算法,卡尔曼滤波在对计算量需求非常之低,同时又能达到相当不错的滤波结果。 1. 算法原理 网上看到一篇文章http://www.bzarg.com/p/how-a-kalman-filter-works-in-pictures/对卡尔曼滤波讲解 ...
分类:
编程语言 时间:
2019-12-26 19:35:17
阅读次数:
109