Probably not looking for solution, but looking for guidance on this. This is to implement "document scanner" in our Android app.
I need to do precisely this:
- Take image with camera (no problem)
- Detect page edges/corners (???)
- Allow user to move/adjust corners (no problem)
- Transform image to make it rectangle (???)
- Convert image to B/W TIFF or some other appropriate format for transmission over mobile network (compact, bit per pixel) (???)
What I tried. We tried to use Open CV. It's huge, there is NDK. Setup and infrastructure pretty complex.
Is there anything that's lighter and designed for exactly this task? Even commercial might be fine.
Just looking for suggestions on how to approach this.. Main problem is to detect edges and transform I think..