main.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. from file_util import *
  2. from db_util import getDiffEwkt
  3. from img_util import savePng
  4. from img_util import saveImage
  5. from img_util import getImageSize
  6. import re
  7. # 1.获取图斑的根目录
  8. dirs = getDirList('img', '2023_1023')
  9. for dir in dirs:
  10. print('图斑根目录:'+dir)
  11. # 2.获取tif路径
  12. allPathList = getAllFiles(dir+'/QDOM')
  13. print('tif路径长度:'+allPathList.__len__().__str__())
  14. for filePath in allPathList:
  15. print('tif路径:'+filePath)
  16. imageSize=getImageSize(filePath)
  17. size0=imageSize[0]
  18. size1=imageSize[1]
  19. # if not(imageSize[0] ==256 and imageSize[1] == 256):
  20. # print('图片尺寸不是256:',imageSize)
  21. # continue
  22. # 3.获取tif的边界矢量范围
  23. ewkt = getTifEwkt(filePath)
  24. # 4.tif边界-变化矢量(生成图片的黑色部分)
  25. fileType=filePath.split('.')[-1]
  26. match = re.search(r'/QDOM/(.*)\.'+fileType, filePath)
  27. code = match.group(1) if match else ''
  28. tbName=dir.replace('img/','')
  29. ewkt = getDiffEwkt(ewkt, tbName)
  30. # 5.生成变化的图片
  31. savePng(code, ewkt, 'img/lable',size0,size1)
  32. # 6.tif转png
  33. saveImage(filePath,'img/A/'+code+'.'+fileType)
  34. filePath=filePath.replace('/QDOM/','/DDOM_QDOM_crop1/')
  35. filePath=filePath.replace('QDOM.','DDOM.')
  36. saveImage(filePath,'img/B/'+code+'.'+fileType)
  37. print('end')