91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中OpenCV如何實現測量圖片物體寬度

發布時間:2020-07-21 11:52:38 來源:億速云 閱讀:543 作者:小豬 欄目:開發技術

這篇文章主要講解了Python中OpenCV如何實現測量圖片物體寬度,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

一、 題目描述

測量所給圖片的高度,即上下邊緣間的距離。

Python中OpenCV如何實現測量圖片物體寬度

思路:

  • 將圖片進行閾值操作得到二值化圖片。
  • 截取只包含上下邊框的部分,以便于后續的輪廓提取
  • 輪廓檢測
  • 得到結果

二、 實現過程

1.用于給圖片添加中文字符

#用于給圖片添加中文字符
def ImgText_CN(img, text, left, top, textColor=(0, 255, 0), textSize=20):
  if (isinstance(img, np.ndarray)): #判斷是否為OpenCV圖片類型
    img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
  draw = ImageDraw.Draw(img)
  fontText = ImageFont.truetype(r'C:\Windows\Fonts\simsun.ttc', textSize, encoding="utf-8")     ##中文字體
  draw.text((left, top), text, textColor, font=fontText)   #寫文字
  return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR)

2.實現圖片反色功能

#實現圖片反色功能
def PointInvert(img):
  height, width = img.shape    #獲取圖片尺寸
  for i in range(height):
    for j in range(width):
      pi = img[i, j]
      img[i, j] = 255 - pi
  return img

3.邊緣檢測

# canny邊緣檢測
edges = cv2.Canny(th, 30, 70) 
res=PointInvert(edges)              #顏色反轉
#顯示圖片
cv2.imshow('original', th)            #顯示二值化后的圖,主題為白色,背景為黑色 更加容易找出輪廓
key = cv2.waitKey(0)
if key==27: #按esc鍵時,關閉所有窗口
  print(key)
  cv2.destroyAllWindows()

4.輪廓操作

contours, hierarchy = cv2.findContours(th, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)    #得到輪廓

cnt = contours[0]        #取出輪廓

x, y, w, h = cv2.boundingRect(cnt)     #用一個矩形將輪廓包圍

img_gray = cv2.cvtColor(res, cv2.COLOR_GRAY2BGR)        #將灰度轉化為彩色圖片方便畫圖

cv2.line(img_gray, (x, y), (x + w, y), (0,0,255), 2, 5)     #上邊緣
cv2.line(img_gray, (x, y+h), (x + w, y+h), (0, 0, 255), 2, 5)  #下邊緣

img1[80:230, 90:230] = img_gray     #用帶有上下輪廓的圖替換掉原圖的對應部分

5.顯示圖片

res1=ImgText_CN(img1, '寬度%d'%h, 25, 25, textColor=(0, 255, 0), textSize=30)  #繪制文字
#顯示圖片 
cv2.imshow('original', res1)
key = cv2.waitKey(0)
if key==27: #按esc鍵時,關閉所有窗口
  print(key)
  cv2.destroyAllWindows()

6.完整代碼

import cv2
import numpy as np
from PIL import Image, ImageDraw, ImageFont

#用于給圖片添加中文字符
def ImgText_CN(img, text, left, top, textColor=(0, 255, 0), textSize=20):
  if (isinstance(img, np.ndarray)): #判斷是否為OpenCV圖片類型
    img = Image.fromarray(cv2.cvtColor(img, cv2.COLOR_BGR2RGB))
  draw = ImageDraw.Draw(img)
  fontText = ImageFont.truetype(r'C:\Windows\Fonts\simsun.ttc', textSize, encoding="utf-8")     ##中文字體
  draw.text((left, top), text, textColor, font=fontText)   #寫文字
  return cv2.cvtColor(np.asarray(img), cv2.COLOR_RGB2BGR)

#實現圖片反色功能
def PointInvert(img):
  height, width = img.shape    #獲取圖片尺寸
  for i in range(height):
    for j in range(width):
      pi = img[i, j]
      img[i, j] = 255 - pi
  return img



img=cv2.imread("gongjian1.bmp",0)        #加載彩色圖
img1=cv2.imread("gongjian1.bmp",1)        #加載灰度圖

recimg = img[80:230, 90:230]          #截取需要的部分
img2 = img1[80:230, 90:230]           #截取需要的部分
ret, th = cv2.threshold(recimg, 90, 255, cv2.THRESH_BINARY)     #閾值操作二值化


# canny邊緣檢測
edges = cv2.Canny(th, 30, 70) 
res=PointInvert(edges)              #顏色反轉
#顯示圖片
cv2.imshow('original', th)            #顯示二值化后的圖,主題為白色,背景為黑色 更加容易找出輪廓
key = cv2.waitKey(0)
if key==27: #按esc鍵時,關閉所有窗口
  print(key)
  cv2.destroyAllWindows()
  
contours, hierarchy = cv2.findContours(th, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)    #得到輪廓

cnt = contours[0]        #取出輪廓

x, y, w, h = cv2.boundingRect(cnt)     #用一個矩形將輪廓包圍

img_gray = cv2.cvtColor(res, cv2.COLOR_GRAY2BGR)        #將灰度轉化為彩色圖片方便畫圖

cv2.line(img_gray, (x, y), (x + w, y), (0,0,255), 2, 5)     #上邊緣

cv2.line(img_gray, (x, y+h), (x + w, y+h), (0, 0, 255), 2, 5)  #下邊緣
img1[80:230, 90:230] = img_gray                 #用帶有上下輪廓的圖替換掉原圖的對應部分

res1=ImgText_CN(img1, '寬度%d'%h, 25, 25, textColor=(0, 255, 0), textSize=30)  #繪制文字
#顯示圖片 
cv2.imshow('original', res1)
key = cv2.waitKey(0)
if key==27: #按esc鍵時,關閉所有窗口
  print(key)
  cv2.destroyAllWindows()

三、 運行結果(效果)

Python中OpenCV如何實現測量圖片物體寬度

Python中OpenCV如何實現測量圖片物體寬度

四、 問題及解決方法

紅色輪廓沒有顯示,解決方案:將灰度圖轉化為彩色圖

看完上述內容,是不是對Python中OpenCV如何實現測量圖片物體寬度有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

靖州| 灵川县| 自贡市| 黄石市| 重庆市| 公主岭市| 东源县| 栾川县| 乐清市| 曲阳县| 富民县| 广昌县| 深水埗区| 前郭尔| 小金县| 枣强县| 宾阳县| 苍山县| 贵德县| 武义县| 新建县| 惠水县| 探索| 安新县| 济阳县| 广水市| 商城县| 新安县| 伊川县| 汕头市| 吉水县| 龙口市| 磐安县| 长治市| 玉门市| 普安县| 兴国县| 澜沧| 滨州市| 尚义县| 叙永县|