图像处理
Synioe
这个作者很懒,什么都没留下…
展开
-
Nature论文:Corrigendum: Dermatologist-level classification of skin cancer with deep neural networks
Nature正刊的一篇图像分类应用--传送门 利用inceptionv3做皮肤癌图像分类的工作,采集的数万张的图片数据,一百多类的皮肤病分类任务,ImageNet数据集预训练的数据迁移学习方法应用到多类皮肤病分类领域,9折交叉验证方法验证分类效果的可行性,并将迁移学习分类结果与多名专家分类的结果进行比较,得到的结论是机器学习的方法可以比拟专家分类。 通篇看完这篇高IF的文献,用的方法都是熟...原创 2018-11-21 22:48:34 · 1299 阅读 · 0 评论 -
去除工业显微图像中的显微字体
尝试使用自适应阈值法阈值话前景和背景,自适应阈值大津算法C++原理: int otsuThreshold(IplImage* img) { int T = 0;//阈值 int height = img->height; int width = img->width; int step = img->widthStep; in...转载 2018-11-19 15:56:08 · 292 阅读 · 0 评论 -
keras数据生成器--数据增强
原理很简单,简单的代码 from keras.preprocessing.image import ImageDataGenerator, array_to_img, img_to_array, load_img datagen = ImageDataGenerator( rotation_range=40, width_shift_range=0.2, height...原创 2018-12-03 21:08:29 · 1111 阅读 · 0 评论 -
dlib识别正面人脸 HOG+SVM
# This example program shows how to find frontal human faces in an image. In # particular, it shows how you can take a list of images from the command # line and display each on the screen wit...原创 2019-01-13 23:01:46 · 2159 阅读 · 1 评论