Rename main.py to gene_cscan/main.py

This commit is contained in:
mathur04
2024-04-10 13:19:43 +02:00
committed by GitHub
parent 8ed35e5c71
commit 3628e23d52

29
gene_cscan/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)