Hi I am applying normalization to SceneNet Dataset SceneNet RGB-D: Photorealistic Rendering of 5M Images with Perfect Ground Truth
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 - #18 by amit_js
is the normalization process correct?