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

溫馨提示×

溫馨提示×

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

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

Python怎么實現識別圖片中的所有人臉并顯示出來

發布時間:2021-08-30 23:31:22 來源:億速云 閱讀:138 作者:chen 欄目:編程語言

本篇內容介紹了“Python怎么實現識別圖片中的所有人臉并顯示出來”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

 使用Python3實現識別圖片中的所有人臉并顯示出來,代碼如下:

# -*- coding: utf-8 -*-  #  識別圖片中的所有人臉并顯示出來  # filename : find_faces_in_picture.py  from PIL import Image  import face_recognition  # 將jpg文件加載到numpy 數組中  image = face_recognition.load_image_file("linuxidc.com.jpg")  # 使用默認的給予HOG模型查找圖像中所有人臉  # 這個方法已經相當準確了,但還是不如CNN模型那么準確,因為沒有使用GPU加速  # 另請參見: find_faces_in_picture_cnn.py  face_locations = face_recognition.face_locations(image)  # 使用CNN模型  # face_locations = face_recognition.face_locations(image, number_of_times_to_upsample=0, model="cnn")  # 打印:我從圖片中找到了 多少 張人臉  print("I found {} face(s) in this photograph.".format(len(face_locations)))  # 循環找到的所有人臉  for face_location in face_locations:          # 打印每張臉的位置信息          top, right, bottom, left = face_location          print("A face is located at pixel location Top: {}, Left: {}, Bottom: {}, Right: {}".format(top, left, bottom, right))  # 指定人臉的位置信息,然后顯示人臉圖片          face_image = image[top:bottom, left:right]          pil_image = Image.fromarray(face_image)          pil_image.show()
# 或者執行python文件  $ python3 www.linuxidc.com.py

從圖片中識別出10張人臉,并顯示出來。

I found 10 face(s) in this photograph.  A face is located at pixel location Top: 445, Left: 1867, Bottom: 534, Right: 1957  A face is located at pixel location Top: 544, Left: 643, Bottom: 619, Right: 718  A face is located at pixel location Top: 478, Left: 1647, Bottom: 553, Right: 1722  A face is located at pixel location Top: 504, Left: 126, Bottom: 594, Right: 215  A face is located at pixel location Top: 536, Left: 395, Bottom: 611, Right: 469  A face is located at pixel location Top: 544, Left: 1042, Bottom: 619, Right: 1116  A face is located at pixel location Top: 553, Left: 818, Bottom: 627, Right: 892  A face is located at pixel location Top: 511, Left: 1431, Bottom: 586, Right: 1506  A face is located at pixel location Top: 564, Left: 1227, Bottom: 626, Right: 1289  A face is located at pixel location Top: 965, Left: 498, Bottom: 1017, Right: 550

如下圖:

Python怎么實現識別圖片中的所有人臉并顯示出來

“Python怎么實現識別圖片中的所有人臉并顯示出來”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

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

AI

巴东县| 莎车县| 邓州市| 宜阳县| 大足县| 潼南县| 淮安市| 资溪县| 卢湾区| 都昌县| 稷山县| 铜川市| 珠海市| 柏乡县| 清镇市| 长治县| 彭山县| 融水| 乐陵市| 凉山| 湖州市| 丹巴县| 集安市| 南昌市| 莱西市| 元谋县| 尼玛县| 三原县| 卓尼县| 吉隆县| 双柏县| 安岳县| 黎平县| 邛崃市| 光山县| 安乡县| 定远县| 瓦房店市| 黑山县| 台南市| 社会|