-
Notifications
You must be signed in to change notification settings - Fork 1
/
pixel_flags.py
55 lines (43 loc) · 1.87 KB
/
pixel_flags.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
52
53
54
55
import numpy as np
from python_compat import range
def reverse_dict(d):
return dict((v, k) for k, v in d.items())
class PixelFlags:
def __init__(self):
pass
FlagNames = \
{0: 'NOPLUG', 1: 'BADTRACE', 2: 'BADFLAT', 3: 'BADARC',
4: 'MANYBADCOLUMNS', 5: 'MANYREJECTED', 6: 'LARGESHIFT', 7: 'BADSKYFIBER',
8: 'NEARWHOPPER', 9: 'WHOPPER', 10: 'SMEARIMAGE', 11: 'SMEARHIGHSN',
12: 'SMEARMEDSN', 13: 'UNUSED_13', 14: 'UNUSED_14', 15: 'UNUSED_15',
16: 'NEARBADPIXEL', 17: 'LOWFLAT', 18: 'FULLREJECT', 19: 'PARTIALREJECT',
20: 'SCATTEREDLIGHT', 21: 'CROSSTALK', 22: 'NOSKY', 23: 'BRIGHTSKY',
24: 'NODATA', 25: 'COMBINEREJ', 26: 'BADFLUXFACTOR', 27: 'BADSKYCHI',
28: 'REDMONSTER', 29: 'UNUSED_29', 30: 'UNUSED_30', 31: 'UNUSED_31'}
FlagValues = reverse_dict(FlagNames)
@classmethod
def string_to_int(cls, bit_string):
str_list = bit_string.split('|')
bit_list = [1 << cls.FlagValues[i] for i in str_list]
return np.array(bit_list).sum()
@classmethod
def int_to_string(cls, flags):
bit_string = ''
for i in range(32):
if flags & 1:
if bit_string:
bit_string += '|'
bit_string += (cls.FlagNames[i])
flags >>= 1
return bit_string
class FlagStats:
def __init__(self):
self.flag_count = np.zeros(shape=(32, 2), dtype=np.uint64)
self.pixel_count = np.uint64()
def bit_fraction(self, bit, and_or):
return self.flag_count[bit, and_or] / self.pixel_count
def to_string(self, bit):
return '{bit_number:4}: {bit_name:24}: AND:{and_fraction:8.2%} OR:{or_fraction:8.2%}'.format(
bit_number=bit, bit_name=PixelFlags.FlagNames[bit],
and_fraction=self.bit_fraction(bit, 0),
or_fraction=self.bit_fraction(bit, 1))