-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathscannSetup.py
51 lines (42 loc) · 902 Bytes
/
scannSetup.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
43
44
45
46
47
48
49
50
51
# Filename : scanSetup.py
#-----------------------------------
## simple 3d scanner - octopusengine.eu
## 2016/05 - external setup file
##----------------------------------
global dayLight,lightObject,brownObject,blueObject
#--- camera selection:
piCamera=1 #ok-beta
webCamera=0 #alpha-testing
mobilCamera=0 #no
#--- experimental light and object setup:
dayLight=1
lightObject=1
brownObject=0
blueObject=0
#--- filters
filter13=1 #ok-beta
filter15=1 #ok-beta
filter29=1 #alpha
## ----------------------------
##hard experiments
if dayLight:
fR=60 #64 #50
fG=64
fB=64
else:
fR=90
fG=50
fB=50
if brownObject:
fR=70 #64
fG=50
fB=64
if blueObject:
fR=16 #64
fG=160
fB=160
#if lightObject:
# fR=150 #64
# fG=64
# fB=64
#---end---