Create main.py

This commit is contained in:
mathur04
2024-04-09 13:57:29 +02:00
committed by GitHub
parent 40f8978a39
commit 3c30c1e571

28
visu/main.py Normal file
View File

@ -0,0 +1,28 @@
# This is a sample Python script.
# Press ⌃R to execute it or replace it with your code.
# Press Double ⇧ to search everywhere for classes, files, tool windows, actions, and settings.
from util import *
import plotly.graph_objects as go
liste: list[int] = np.zeros(50)
Bscan: list[int] = []
Cscan: list[int] = []
interfaces: list[int] = [10]
amplitudes: list[int] = [255]
profondeur: list[int] = [20]
position_debut: list[int] = [0]
position_fin: list[int] = [50]
trainee: [int] = 2
if __name__ == '__main__':
main_func(liste, interfaces, amplitudes, profondeur, position_debut, position_fin, trainee)