bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Python中怎么檢測人臉特征

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

創新互聯公司主營七臺河網站建設的網絡公司,主營網站建設方案,重慶App定制開發,七臺河h5微信平臺小程序開發搭建,七臺河網站營銷推廣歡迎七臺河等地區企業咨詢

安裝要求

與往常一樣,本文將用代碼演示示例,并將逐步指導你實現一個完整的人臉特征識別示例。但是在開始之前,你需要啟動一個新的Python項目并安裝3個不同的庫:

  • opencv python

  • dlib

如果像我一樣使用pipenv,可以使用以下命令安裝所有這些文件:

pipenv install opencv-python, dlib

如果你使用的是Mac和某些版本的Linux,則在安裝dlib時可能會遇到一些問題,如果在安裝過程中遇到編譯錯誤,請確保檢查使用的CMake庫版本。在Mac中,確保你有可用的CMake,并且可以使用正確的版本運行:

brew install cmake

對于其他操作系統,請在線檢查以獲得特定支持。

步驟1:載入并顯示圖片

我們將從小處著手并以代碼為基礎,直到有一個可以正常工作的示例為止。

通常,我喜歡使用繪圖來渲染圖像,但是由于我們在稍后的文章中準備了一些很酷的東西,因此我們將做一些不同的事情,并且將創建一個窗口來展示我們的工作結果。

讓我們一起看看代碼吧!

import cv2
# read the image
img = cv2.imread("face.jpg")
# show the image
cv2.imshow(winname="Face", mat=img)
# Wait for a key press to exit
cv2.waitKey(delay=0)
# Close all windows
cv2.destroyAllWindows()

很簡單,對吧?我們只是用imread加載圖像,然后告訴OpenCV在winname中顯示圖像,這將打開窗口并給它一個標題。

之后,我們需要暫停執行,因為當腳本停止時,窗口會被破壞,所以我們使用cv2.waitKey來保持窗口,直到按下某個鍵,然后銷毀窗口并退出腳本。

如果使用代碼并在代碼目錄中添加了一個名為face.jpg的圖像,你應該得到如下內容:

原始圖像:

Python中怎么檢測人臉特征

步驟2:人臉識別

到目前為止,我們還沒有對圖像做任何處理,只是把它呈現在一個窗口中,非常無聊,但是現在我們將開始編碼好的內容,我們將從識別圖像中哪里有一張臉開始。

為此,我們將使用名為get_frontial_face_detector()的Dlib函數,非常直觀。但是有一個警告,這個函數只適用于灰度圖像,所以我們必須首先使用OpenCV。

get_frontial_face_detector()將返回一個檢測器,該檢測器是一個我們可以用來檢索人臉信息的函數。每個面都是一個對象,其中包含可以找到圖像的點。

但我們最好在代碼上看看:

import cv2
import dlib
# Load the detector
detector = dlib.get_frontal_face_detector()
# read the image
img = cv2.imread("face.jpg")
# Convert image into grayscale
gray = cv2.cvtColor(src=img, code=cv2.COLOR_BGR2GRAY)
# Use detector to find landmarks
faces = detector(gray)
for face in faces:
    x1 = face.left() # left point
    y1 = face.top() # top point
    x2 = face.right() # right point
    y2 = face.bottom() # bottom point
    # Draw a rectangle
    cv2.rectangle(img=img, pt1=(x1, y1), pt2=(x2, y2), color=(0, 255, 0), thickness=4)
# show the image
cv2.imshow(winname="Face", mat=img)
# Wait for a key press to exit
cv2.waitKey(delay=0)
# Close all windows
cv2.destroyAllWindows()

上面的代碼將從圖像中檢索所有面部,并在每個面部上渲染一個矩形,從而產生如下圖像:

Python中怎么檢測人臉特征

到目前為止,我們在發現人臉方面做得很好,但是我們仍然需要一些工作來提取所有特征(地標)。接下來讓我們開始吧。

步驟3:識別人臉特征

你喜歡魔術嗎?到目前為止,DLib的工作方式相當神奇,只需幾行代碼我們就可以實現很多,而現在我們遇到了一個全新的問題,它還會繼續這么簡單嗎?

回答是肯定的!原來DLib提供了一個名為shape_predictor()的函數,它將為我們提供所有的魔法,但是需要一個預先訓練的模型才能工作。

有幾種模型可以與shape_predictor一起工作,我正在使用的模型可以在這里下載,也可以嘗試其他模型。

讓我們看看新代碼現在是什么樣子

