eloquentarduino / EloquentArduino

IO, scheduling, utils, machine learning... for Arduino
https://eloquentarduino.github.io/EloquentArduino/
164 stars 59 forks source link

In the Apple vs Orange code, is it possible to not average the image size and use the original (160x120) size? #14

Closed ghost closed 3 years ago

ghost commented 3 years ago

Thanks for the code but is it possible to use the original size of the image instead of averaged out by block?

eloquentarduino commented 3 years ago

Although technically possible, I cannot see why you would so such a thing, if not using neural networks. Any classifier fed by 160*120 = 19200 features would only get confused. Moreover, images from the camera suffer from a high degree of noise, so you are strongly recommended to filter that noise out: averaging is one of the possible methods.