IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> opencv+python 图片分割 -> 正文阅读

[人工智能]opencv+python 图片分割

import cv2
import numpy as np
import os

im = cv2.imread("lamp1.jpg")
sp = im.shape
sz1 = sp[0]#height(rows) of image
sz2 = sp[1]#width(colums) of image
sz3 = sp[2]#the pixels value is made up of three primary colors

图像大小

if(sz2>4000 and sz2<6000):??
? ? ?Wth = sz2/2
? ? ?Ht = sz1/2
elif(sz2>6000 and sz2<9000):
? ? ?Wth = sz2/3
? ? ?Ht = sz1/3
else:
? ? ?Wth = sz2
? ? ?Ht = sz1 ? ?

灰度

image = cv2.resize(im,(Wth,Ht),interpolation=cv2.INTER_CUBIC) #resize 1500,1000
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
#cv2.imshow("Image", image)

Sobel算子

gradX = cv2.Sobel(gray, ddepth=cv2.cv.CV_32F, dx=1, dy=0, ksize=-1)
gradY = cv2.Sobel(gray, ddepth=cv2.cv.CV_32F, dx=0, dy=1, ksize=-1)
# subtract the y-gradient from the x-gradient
gradient = cv2.subtract(gradX, gradY)
gradient = cv2.convertScaleAbs(gradient)

模糊和二值化

# blur and threshold the image
blurred = cv2.blur(gradient, (9, 9))
(_, thresh) = cv2.threshold(blurred, 80, 255, cv2.THRESH_BINARY) ?#ret 90

kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (25, 25))
closed = cv2.morphologyEx(thresh, cv2.MORPH_CLOSE, kernel)

# perform a series of erosions and dilations
closed = cv2.erode(closed, None, iterations=4)
closed = cv2.dilate(closed, None, iterations=4)

(cnts, _) = cv2.findContours(closed.copy(), cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
'''
def Crop_Img(i): ?
? ? ?c = sorted(cnts, key=cv2.contourArea, reverse=True)[i]
print c
'''
if (os.path.exists('sbphW')==False):
? ? os.mkdir('sbphW')

分割生成多边形

for n in range(0, len(cnts)):
? ? ?c = sorted(cnts, key=cv2.contourArea, reverse=True)[n]
# compute the rotated bounding box of the largest contour
? ? ?rect = cv2.minAreaRect(c)
? ? ?box = np.int0(cv2.cv.BoxPoints(rect))
# draw a bounding box arounded the detected barcode and display the image ?
# ? ? cv2.drawContours(image, [box], -1, (0, 255, 0), 3)
? ? ?Xs = [i[0] for i in box]
? ? ?Ys = [i[1] for i in box]
# ? ? x1 = min(Xs)
# ? ? x2 = max(Xs)
# ? ? y1 = min(Ys)
# ? ? y2 = max(Ys)
? ? ?x1 = min(Xs)*2
? ? ?x2 = max(Xs)*2
? ? ?y1 = min(Ys)*2
? ? ?y2 = max(Ys)*2
? ? ?hight = y2 - y1
? ? ?width = x2 - x1
# ? ? cropImg = image[y1:y1+hight, x1:x1+width]
? ? ?cropImg = im[y1:y1+hight, x1:x1+width] ?#origin image for cut

# ? ? cv2.imshow("Image", image)
? ? ?if (hight > 30 and width > 30):
? ? ? ? ?cv2.imwrite("sbphW\cImg7_" + str(n)+ ".jpg", cropImg)
? ? ? ? ?cv2.waitKey(0)?? ??
?


'''
# draw a bounding box arounded the detected barcode and display the image
cv2.drawContours(image, [box], -1, (0, 255, 0), 3)

Xs = [i[0] for i in box]
Ys = [i[1] for i in box]
x1 = min(Xs)
x2 = max(Xs)
y1 = min(Ys)
y2 = max(Ys)
hight = y2 - y1
width = x2 - x1
cropImg = image[y1:y1+hight, x1:x1+width]

cv2.imshow("Image", image)
cv2.imwrite("cImg.jpg", cropImg)
cv2.waitKey(0)
'''


?

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:31:25  更:2022-02-26 11:33:04 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 19:57:24-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码