diff options
Diffstat (limited to 'utils/raspberrypi/ctt/ctt_geq.py')
-rw-r--r-- | utils/raspberrypi/ctt/ctt_geq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/raspberrypi/ctt/ctt_geq.py b/utils/raspberrypi/ctt/ctt_geq.py index f8395e43..17598640 100644 --- a/utils/raspberrypi/ctt/ctt_geq.py +++ b/utils/raspberrypi/ctt/ctt_geq.py @@ -20,7 +20,7 @@ def geq_fit(Cam, plot): Fits geq model by looking at difference between greens in macbeth patches """ - geqs = np.array([ geq(Cam, Img)*Img.againQ8_norm for Img in imgs ]) + geqs = np.array([geq(Cam, Img)*Img.againQ8_norm for Img in imgs]) Cam.log += '\nProcessed all images' geqs = geqs.reshape((-1, 2)) """ |