上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页
摘要: 在实际过程中采用 Lucas-Kanade 光流算法跟踪运动物体特征点的时候,一个很明显的特点是LK算法(包括其他光流算法)不能计算“大运动”,加上金子塔的方法稍微好点。这是什么原因?查看LK算法的三个假设:1、亮度恒定;2、时间连续或者运动是“小运动”;3、空间一致;同一子图像的像素点有相同的运动。 1和3都相对好理解,对于2,换句话,可以将运动的变化看成是亮度对时间的导数。如果距离比较大,那么... 阅读全文
posted @ 2018-09-11 16:09 Jerry_Jin 阅读(2184) 评论(0) 推荐(0) 编辑
摘要: 图像去噪是非常基础也是非常必要的研究,去噪常常在更高级的图像处理之前进行,是图像处理的基础。可惜的是,目前去噪算法并没有很好的解决方案,实际应用中,更多的是在效果和运算复杂度之间求得一个平衡,再一次验证了我老师的一句话: 所有的工程问题最后都是最优化问题。 好了,废话不多说,来看看效果比较好的去噪算 阅读全文
posted @ 2018-09-11 16:00 Jerry_Jin 阅读(3678) 评论(0) 推荐(0) 编辑
摘要: You can also use scipy.signal.welch to estimate the power spectral density using Welch’s method. Here is an comparison between np.fft.fft and scipy.si 阅读全文
posted @ 2018-09-10 15:46 Jerry_Jin 阅读(9871) 评论(3) 推荐(0) 编辑
摘要: scipy.fftpack 和 numpy.fft 的区别 When applying scipy.fftpack.rfft and numpy.fft.rfft I get the following plots respectively: Scipy: Numpy: While the shap 阅读全文
posted @ 2018-09-10 15:44 Jerry_Jin 阅读(974) 评论(0) 推荐(0) 编辑
摘要: np.fft.fft np.fft.fft import matplotlib.pyplot as plt import plotly.plotly as py import numpy as np # Learn about API authentication here: https://plo 阅读全文
posted @ 2018-09-10 15:16 Jerry_Jin 阅读(4980) 评论(0) 推荐(0) 编辑
摘要: Just try sudo do-release-upgrade if you get this An upgrade from 'zesty' to 'bionic' is not supported with this tool. you have to upgrade manually. Be 阅读全文
posted @ 2018-09-06 15:32 Jerry_Jin 阅读(586) 评论(0) 推荐(0) 编辑
摘要: 为了装TensorFlow 1.10 下面升级一下系统的软件环境 NVIDIA DRIVER NVIDIA DRIVER 去官网下载最新的linux驱动 http://www.nvidia.com/Download/index.aspx 直接运行会报错 sudo bash NVIDIA-Linux- 阅读全文
posted @ 2018-09-06 14:32 Jerry_Jin 阅读(4898) 评论(0) 推荐(0) 编辑
摘要: 装显卡驱动推荐 gcc 6.3 版本,其实linux上多个版本的gcc是可以共存的,需要的的时候切换就好,参加之前的博客 https://www.cnblogs.com/jins-note/p/9513583.html安装新的版本 sudo apt-get update sudo apt-get i 阅读全文
posted @ 2018-09-06 11:12 Jerry_Jin 阅读(2129) 评论(0) 推荐(0) 编辑
摘要: 代码 先给出代码,再详细解释一下过程: #include <opencv2/core/core.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/highgui/highgui.hpp> #include <iostream> 阅读全文
posted @ 2018-09-05 18:51 Jerry_Jin 阅读(922) 评论(0) 推荐(0) 编辑
摘要: 主要参考Anaconda官方指南Using Conda:https://conda.io/docs/using/index.html 环境:Win10 64bit with conda 4.3.14 以下命令均在windows命令行中输入。一般来讲,无论是在Linux,OS X还是在windows系 阅读全文
posted @ 2018-09-05 16:34 Jerry_Jin 阅读(828) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 33 下一页