GPU=0 CUDNN=0 OPENCV=0 OPENMP=0 DEBUG=0 ARCH= -gencode arch=compute_30,code=sm_30 \ -gencode arch=compute_35,code=sm_35 \ -gencode arch=compute_50,cod ...
分类:
其他好文 时间:
2020-02-13 00:20:54
阅读次数:
116
先安装必须的库 tensorflow_gpu==1.15.0 numpy opencv_python github: https://github.com/bai-shang/crnn_ctc_ocr_tf 下载数据集: http://www.robots.ox.ac.uk/~vgg/data/te ...
分类:
其他好文 时间:
2020-02-12 22:38:05
阅读次数:
239
特征匹配 Brute-Force蛮力匹配 import cv2 import numpy as np import matplotlib.pyplot as plt %matplotlib inline img1 = cv2.imread('box.png', 0) img2 = cv2.imrea ...
分类:
其他好文 时间:
2020-02-12 22:06:49
阅读次数:
118
傅里叶变换 我们生活在时间的世界中,早上7:00起来吃早饭,8:00去挤地铁,9:00开始上班。。。以时间为参照就是时域分析。 但是在频域中一切都是静止的! https://zhuanlan.zhihu.com/p/19763358 傅里叶变换的作用 - 高频:变化剧烈的灰度分量,例如边界 - 低频 ...
分类:
其他好文 时间:
2020-02-11 17:32:06
阅读次数:
67
膨胀:dilate 函数 void dilate (InputArray src, OutputArray dst, InputArray kernel, Point anchor = Point(-1, -1), int iterations = 1, int borderType = BORDE ...
分类:
其他好文 时间:
2020-02-11 16:04:58
阅读次数:
47
运动图像检测 基于背景减法 "目标跟踪,背景分割器:KNN、MOG2和GMG" "Basic motion detection and tracking with Python and OpenCV" " 使用背景减除进行目标检测" "用 OpenCV 实现多目标追踪(C++/Python)" 通过 ...
分类:
其他好文 时间:
2020-02-10 22:51:09
阅读次数:
88
图像金字塔 高斯金字塔 高斯金字塔:向下采样方法(缩小) 高斯金字塔:向上采样方法(放大) img=cv2.imread("AM.png") cv_show(img,'img') print (img.shape) 效果: up=cv2.pyrUp(img) cv_show(up,'up') pri ...
分类:
其他好文 时间:
2020-02-10 18:14:56
阅读次数:
69
Canny边缘检测 使用高斯滤波器,以平滑图像,滤除噪声 计算图像中每个像素点的梯度强度和方向 应用非极大值(Non-Maximum Suppression)抑制,以消除边缘检测带来的杂散响应 应用双阈值(Double-Threshold)检测来确定真实的和潜在的边缘 双阈值检测 通过抑制孤立的弱边 ...
分类:
其他好文 时间:
2020-02-10 18:03:57
阅读次数:
103
动态地址访问像素:at<Vec3b>(i, j)[0]、at<uchar>(i, j) 函数 int b = src.at<Vec3b>(i, j)[0];int g = src.at<Vec3b>(i, j)[1];int r = src.at<Vec3b>(i, j)[2]; 用来访问三通道图像 ...
分类:
其他好文 时间:
2020-02-10 17:48:41
阅读次数:
1172
概述 可变性形状分析 可变性模板 "Object Recognition with Deformable Models" 基于部件的形状分析 "OpenCV中几何形状识别与测量" 主动轮廓(蛇模型) 基础模型 "opencv主动轮廓模型" "Snake主动轮廓模型 Matlab代码及运行结果" "c ...
分类:
其他好文 时间:
2020-02-10 13:35:15
阅读次数:
54