celsius - kelvin fix
This commit is contained in:
parent
7cd9299181
commit
c7a28047a1
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ rangeTi = int(round(np.sqrt(resolution),0))
|
|||
cqMax = float(input("camera max cq (default = 1.8e5): ") or 1.8e5)
|
||||
cqMin = float(input("pixel surface (default = 10% of cqMax): ") or cqMax*0.1)
|
||||
|
||||
Tmin = float(input("min temp° (°C) (default = 500): ") or 500)
|
||||
Tmax = float(input("max temp° (°C) (default = 1500): ") or 1500)
|
||||
Tmin = float(input("min temp° (°C) (default = 500): ") or 500)+273 #for Kelvin
|
||||
Tmax = float(input("max temp° (°C) (default = 1500): ") or 1500)+273 #for Kelvin
|
||||
Timin = float(input("min exposure time (µs) (default = 5): ") or 5)
|
||||
Timax = float(input("max exposure time (µs) (default = 50): ") or 50)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue