Remove unnecessary spaces

Thanks to:

```bash
sed -i 's/^ *$//g' extract_noise.py
```
This commit is contained in:
Benjamin Loison 2024-04-17 14:32:55 +02:00
parent 3760164622
commit f4d8c028b2
No known key found for this signature in database

View File

@ -56,13 +56,13 @@ def treatImage(imageFileName, computeExtremes = False):
# RG
# GB
rawImageVisible = raw.raw_image_visible.copy()
redRawImageVisible = rawImageVisible[::2, ::2]
greenRightRawImageVisible = rawImageVisible[::2, 1::2]
greenBottomRawImageVisible = rawImageVisible[1::2, ::2]
blueRawImageVisible = rawImageVisible[1::2, 1::2]
# Actual color to estimate the PRNU with.
colorRawImageVisible = greenBottomRawImageVisible
if computeExtremes: