diff --git a/aion/codecs/preprocessing/image.py b/aion/codecs/preprocessing/image.py index e5e2e73..f8b1f17 100644 --- a/aion/codecs/preprocessing/image.py +++ b/aion/codecs/preprocessing/image.py @@ -102,6 +102,6 @@ def forward(self, image, survey): return image def backward(self, image, survey): - zpscale = self._reverse_zeropoint(27.0) if survey == "HSC" else 1.0 + zpscale = self.reverse_zeropoint(27.0) if survey == "HSC" else 1.0 image *= zpscale return image