I need to:
- open an image
- divide it into a N x N grid
- then divide the Hue, Saturation and Value channels into bands of equal size
- then do various computations with them (but what matters is how to divide the image and then divide the channels).
Is there a way to do this without any additional frameworks/libraries (in C#)?
This is going to be a simple console application, which generates a feature vector from images, that will be used for training my SVM later.