This repository has been archived on 2025-11-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ISP/Demosaic/sim/transform/raw_to_image.py
2024-05-14 21:00:19 +08:00

11 lines
222 B
Python

import imageio
import numpy as np
im_width = 512
im_height = 256
if __name__ == '__main__':
raw = np.fromfile('./out.bin', dtype=np.int16)
image = raw.reshape((im_height, im_width))
imageio.imsave("./out.png", image)