Flutter - How to take real time input feed from camera and scan any object?

2,636

While there is a Flutter Package for OpenCV and it works with Android only, it is still not complete.

The best solution is to integrate the OpenCV native sdk for both Android and IOS and invoke them through platform channels.

Share:
2,636
Ajay Kumar
Author by

Ajay Kumar

Hi, I have 2.5 years of working experience as a Backend Developer. I have worked on many big projects and have used many top-notch technologies like Django, Nodejs, Elasticsearch, etc.

Updated on December 18, 2022

Comments

  • Ajay Kumar
    Ajay Kumar over 1 year

    I'm building an application to scan a document by taking real-time camera feed and detect document in that feed. I'm very beginner in the flutter, I have already done it in the python using OpenCV with the following steps A. Get Image B. Convert image to Greyscale C. Detect Edge (Apply any edge detector) D. Find Contours E. Find Biggest Contour F. Apply Warp Perspective and lastly G. Get Scanned Document.

    My question is, is there any package available to do this task? if not then what is the way to implement these points as I have mentioned above?