Q: image processing
Hello everybody. I have a small question concerning image processing in c#. Straight to the point:
Let's say I have a picture box with size 640x480...After that I load an image file in it(same size)...
What I want to do is to "slice" the image into regions. Let's say 50 pieces along the width(this 50 is a user input parameter). I know that the height of each small region is determined by the ration of width to height...After "slicing" the image into small regions I want to be able to get the average color value of each region(average for the red, green and blue), and to display them somewhere(let's say listbox)....
Can you guys help me achieve this....any help would be greatly appreciated!
PS: If there is something not clear about my idea please tell me to explain!

