summaryrefslogtreecommitdiff
path: root/utils/raspberrypi/ctt/ctt_image_load.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/raspberrypi/ctt/ctt_image_load.py')
-rw-r--r--utils/raspberrypi/ctt/ctt_image_load.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/utils/raspberrypi/ctt/ctt_image_load.py b/utils/raspberrypi/ctt/ctt_image_load.py
index 584e0f8e..38026c7a 100644
--- a/utils/raspberrypi/ctt/ctt_image_load.py
+++ b/utils/raspberrypi/ctt/ctt_image_load.py
@@ -45,11 +45,11 @@ class Image:
Channel order depending on bayer pattern
"""
bayer_case = {
- 0: (0, 1, 2, 3), #red
- 1: (2, 0, 3, 1), #green next to red
- 2: (3, 2, 1, 0), #green next to blue
- 3: (1, 0, 3, 2), #blue
- 128: (0, 1, 2, 3) #arbitrary order for greyscale casw
+ 0: (0, 1, 2, 3), # red
+ 1: (2, 0, 3, 1), # green next to red
+ 2: (3, 2, 1, 0), # green next to blue
+ 3: (1, 0, 3, 2), # blue
+ 128: (0, 1, 2, 3) # arbitrary order for greyscale casw
}
self.order = bayer_case[self.pattern]