原先笔记本自带的是Win10系统,想着日常开发中更常用的是Linux环境,所以重装了Ubuntu。之前用的是16.04版本,用了也快一年了,电脑里面的东西攒的挺多的,而且现在也都快2020了,所以打算重装Ubuntu 18.04版本,小结重装Ubuntu系统后相关环境配置

阅读全文 »

原文地址:A successful Git branching model

In this post I present the development model that I’ve introduced for some of my projects (both at work and private) about a year ago, and which has turned out to be very successful. I’ve been meaning to write about it for a while now, but I’ve never really found the time to do so thoroughly, until now. I won’t talk about any of the projects’ details, merely about the branching strategy and release management.

在这篇文章中,我介绍了大约一年前为我的一些项目(包括工作项目和私人项目)引入的开发模型,结果证明非常成功。一段时间以来,我一直想写这篇文章,但直到现在,我还没有真正找到时间彻底地写完。我不会谈论任何项目的细节,仅仅是分支策略和发布管理

阅读全文 »

R-CNN(Regions with CNN features, 具有CNN特征的区域)是早期最先在目标检测领域中使用卷积神经网络的模型之一,其结合了图像处理、机器学习和深度学习,在当时达到了非常好的结果

原文地址:Rich feature hierarchies for accurate object detection and semantic segmentation

阅读全文 »

参考:

卷积运算和相关运算的区别与物理含义?

通俗理解【卷】积+互相关与卷积

Convolution Vs Correlation

学习OpenCV2维线性滤波器filter2D,发现一句话

1
2
3
Correlation

In a very general sense, correlation is an operation between every part of an image and an operator (kernel).

之前有接触过correlation(相关)的存在,但是没有仔细理清相关和卷积的异同,以及与之衍生而来的互相关(cross-correlation)和滤波(filter)的概念

阅读全文 »