Hi I am applying normalization to SceneNet Dataset https://robotvault.bitbucket.io/scenenet-rgbd.html
Like this:
transform = transforms.Compose([transforms.Resize((192, 256)),
transforms.ToTensor(),
transforms.Normalize(mean=[0.4451, 0.4262, 0.3959],
std=[0.2411, 0.2403, 0.2466])])
and I am getting images like this one.
To calculate the mean and std per channel I used the function “online_mean_and_sd” from here: About Normalization using pre-trained vgg16 networks
is the normalization process correct?