-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathview.py
executable file
·61 lines (45 loc) · 1.43 KB
/
view.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python3
# XXX I have not been able to get PyQt6 imported to pylint
# pylint: skip-file
import argparse
import gzip
import sys
import typing
import numpy as np
from PyQt6 import QtWidgets
from pixutils.formats import PixelFormats
from pixutils.conv import buffer_to_bgr888
from pixutils.conv.qt import bgr888_to_pix
def main():
parser = argparse.ArgumentParser()
parser.add_argument('file')
parser.add_argument('width')
parser.add_argument('height')
parser.add_argument('format')
args = parser.parse_args()
format = PixelFormats.find_by_name(args.format)
w = int(args.width)
h = int(args.height)
if args.file == '-':
buf = np.frombuffer(sys.stdin.buffer.read(), dtype=np.uint8)
elif args.file.endswith('.gz'):
with gzip.open(args.file, 'rb') as f:
data = typing.cast(bytes, f.read())
buf = np.frombuffer(data, dtype=np.uint8)
else:
with open(args.file, 'rb') as f:
buf = np.frombuffer(f.read(), dtype=np.uint8)
qapp = QtWidgets.QApplication(sys.argv)
ref = buffer_to_bgr888(format, w, h, 0, buf)
pix = bgr888_to_pix(ref)
widget = QtWidgets.QWidget()
widget.setWindowTitle(format.name)
layout = QtWidgets.QHBoxLayout()
label = QtWidgets.QLabel()
label.setPixmap(pix)
layout.addWidget(label)
widget.setLayout(layout)
widget.show()
qapp.exec()
if __name__ == '__main__':
main()