Skip to content

Latest commit

 

History

History
62 lines (43 loc) · 1.57 KB

README.md

File metadata and controls

62 lines (43 loc) · 1.57 KB

Visu

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

screeCapture

It can open .spe .SPE, .sif and .TIFF files

https://github.com/julienGautier77/visu

Requirements

Installation

Usage

to use as it:

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_()

To insert in a code

visu is a QtWidgets it can be use like a widget :
from PyQt6.QtWidgets import QApplication,QWidget
widgetVisu=visu.visual.SEE()