Skip to content

Commit

Permalink
Fix responding pixel quantification
Browse files Browse the repository at this point in the history
  • Loading branch information
tomelse committed Apr 8, 2024
1 parent 57ef656 commit 1350b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion patato/io/msot_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def get_responding_pixels(self, nsigma=2):
responding = delta_images.raw_data > nsigma * sigma_so2.raw_data
else:
return None
return SingleImage(responding, None, algorithm_id=delta_images.algorithm_id,
return SingleImage(responding, ["Responding Pixels"], algorithm_id=delta_images.algorithm_id,
attributes=delta_images.attributes,
hdf5_sub_name=delta_images.hdf5_sub_name, field_of_view=delta_images.fov_3d)

Expand Down

0 comments on commit 1350b34

Please sign in to comment.