二值化阈值集中常用的选取方法:双峰(2-Mode)法,P 参数法,Otsu 法,迭代法。
假定一个阈值,方差越大,说明差别越大。
谱聚类(求解规范化 Laplace 矩阵的特征值和特征向量)
图象恢复是一个客观过程,需要利用 某些先验知识从退化和干扰的图像中去除模糊因素和噪声、尽可能恢复图像的本来面貌 。复原技术一般是先把 退化和干扰模型化 ,然后采用相反的过程进行处理,复原图像。
孔洞填充、骨架算法、边界提取。 冈萨雷斯《数字图像处理》Python(第三版) https://github.com/qcymkxyc/Image-Process
冈萨雷斯《数字图像处理》读书笔记 https://github.com/MAhaitao999/digital_image_processing
数字图像处理(第三版) https://github.com/ljy9826/Digital-Image-Processing_code
冈萨雷斯《数字图像处理》RafaelC.Gonzalez
这个 demo 还勉强不错的。
这个不错 数字图像处理 —— 知识点
数字图像处理 总结 https://blog.csdn.net/u011178262/article/details/79067643
数字图像处理复习总结 https://blog.csdn.net/sunshine_lyn/article/details/85400015
冈萨雷斯《数字图像处理》读书笔记 https://blog.csdn.net/weixin_37625243/article/details/102556940
几个简单的处理:https://github.com/mohammaduzair9/Basic-Image-Processing
一个偏门的库 Library for Digital Pathology Image Processing https://github.com/histolab/histolab
毛发去除算法,有点意思:https://github.com/sunnyshah2894/DigitalHairRemoval
4-simple-steps-in-Builiding-OCR https://github.com/Nagakiran1/4-simple-steps-in-Builiding-OCR
一批复古风:A set of image filters crafted and curated by This Is My Jam https://github.com/thisismyjam/jam-image-filter
一个库,风格丰富:Image processors and filters for use with ImageKit https://github.com/fish2000/instakit
Simple python demos of Guided Image Filtering (Python). https://github.com/tody411/GuidedFilter
专门为除去照片中腿毛等体毛而设计。Specially designed for image leg/arm hair removal. https://github.com/FerryYoungFan/FanselineImageToolbox
BeautyCamera https://github.com/PerpetualSmile/BeautyCamera
饱和度调整,明度调节,皮肤识别,皮肤磨皮(value1 精细度,value2 程度),美白算法(皮肤识别),美白算法(人脸识别),Gamma 矫正,怀旧滤镜,木刻滤镜,细节增强,风格化,铅笔画(彩色)。
An Wiener Filter Implementation for Image Processing Task https://github.com/tranleanh/wiener-filter-image-restoration
image filtering techniques in python with examples https://github.com/vikasgola/image-filtering
Commonly used image filters. 🌎 包罗常见的图像滤波器。https://github.com/JNingWei/Image_Filter
纯 Python 综合图像处理小工具(2)图像增强 https://www.cnblogs.com/sopic/p/4537718.html
纯 Python 综合图像处理小工具(3)10 种滤镜算法 https://www.cnblogs.com/sopic/p/4538052.html
BLUR、CONTOUR、DETAIL、EDGE_ENHANCE、EDGE_ENHANCE_MORE、EMBOSS、FIND_EDGES、SMOOTH、SMOOTH_MORE、SHARPEN(GaussianBlur、UnsharpMask、Kernel、RankFilter、MedianFilter、MinFilter、MaxFilter、ModeFilter)
各种效果:https://zhuanlan.zhihu.com/p/62737338
ImageFilter.BLUR | 模糊滤镜 |
ImageFilter.CONTOUR | 轮廓 |
ImageFilter.DETAIL | 细节滤镜 |
ImageFilter.EDGE_ENHANCE | 边界加强 |
ImageFilter.EDGE_ENHANCE_MORE | 边界加强(阀值更大) |
ImageFilter.EMBOSS | 浮雕滤镜 |
ImageFilter.FIND_EDGES | 边界滤镜 |
ImageFilter.SMOOTH | 平滑滤镜 |
ImageFilter.SMOOTH_MORE | 平滑滤镜(阀值更大) |
ImageFilter.SHARPEN | 锐化滤镜 |
GaussianBlur(radius) | 高斯模糊 |
UnsharpMask | USM 锐化 |
MedianFilter | 中值滤波 |
纯 Python 综合图像处理小工具(4)自定义像素级处理(剪纸滤镜)https://www.cnblogs.com/sopic/p/4665946.html