Q1) I want to have features from each pixel in image.
Answer: Image pixels are generally highly coorelated and it is almost never useful to have feature from each pixel, thus one important way to see pooing is along with compensating for the zitter it picks only one pixel of highly correlated spatial lot. But that being said it is not necessary at all.
Q2: Will there be useful information in these feature vectors?
Answer: We generally make Height and Width of image smaller down the layers and increase the channels, the reasoning being the bigger the Height x Width as output of a layer the more explicit the spatial information would be. Thus making the output of each layer deeper in the channel but smaller in size makes it to loose spatial information and have more semantically appropriate encoding independent of position. like identifying whether an image has cat should not depend on where is the cat or the size of cat. But presence of the features of cat like the pattern of ear, color patterns, fur etc.
But you can do this same sampling of less correlated pixels by convolution by a stride > 1.
Our main idea is to have same information flow through to the network that I is being contained in the image but have smaller size deeper representations.
Also the application makes lot of difference, like denoising needs you to construct the image exactly and thus you are limited to how small you can become as you have to reconstruct.
Classification flattens the image map, and thus there are separate considerations.
Also note the amount of information in an image map throughout the CNN ican be preserved as that can be (HxWxchannels) and you can keep the product same while decreasing/increasing the multiplicants.
the last line, get feature vectors of individual pixels does not appeal much sense to me. Pixels are themselves some low level features and in general we are interested to get high level features of a collection of pixels. If you wan to preserve pixel-fetures better just use the pixel values. Or am I missing something?