개요
2byte word 바이너리 로우데이터를 읽는 방법에 대한 메모
내용
import numpy as np
read_size = width * height
with open(file_name, 'rb') as f :
rawData = np.fromfile(f, dtype=np.uint16, count=read_size)
rawData = rawData.reshape(height, -1)
개요
2byte word 바이너리 로우데이터를 읽는 방법에 대한 메모
내용
import numpy as np
read_size = width * height
with open(file_name, 'rb') as f :
rawData = np.fromfile(f, dtype=np.uint16, count=read_size)
rawData = rawData.reshape(height, -1)