import cv2
import dlib
# Load the detector
detector = dlib.get_frontal_face_detector()
# Load the predictor
predictor = dlib.shape_predictor("shape_predictor_68_face_landmarks.dat")
# read the image
img = cv2.imread("face.jpg")
# Convert image into grayscale
gray = cv2.cvtColor(src=img, code=cv2.COLOR_BGR2GRAY)
# Use detector to find landmarks
faces = detector(gray)
for face in faces:
    x1 = face.left() # left point
    y1 = face.top() # top point
    x2 = face.right() # right point
    y2 = face.bottom() # bottom point
    # Look for the landmarks
    landmarks = predictor(image=gray, box=face)
    x = landmarks.part(27).x
    y = landmarks.part(27).y
    # Draw a circle
    cv2.circle(img=img, center=(x, y), radius=5, color=(0, 255, 0), thickness=-1)
# show the image
cv2.imshow(winname="Face", mat=img)
# Wait for a key press to exit
cv2.waitKey(delay=0)
# Close all windows
cv2.destroyAllWindows()

像以前一樣,我們總是在同一個代碼上構建代碼,現在使用我們的預測函數為每個人臉找到地標。現在我還在做一些奇怪的事情,比如27號在那里做什么?

landmarks = predictor(image=gray, box=face)
x = landmarks.part(27).x
y = landmarks.part(27).y

我們的預測函數將返回一個包含所有68個點的對象,根據我們之前看到的圖片,如果你注意到的話,會發現點27正好在眼睛之間,所以如果所有的計算正確,你應該看到一個綠點在眼睛之間,如下圖所示:

Python中怎么檢測人臉特征

我們已經很接近了,現在讓我們渲染所有的點,而不是只渲染一個:

import cv2
import numpy as np
import dlib
# Load the detector
detector = dlib.get_frontal_face_detector()
# Load the predictor
predictor = dlib.shape_predictor("shape_predictor_68_face_landmarks.dat")
# read the image
img = cv2.imread("face.jpg")
# Convert image into grayscale
gray = cv2.cvtColor(src=img, code=cv2.COLOR_BGR2GRAY)
# Use detector to find landmarks
faces = detector(gray)
for face in faces:
    x1 = face.left() # left point
    y1 = face.top() # top point
    x2 = face.right() # right point
    y2 = face.bottom() # bottom point
    # Create landmark object
    landmarks = predictor(image=gray, box=face)
    # Loop through all the points
    for n in range(0, 68):
        x = landmarks.part(n).x
        y = landmarks.part(n).y
        # Draw a circle
        cv2.circle(img=img, center=(x, y), radius=3, color=(0, 255, 0), thickness=-1)
# show the image
cv2.imshow(winname="Face", mat=img)
# Delay between every fram
cv2.waitKey(delay=0)
# Close all windows
cv2.destroyAllWindows()

Python中怎么檢測人臉特征

但是如果你對所有的點都不感興趣呢?實際上,你可以調整你的范圍間隔來獲得上面術語表中指定的任何特征,就像我在這里做的那樣:

Python中怎么檢測人臉特征

太棒了,但我們能做點更酷的事嗎?

步驟4:實時檢測

是的,你沒看錯!這可能就是你想要的效果!下一步是連接我們的網絡攝像頭,從你的視頻流中進行實時地標識別。

你可以通過使用相機遍歷視頻幀或使用視頻文件來對面部進行實時面部地標檢測。

如果要使用自己的攝像機,請參考以下代碼,如果使用的是視頻文件,請確保將數字0更改為視頻路徑。

如果要結束窗口,請按鍵盤上的ESC鍵:

import cv2
import dlib

# Load the detector
detector = dlib.get_frontal_face_detector()

# Load the predictor
predictor = dlib.shape_predictor("shape_predictor_68_face_landmarks.dat")

# read the image
cap = cv2.VideoCapture(0)

while True:
    _, frame = cap.read()
    # Convert image into grayscale
    gray = cv2.cvtColor(src=frame, code=cv2.COLOR_BGR2GRAY)

    # Use detector to find landmarks
    faces = detector(gray)

    for face in faces:
        x1 = face.left()  # left point
        y1 = face.top()  # top point
        x2 = face.right()  # right point
        y2 = face.bottom()  # bottom point

        # Create landmark object
        landmarks = predictor(image=gray, box=face)

        # Loop through all the points
        for n in range(0, 68):
            x = landmarks.part(n).x
            y = landmarks.part(n).y

            # Draw a circle
            cv2.circle(img=frame, center=(x, y), radius=3, color=(0, 255, 0), thickness=-1)

    # show the image
    cv2.imshow(winname="Face", mat=frame)

    # Exit when escape is pressed
    if cv2.waitKey(delay=1) == 27:
        break

# When everything done, release the video capture and video write objects
cap.release()

# Close all windows
cv2.destroyAllWindows()

看完上述內容,你們掌握Python中怎么檢測人臉特征的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創新互聯行業資訊頻道,感謝各位的閱讀!

網站題目:Python中怎么檢測人臉特征
本文網址:http://vcdvsql.cn/article46/gjjdhg.html

成都網站建設公司_創新互聯,為您提供品牌網站制作ChatGPT企業建站自適應網站網站改版網站設計公司

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

搜索引擎優化