-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimageView.py
46 lines (34 loc) · 1.35 KB
/
imageView.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
import numpy as np
from PyQt5.QtCore import Qt, QRectF
from PyQt5.QtGui import QPixmap, QImage
from PyQt5.QtWidgets import QGraphicsScene, QGraphicsView
class ImageView(QGraphicsView):
def __init__(self):
super().__init__()
self.__aspectRatioMode = Qt.KeepAspectRatio
self.__gradient_enabled = False
self.__initVal()
def __initVal(self):
self._scene = QGraphicsScene()
self._p = QPixmap()
self._item = ''
def displayPillowImage(self, image):
img_array = np.array(image)
# Convert NumPy array to QImage
if img_array.ndim == 3:
h, w, ch = img_array.shape
bytesPerLine = ch * w
qim = QImage(img_array.data, w, h, bytesPerLine, QImage.Format_RGB888)
else:
raise ValueError("Unsupported image dimension: {}".format(img_array.ndim))
pixmap = QPixmap.fromImage(qim)
self._scene.clear()
self._scene.addPixmap(pixmap)
self._scene.setSceneRect(QRectF(0, 0, pixmap.width(), pixmap.height()))
self.setScene(self._scene)
self.fitInView(self.sceneRect(), self.__aspectRatioMode)
def setAspectRatioMode(self, mode):
self.__aspectRatioMode = mode
def resizeEvent(self, e):
self.fitInView(self.sceneRect(), self.__aspectRatioMode)
return super().resizeEvent(e)