You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 14, 2023. It is now read-only.
I am working on an image recognition project on Arduino. Pretty much it is a robot and as it walks around it identifies things. I want to eliminate the use of an SD card for the project. Would there be a way to manually enter the image data coming from the camera directly? For example for one pixel entering in:
for(j = 0; j < 320; j++) {
enterPixel(1, 1, 250, 0, 0)
//1, 1 is for the pixel location on a bitmap, and 250, 0, 0 is the RGB data.
}