mirror of
https://github.com/option8/flyover.git
synced 2025-03-13 18:30:20 +00:00
added python script
python script to convert image data to height/color data
This commit is contained in:
parent
fdd0087417
commit
96240f6677
27
canyon.py
Normal file
27
canyon.py
Normal file
@ -0,0 +1,27 @@
|
||||
import sys
|
||||
import cv2
|
||||
import struct
|
||||
import time
|
||||
import shutil
|
||||
import subprocess
|
||||
|
||||
count = 0
|
||||
|
||||
height = open("canyon-120-px-4bit-height.hex","rb")
|
||||
color = open("canyon-120-px-4bit-color.hex","rb")
|
||||
file = open("CANYONDATA","wb")
|
||||
|
||||
heightbyte = bytearray(height.read(1))
|
||||
colorbyte = bytearray(color.read(1))
|
||||
|
||||
while heightbyte:
|
||||
byte = int(heightbyte[0]) + int(colorbyte[0])
|
||||
packedbyte = struct.pack("B", byte)
|
||||
file.write(packedbyte)
|
||||
|
||||
colorbyte = bytearray(color.read(1))
|
||||
heightbyte = bytearray(height.read(1))
|
||||
|
||||
height.close()
|
||||
color.close()
|
||||
file.close()
|
Loading…
x
Reference in New Issue
Block a user