Add files via upload

This commit is contained in:
yalmansour1998
2024-04-04 21:59:13 +02:00
committed by GitHub
parent daeeb4feb3
commit a6746028b6
2 changed files with 160 additions and 0 deletions

29
main.py Normal file
View File

@ -0,0 +1,29 @@
# 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 *
liste: list[int] = np.zeros(1000)
Bscan: list[int] = []
Cscan: list[int] = []
interfaces: list[int] = [0, 800, 300]
amplitudes: list[int] = [255, 255, 255]
profondeur: list[int] = [200, 200, 400]
position_debut: list[int] = [0, 0, 480]
position_fin: list[int] = [1000, 1000, 520]
trainee: [int] = 120
#np.load('3D_Dataset_Long_Wave_Rot00.npy')
if __name__ == '__main__':
main_func(liste, interfaces, amplitudes, profondeur, position_debut, position_fin, trainee)