30 lines
687 B
Python
30 lines
687 B
Python
# 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)
|