extract features from low resolution
I have medical images and need to extract features from the layer before the classification layer using VGG for example but the resolution of the images is not efficient... Are the features without improving this resolution will not be affected or do I need to improve the resolution before extracting the features?
I was doing processing in color images for extracting the features using VGG by this processing
preprocess = T.Compose([
T.Resize(256, interpolation=3),
T.CenterCrop(224),
T.ToTensor(),
T.Normalize((0.485, 0.456, 0.406), (0.229, 0.224, 0.225)),
])
image= load_img(aa.jpg, target_size=(224, 224,3))
proc=preprocess(image)
what if the images I have are grayscale or blur will this processing be suitable for them or do I need to change?
Topic vgg16 deep-learning feature-extraction
Category Data Science
