Greetings fellow programmers!
I'm doing a computer vision project in my AI class and am looking for some tips.
My task is to read a bitmap into memory and alter that image file and find an object within it. In my case, I'm searching for a box that appears in the picture. For simplicity, the images are only black and white (0-255).
So far, I'm able to read the file into memory and store them into an array for both the header and the image data.
My plan is to convert the data in the array(each array element is the binary representation of one pixel) into integers so I can analyze them. However, I'm not sure how to approach this.
If anyone have any idea how to accomplish this or have other ideas. Please do tell.
Thanks