赞
踩
各位兄弟节日快乐!
分享一个小代码,用于提取大疆无人机拍摄图片中的经纬度信息。
# 灵感来源:
python读取大疆P1相机POS_从相片中提取pos-CSDN博客
# 实现思路,Pillow库里面有方法可以直接获取到图片的EXIF(Exchangeable image file format)数据。具体代码如下:
- from PIL import Image
- from PIL.ExifTags import TAGS, GPSTAGS
-
- def get_exif_data(image_path):
- image = Image.open(image_path)
- exif_data = image._getexif()
- if exif_data is not None:
- for tag, value in exif_data.items():
- tag_name = TAGS.get(tag, tag)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。