开发者社区> 问答> 正文

利用深度学习自动检测和分类糖尿病视网膜病变[闭合]

我是新的OpenCV和我卡住分割部分ie。去除视网膜的光盘。

import cv2
import numpy as np
from matplotlib impt pyplot as plt

img = cv2.imread('abc.jpg',0)

# global thresholding
ret1,th1 = cv2.threshold(img,127,255,cv2.THRESH_BINARY)

# Otsu's thresholding
ret2,th2 = cv2.threshold(img,0,255,cv2.THRESH_BINARY+cv2.THRESH_OTSU)

# Otsu's thresholding after Gaussian filtering
blur = cv2.GaussianBlur(img,(5,5),0)
ret3,th3 = cv2.threshold(blur,0,255,cv2.THRESH_BINARY+cv2.THRESH_OTSU)

# plot all the images and their histograms
cv2.imwrite('output_new2.jpg', th1)

目前,我指的是这个分割部分,去掉视网膜的光盘图像,设置光盘的颜色为背景色 问题来源StackOverflow 地址:/questions/59379529/automatic-detection-and-classi%ef%ac%81cation-of-retinal-lesions-in-diabetic-retinopathy

展开
收起
kun坤 2019-12-30 09:58:42 1407 0
1 条回答
写回答
取消 提交回答
  • 啥?

    2020-03-29 15:09:24
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
深度学习的最新进展 立即下载
搜狗深度学习技术在广告推荐领域的应用 立即下载
深度学习在电商搜索和聊天机器人中的应用 立即下载