
图像
文章平均质量分 75
click726
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
图像骨架提取算法。细化算法
Afast parallel algorithm for thinning digitalpatterns” byT.Y. Zhang and C.Y. Suen.以及Parallelthinning with two sub-iteration algorithms” byZicheng Guo and Richard HallZhangand C.Y. Suen的图像骨架提取算法可以得到比较平...转载 2018-03-15 18:46:11 · 7867 阅读 · 0 评论 -
非局部均值滤波算法的python实现
#coding:utf8import cv2import numpy as npdef psnr(A, B): return 10*np.log(255*255.0/(((A.astype(np.float)-B)**2).mean()))/np.log(10)def double2uint8(I, ratio=1.0): return np.clip(np.round(...转载 2018-03-20 14:44:24 · 1272 阅读 · 0 评论