Skip to content

Commit

Permalink
GUI: Deep learning interface
Browse files Browse the repository at this point in the history
Fix variable name for calibration checking

Change-Id: Ib4addd0867a0af3294a8e0632329f8d8a015e4be
  • Loading branch information
dj-acconeer committed Mar 9, 2020
1 parent faf3309 commit af59cb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/ml/feature_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def feature_extraction(self, data):
if self.calibration.shape != fmap.shape:
print("Calibration data not matching feature shape!!!")
print("Calibration: {}".format(self.calibration.shape))
print("Feature map: {}".format(feature_map.shape))
print("Feature map: {}".format(fmap.shape))
self.calibration = None
else:
fmap /= self.calibration
Expand Down

0 comments on commit af59cb1

Please sign in to comment.