16 lines
315 B
Python
16 lines
315 B
Python
![]() |
import numpy as np
|
||
|
import pyqtgraph
|
||
|
from PyQt5 import QtWidgets
|
||
|
from PyQt5.QtWidgets import QLabel
|
||
|
|
||
|
|
||
|
class WidgetStatic(QtWidgets.QWidget):
|
||
|
labels = list()
|
||
|
|
||
|
def __init__(self, parent=None):
|
||
|
super(WidgetStatic, self).__init__(parent)
|
||
|
|
||
|
self.frame = 0
|
||
|
|
||
|
layout = QtWidgets.QGridLayout()
|