DJI大疆相关开发——获取图片的POS信息

各位兄弟节日快乐!

分享一个小代码,用于提取大疆无人机拍摄图片中的经纬度信息。

# 灵感来源:

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)
       

你可能感兴趣的:(1024程序员节,图像处理)