summaryrefslogtreecommitdiffstats
path: root/rasodmg/test/tomo_select.ql
blob: 7584f1200c0782a17bebd36756f7d48f03a23a1c (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// This test evaluates different selectivities in tomo stored both
// in slices and cubes.

// sliced, selectivity 0,5%

select img[0:43,0:43,0:25]
from tomo_sliced as img

// sliced, selectivity 1%

select img[0:55,0:55,0:32]
from tomo_sliced as img

// sliced, selectivity 2%

select img[0:68,0:68,0:41]
from tomo_sliced as img

// sliced, selectivity 5%

select img[0:91,0:91,0:54]
from tomo_sliced as img

// sliced, selectivity 10%

select img[0:117,0:117,0:69]
from tomo_sliced as img

// sliced, selectivity 50%

select img[0:201,0:201,0:121]
from tomo_sliced as img

// sliced, selectivity 100%

select img[0:255,0:255,0:153]
from tomo_sliced as img

// cubed, selectivity 0,5%

select img[0:43,0:43,0:25]
from tomo_cubed as img

// cubed, selectivity 1%

select img[0:55,0:55,0:32]
from tomo_cubed as img

// cubed, selectivity 2%

select img[0:68,0:68,0:41]
from tomo_cubed as img

// cubed, selectivity 5%

select img[0:91,0:91,0:54]
from tomo_cubed as img

// cubed, selectivity 10%

select img[0:117,0:117,0:69]
from tomo_cubed as img

// cubed, selectivity 50%

select img[0:201,0:201,0:121]
from tomo_cubed as img

// cubed, selectivity 100%

select img[0:255,0:255,0:153]
from tomo_cubed as img