标签: python
是否有人使用Python读取NITF文件格式? NITF文件扩展名称为国家图像传输格式。
Info
Wiki
答案 0 :(得分:4)
有一个python NITF模块。
用法:
from nitf import * fname = 'path/to/file.NTF' handle = IOHandle(fname) reader = Reader() record = reader.read(handle) segment = record.getImages()[0] imReader = reader.newImageReader(0)