def compute_all(self, median_filter_size):
disk_size = median_filter_size / 2 # From diameter to radius
for ch in range(len(self.channels)):
self.illum_corr_func[:, :, ch] = self.channel_function(self.stats["mean_image"][:, :, ch], disk_size)
# TODO: Is image a uint16 or float32/64? What is its data type?
# TODO: Update the test as appropriate.
# Not being used? Not needed?
评论列表
文章目录