溫馨提示×

溫馨提示×

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

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

Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取

發(fā)布時(shí)間:2022-05-30 13:47:38 來源:億速云 閱讀:332 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取”吧!

有很多功能…比如用戶畫像,客戶信息標(biāo)簽設(shè)定等等,用戶喜歡拍攝照片的季節(jié),時(shí)間點(diǎn),所使用的相機(jī)的參數(shù)指標(biāo)可以反應(yīng)出一個(gè)人的金錢狀況,對于其拍攝的內(nèi)容,我們可以通過AI的方式對照片的內(nèi)容信息進(jìn)行提取,從而判斷一個(gè)人的興趣愛好。

Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取

一、利用exifread提取圖片的EXIF信息

exifread介紹:

EXIF信息,是可交換圖像文件的縮寫,是專門為數(shù)碼相機(jī)的照片設(shè)定的,可以記錄數(shù)碼照片的屬性信息和拍攝數(shù)據(jù)。EXIF可以附加于JPEGTIFF、RIFF等文件之中,為其增加有關(guān)數(shù)碼相機(jī)拍攝信息的內(nèi)容和索引圖或圖像處理軟件的版本信息。

首先要安裝ExifRead

pip3 install ExifRead
pic=r'D:\S072003Python\input\test\test.jpg'

import exifread
f = open(pic, 'rb')
tags = exifread.process_file(f)
print(tags) #內(nèi)有相機(jī)型號(hào),拍攝時(shí)間,經(jīng)緯度等

Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取

tags

Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取

print(tags)和tags獲取數(shù)據(jù)的格式不同。

tags['Image ImageWidth']
tags['Image ImageLength']
tags['Image ExifOffset']
tags['Image Orientation']
tags['Image DateTime']
tags['EXIF WhiteBalance']
tags['EXIF ISOSpeedRatings']
tags['EXIF FocalLength']
tags['EXIF Flash']
tags['EXIF LightSource']
exifcolumns=['Image ImageWidth','Image ImageLength','Image ExifOffset','Image Orientation','Image DateTime','EXIF WhiteBalance','EXIF ISOSpeedRatings','EXIF FocalLength','EXIF Flash','EXIF LightSource'] # 把要提取的數(shù)據(jù)都封裝在列表當(dāng)中
for i in range(len(exifcolumns)):
    print(tags[exifcolumns[i]]) # 使用循環(huán)拿到所有的數(shù)據(jù)

Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取

二、循環(huán)遍歷圖片信息

任務(wù):一次性獲得以下圖片的"Image ImageWidth"信息。寫一個(gè)循環(huán)即可:

Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取

import exifread
import os
import pandas as pd 
import glob 
pic_list=glob.glob(r'C:\Users\Lenovo\Pictures\Saved Pictures\*.jpg')  # 如果是png,jpeg,bmp等數(shù)據(jù)格式,如何設(shè)置?

for i in pic_list:
    fr=open(i,'rb')
    tags=exifread.process_file(fr)
    if "Image ImageWidth" in tags:  # 條件判斷,因?yàn)椴⒉皇撬械恼掌加?quot;Image ImageWidth"
        print(tags["Image ImageWidth"])
# 經(jīng)緯度獲取
import exifread
import os
import pandas as pd 
import glob 
pic_list=glob.glob(r'C:\Users\Lenovo\Pictures\Saved Pictures\*.jpg')  

latlonlists=[]
for i in pic_list:
    fr=open(i,'rb')
    tags=exifread.process_file(fr)
    if "GPS GPSLatitude" in tags:  # 條件判斷,因?yàn)椴⒉皇撬械恼掌加?quot;Image ImageWidth"
        # 維度轉(zhuǎn)換
        lat_ref=tags["GPS GPSLatitudeRef"]
        lat=tags["GPS GPSLatitude"].printable[1:-1].replace(" ","").replace("/",",").split(",")
        lat=float(lat[0])+float(lat[1])/60+float(lat[2])/3600
        if lat_ref  in  ["N"]:    # 表示是南半球的數(shù)據(jù)
            lat=lat*(-1)
        # 經(jīng)度轉(zhuǎn)換
        lon_ref=tags["GPS GPSLongitudeRef"]
        lon=tags["GPS GPSLongitude"].printable[1:-1].replace("","").replace("/",",").split(",")
        lon=float(lon[0])+float(lon[1])/60+float(lon[2])/3600
        if lon_ref  in  ["E"]:    # 表示是西半球的數(shù)據(jù)
            lon=lon*(-1)
            
        print("維度:",lat,"經(jīng)度:",lon)
        latlonlist=[lat,lon]
        latlonlists.append(latlonlist)

到此,相信大家對“Python數(shù)據(jù)獲取如何實(shí)現(xiàn)圖片數(shù)據(jù)提取”有了更深的了解,不妨來實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI