Visu is an user interface library based on pyqtgraph to open and process data image . It can make plot profile and data measurements analysis on live
It can open .spe .SPE, .sif and .TIFF files
https://github.com/julienGautier77/visu
- python 3.x
- Numpy
- matplotlib
- scipy
- PyQt6
- pyqtgraph (https://github.com/pyqtgraph/pyqtgraph.git)
- Pip install pyqtgraph
- qdarkstyle (https://github.com/ColinDuquesnoy/QDarkStyleSheet.git)
- pip install qdarkstyle
- sifread.py
- winspec.py
- from PyPi
- pip install git+https://github.com/julienGautier77/visu
import visu
visu.visual.runVisu()
Or :
from PyQt6.QtWidgets import QApplication
import sys
import qdarkstyle
import visu
appli = QApplication(sys.argv)
e = visu.visual.SEE()
e.show()
appli.exec_()
visu is a QtWidgets it can be use like a widget :
from PyQt6.QtWidgets import QApplication,QWidget
widgetVisu=visu.visual.SEE()