VNDocumentCameraViewController scans the documents automatically. I want to scan documents only when user taps shutter button. Is there any way to accomplish this?
VNDocumentCameraViewController disable Auto Scan
931 Views Asked by joemiddletone At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in SWIFT
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Swift code with multiple NSDateFormatter - optimization
- How do I add multiple in app purchases in Swift Spritekit?
- cellForRowAtIndexPath and prepareForSegue return different label colors
- Getting this message in my console in xcode "Ignoring restoreCompletedTransactionsWithApplicationUsername: because already restoring transactions"?
- Change background of an Accessory View in a UITableViewCell
- fade in an bounce animation subview
- Create a PFObject and PFRelation after PFUser Sign Up
- Swift 2 - Pattern matching in "if"
- How do I give inputs through NSURL
- How do I add custom cells to TableView in Swift?
- UIWebView not loading URL in simulator
- Compiler complains that 'Expression resolved to unused function' when removing index in array of functions
- Cast from 'Int?' to unrelated type 'NSNumber' always fails
Related Questions in VISIONKIT
- Unable to share multiple images using share sheet Swift
- visionkit DataScannerViewController poor accuracy after iOS 17 update
- Using VNGenerateForegroundInstanceMaskRequest on Obj-C to remove background of image
- Is it possible to apply regex pattern with OCR scanning in VisionKit?
- Understand AVFoundation videoOrientation and Vision Request Handler Orientation
- How to extract table data from an image using Vision Framework in iOS?
- VNRecognizeTextRequest doesn't recognize Dansk language "da-DK"
- VNDocumentCameraScan to searchable PDF
- Vision Kit - Extract Image Data in Dictionary - iOS
- Clear the scanned images cache in VNDocumentCameraScan Swift
- Enable/Disable torch with DataScannerViewController
- Swift - Visionkit How to edit the color of the buttons "Keep Scan" and "Retake"
- Improving the accuracy of text recognition when using iOS Vision Framework to scan a document
- Using Vision and RealityKit Rotates Counterclockwise and Distorts(Stretches?) Video
- Transform boundingBox according to angle and rotation
Related Questions in VNDOCUMENTCAMERAVIEWCONTROLLER
- VNDocumentCameraViewController in Xamarin Forms freezes
- Clear the scanned images cache in VNDocumentCameraScan Swift
- Camera controller dismiss is not working in iOS Swift?
- How to dismiss camera controller from framework in iOS Swift?
- How to make VNDocumentCameraViewController forget previous scans?
- VNDocumentCameraViewController disable Auto Scan
- VNRecognizeTextRequest unable to recognise text scanned in landscape mode
- Safe area issue with VNDocumentCameraViewController using UIViewControllerRepresentable
- Hide Cancel/Auto And Capture button from VNDocumentCameraViewController Swift
- crash (iOs16) when present VNDocumentCameraViewController
- Change the wording of VNdocumentCameraViewController
- Save Pressed Action for VNDocumentCameraViewController Swift
- Swift App: "VNDocumentCameraViewController" How to free memory by dismissing a ViewController?
- iOS 13 - VNDocumentCameraViewController maximum number of Scans
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It is not possible to do it directly because
VNDocumentCameraViewControllerdoes not offer this as a public API.However, it is possible to implement an equivalent experience where you have a camera view and then press a 'Capture' button which immediately takes a photo and processes it for Text scanning.
The code is quite lengthy, so I leveraged the work of Guillermo Moraleda and Andy Ibanez to produce a working prototype DisableAutoScan but the relevant portions are shown below.
Use the 'Manual' menu button to show the on-shutter experience, and the 'Auto' menu button to show the
VNDocumentCameraViewControllerexperience.In essence the solution involves using AVFoundation classes to create a camera capture view session, and then when a Capture button is pressed, to extract the current image from the
AVCapturePhotoOutputand then this can be fed into theVNRecognizeTextRequestto get the text capture on demand.Here is the code which captures the photo on-demand from a live camera view:
On the other side of it is the closure
imageWasCapturedClosureset in the calling ViewController. In my example project I have:Note on user interaction
I initially found the auto-capture feature of the document camera view controller annoying but it is actually quite useful as you become a heavy user due to the ergonomics of the interaction.
When you have a lot of scans to do, one hand points the camera and the other shows paper to scan, and moving the phone from pointing at the paper to pointing at a dead zone (say your stomach) and back allows you to move to the next page without an unplanned image capture. This means the scanning is very effective and quick.
The experience you desire is more helpful to occasional scanners where a step-by-step and deliberate control is more natural/logical due to it being an unfamiliar or occasional task.