I am implementing an application and my app needs to crop image based on background. I have seen similar behavior in document scanning applications where they automatically pick up image borders for crop. Can some one help me figure out how to achieve this functionality?
Disclaimer: I thought this might be an 'Askdifferent - Apple' question, but they sent me back to SO. So, if this doesn't belong, please let me know where to ask.
Update: Responding to the comment, Here is what I have done until now:
- App launches the camera,
- sets the AVSession for viewfinder,
- preset to Photo, captures the images, saves to a file
- I am also creating small thumbnail previews for all images by compressing using CG API.
- Using AQGridView to display the images.
The goal is instead of compressing, I want 'auto cropped' images to be shown up in AQGridview to present a better user experience. Based on the nature of my app, it is pretty similar to receipt scanning as the subject may occupy only a small part of the image on a relatively clear background.
Hope it helps clarify..