JCruan519 / VM-UNet

(ARXIV24) This is the official code repository for "VM-UNet: Vision Mamba UNet for Medical Image Segmentation".
Apache License 2.0
393 stars 12 forks source link

how to get 'mean' and 'std' of isic18? #64

Open DumbGuy-AI opened 3 weeks ago

DumbGuy-AI commented 3 weeks ago

class myNormalize: def init(self, data_name, train=True): if data_name == 'isic18': if train: self.mean = 157.561 self.std = 26.706 else: self.mean = 149.034 self.std = 32.022 I wonder to konw how to calculate maen and std with specific code.I need some help,plz.