From 3c30c1e57106d9ac665713cec012705fc7128f18 Mon Sep 17 00:00:00 2001 From: mathur04 <90455442+mathur04@users.noreply.github.com> Date: Tue, 9 Apr 2024 13:57:29 +0200 Subject: [PATCH] Create main.py --- visu/main.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 visu/main.py diff --git a/visu/main.py b/visu/main.py new file mode 100644 index 0000000..d398e7b --- /dev/null +++ b/visu/main.py @@ -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)