SMIL 1.1.1
Loading...
Searching...
No Matches
example-readRAW.py
1import smilPython as sp
2
3fname = "imageraw.raw"
4
5type = 'UINT16'
6width = 256
7height = 384
8depth = 512
9
10img = sp.Image(type)
11sp.readRAW(fname, width, height, depth, img)
12