-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
42 lines (35 loc) · 1.25 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#Setup of the machine
length = 200.0 #Length of the plate
front = 70.0 #Distance from the spot to the front
X_offset = 20.9 #Distance from the left of the plate, to the center of the first spot
Y_offset = 8.0 #Distance from the bottom of the plate, to the center of the spots
inter_spot_dist = 11.3 #Distance between two spot centers
# Names of the products. They should be in the same order as deposited on the plate. One of them MUST be an empty string.
# It indicates the place of the empty track that will be used to remove the background.
names = ['sample_0',
'sample_1',
'sample_2',
'sample_3',
'sample_4',
'sample_5',
'sample_6',
'',
'sample_8',
'sample_9',
'sample_10',
'sample_11',
'sample_12',
'sample_13',
'sample_14']
# Path to the image (must leave the r before the string if using Windows path)
path = r'C:\Users\Haris\Desktop\HPTLC_extractor\Images\LPDS_visible.png'
# Scientific variables
# Eluant to choose among: ['LPDS', 'MPDS', 'HPDS']
eluant = 'LPDS'
# Observing setup to choose among: ['254nm', '366nm', 'visible', 'developer']
observation = 'visible'
# Curve visualization, i.e. using show_curve()
#NB: A list of files can be input for multiple visualization at once
show = []
compute_distances = ["sample_2", "sample_3"]
show_n_best = 5