赞
踩
""" 模块:python3 MAKE_VTOUR_NORMAL_droplet.py 功能: 1.python3 调用 krpano 生成全景照片 html。 2.给 tour.xml 添加热点箭头。 参考:https://www.oschina.net/question/96457_54955 命令行调用示例: python MAKE_VTOUR_NORMAL_droplet.py F:\Gaoshengjie\LongGeTasks\streetView\output\waihuanlu 参数1,此脚本;参数2,待处理的全景照片路径。 知识点: os.system 知识点.txt """ import os import sys import streetViewLib as svl if __name__ == "__main__": if len(sys.argv) > 1: # imgDirPath,krpano 要处理的照片目录。 imgDirPath = sys.argv[1] # imgDirPath: F:\Gaoshengjie\LongGeTasks\streetView\output\waihuanlu krpanoParams = svl.getKrpanoParams(svl.getImgFilepathsOfDirectory(imgDirPath)) # krpano (照片批处理文件的)相对路径。 krpanoRelPath = r"krpanodew\krpano\krpano-1.19-pr13\MAKE_VTOUR_NORMAL_droplet.bat" # krpano 的绝对路径。 krpanoAbsPath = os.path.join(os.getcwd(), krpanoRelPath).replace("\\", "/") svl.MAKE_VTOUR_NORMAL_droplet(krpanoAbsPath, krpanoParams) xmlPath = os.path.join(imgDirPath, r"vtour\tour.xml") svl.addHotSpot(xmlPath) print("done!") else: print("请输入 照片目录。")
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。