亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎么在Python中使用opencv 實現人臉檢測功能

發布時間:2021-04-13 17:55:34 來源:億速云 閱讀:140 作者:Leah 欄目:開發技術

怎么在Python中使用opencv 實現人臉檢測功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

導入庫,并做命令行參數處理。你在命令行可以輸入如下:

python detect_faces.py --image image/family.jpg  --detector haarcascade_frontalface_default.xml

我在程序中都有缺省參數處理,你如果集成測試或命令行不輸參數的話,就要修改好你的缺省值。

這樣命令行就是python detect_faces.py ,同時也可以輸入命令行輸入參數。

# USAGE 使用方法是:
# python detect_faces.py --image images/family.jpg \
# --detector haarcascade_frontalface_default.xml
# import the necessary packages 輸入包
# import imutils 
import argparse
import cv2
# construct the argument parser and parse the arguments //構造命令行參數分析
# 為了集成測試,或者命令行輸入的簡單,這里都有缺省參數
#image 是 images/family.jpg
#detector 是 haarcascade_frontalface_default.xml
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", default='images/family.jpg',
 help="path to the input image")
ap.add_argument("-d", "--detector", default='haarcascade_frontalface_default.xml',
 help="path to Haar cacscade face detector")
args = vars(ap.parse_args())
 導入圖形文件,并灰度處理
# load our image and convert it to grayscale 導入圖形文件,并灰度化
image = cv2.imread(args["image"])
#image =imutils.resize(image,width=800)
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
導入檢測文件,檢測圖中人臉,顯示檢測到的人臉數
# load the face detector and detect faces in the image
# 導入臉部檢測文件
detector = cv2.CascadeClassifier(args["detector"])
#檢測圖形中的臉部
rects = detector.detectMultiScale(gray, scaleFactor=1.05, minNeighbors=9,
 minSize=(40, 40), flags=cv2.CASCADE_SCALE_IMAGE)
#顯示檢測到的人臉數目
print("[INFO] detected {} faces".format(len(rects)))
 循環,繪圖每個檢測到的人臉框,并圖形顯示
# load the face detector and detect faces in the image
# 導入臉部檢測
detector = cv2.CascadeClassifier(args["detector"])
#檢測圖形中的臉部
rects = detector.detectMultiScale(gray, scaleFactor=1.05, minNeighbors=9,
 minSize=(40, 40), flags=cv2.CASCADE_SCALE_IMAGE)
#顯示檢測到的人臉數目
print("[INFO] detected {} faces".format(len(rects)))

最后串接所有代碼如下:

# USAGE 使用方法是:
# python detect_faces.py --image images/family.jpg \
# --detector haarcascade_frontalface_default.xml
# import the necessary packages 輸入包
# import imutils 如果需要成比例縮放圖形才需要,這里不需要
import argparse
import cv2
# construct the argument parser and parse the arguments //構造命令行參數分析
# 為了集成測試,或者命令行輸入的簡單,這里都有缺省參數
#image 是 images/family.jpg
#detector 是 haarcascade_frontalface_default.xml
ap = argparse.ArgumentParser()
ap.add_argument("-i", "--image", default='images/family.jpg',
 help="path to the input image")
ap.add_argument("-d", "--detector", default='haarcascade_frontalface_default.xml',
 help="path to Haar cacscade face detector")
args = vars(ap.parse_args())
# load our image and convert it to grayscale 導入圖形文件,并灰度化
image = cv2.imread(args["image"])
#image =imutils.resize(image,width=800)
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# load the face detector and detect faces in the image
# 導入臉部檢測文件
detector = cv2.CascadeClassifier(args["detector"])
#檢測圖形中的臉部
rects = detector.detectMultiScale(gray, scaleFactor=1.05, minNeighbors=9,
 minSize=(40, 40), flags=cv2.CASCADE_SCALE_IMAGE)
#顯示檢測到的人臉數目
print("[INFO] detected {} faces".format(len(rects)))
# loop over the bounding boxes and draw a rectangle around each face
# 循環rects,繪圖每個檢測到的人臉框
for (x, y, w, h) in rects:
 cv2.rectangle(image, (x, y), (x + w, y + h), (0, 255, 0), 2)
# show the detected faces
cv2.imshow("Faces", image)
cv2.waitKey(0)

看完上述內容,你們掌握怎么在Python中使用opencv 實現人臉檢測功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

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

AI

巴马| 泾阳县| 西藏| 尼勒克县| 沙雅县| 大埔县| 莒南县| 翁牛特旗| 九龙坡区| 游戏| 信丰县| 大安市| 互助| 穆棱市| 古浪县| 翁源县| 吉首市| 潼关县| 黑山县| 沾化县| 仪征市| 五莲县| 乳山市| 团风县| 无棣县| 长泰县| 平顶山市| 鄯善县| 肃宁县| 赤峰市| 霍林郭勒市| 中方县| 从化市| 大悟县| 兖州市| 抚州市| 哈尔滨市| 留坝县| 宜春市| 铜山县| 新干县|