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
937 Views Asked by joemiddletone At
1
There are 1 best solutions below
Related Questions in IOS
- URLSession requesting JSON array from server not working
- Incorrect display of LinearGradientBrush in IOS
- Module not found when building flutter app for IOS
- How to share metadata of an audio url file to a WhatsApp conversation with friends
- Occasional crash at NSURLSessionDataTask dataTaskWithRequest:completionHandler:
- Expo Deep linking on iOS is not working (because of Google sign-in?)
- On iOS, the keyboard does not offer a 6-character SMS code
- Hi, there is an error happened when I build my flutter app, after I'm installing firebase packages occurs that error
- The copy/paste functionalities don't work only on iOS in the Flutter app
- Hide LiveActivityIntent Button from Shortcuts App
- While Running Github Actions Pipeline: No Signing Certificate "iOS Development" found: No "iOS Development" signing certificate matching team ID
- Actionable notification api call not working in background
- Accessibility : Full keyboard access with scroll view in swiftui
- There is a problem with the request entity - You are not allowed to create 'iOS' profile with App ID 'XXXX'
- I am getting "binding has not yet been initialized" error when trying to connect firebase with flutter
Related Questions in SWIFT
- Navigate after logged in with webservice
- URLSession requesting JSON array from server not working
- When using onDrag in SwiftUI on Mac how can I detect when the dragged object has been released anywhere?
- Protect OpenAI key using Firebase function
- How to correct error: "Cannot convert value of type 'MyType.Type' to expected argument type 'Binding<MyType>'"?
- How to share metadata of an audio url file to a WhatsApp conversation with friends
- Using @Bindable with a Observable type in SwiftUI
- How to make a scroll view of 9 images in a forEach loop open on image 6 if image 6 is clicked on from a grid?
- Using MTLPixelFormat.rgba16Float results in random round-off errors
- Search and highlight text of current text in PDFKit Swift
- How is passing a function as a parameter related to escaping autoclosure?
- Actionable notification api call not working in background
- Custom layout occupies all horizontal space
- Is it possible to fix slow CKAsset loading on Cloudkit?
- Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value - MapView.isMyLocationEnabled
Related Questions in VISIONKIT
- Can we add Photo Library support in VisionKit?
- Apple Vision Kit - what foods can it detect?
- DataScannerViewController does not work on visionOS
- Hide Cancel/Auto And Capture button from VNDocumentCameraViewController Swift
- When downloading various usdz files for use with RealityKit, how do I know which child to use?
- Apple VisionKit: scanning receipt structure accurately
- Is it possible to apply regex pattern with OCR scanning in VisionKit?
- Using VNGenerateForegroundInstanceMaskRequest on Obj-C to remove background of image
- visionkit DataScannerViewController poor accuracy after iOS 17 update
- How to implement DataScannerViewController to React Native
- Coordinate System of the BoundingBoxes reported in VNFaceObservation by Apple's Vision framework
- Swiftui DataScannerViewController config guide
- How do I detect when the user drags a lifted subject from ImageAnalysisInteraction?
- Request to remove background on an unsupported device. Error Domain=com.apple.VisionKit.RemoveBackground Code=-8 "(null)"
- How to make VNDocumentCameraViewController forget previous scans?
Related Questions in VNDOCUMENTCAMERAVIEWCONTROLLER
- Hide Cancel/Auto And Capture button from VNDocumentCameraViewController Swift
- How to make VNDocumentCameraViewController forget previous scans?
- VNDocumentCameraViewController disable Auto Scan
- crash (iOs16) when present VNDocumentCameraViewController
- Safe area issue with VNDocumentCameraViewController using UIViewControllerRepresentable
- Swift App: "VNDocumentCameraViewController" How to free memory by dismissing a ViewController?
- Clear the scanned images cache in VNDocumentCameraScan Swift
- VNDocumentCameraViewController in Xamarin Forms freezes
- VNRecognizeTextRequest unable to recognise text scanned in landscape mode
- Save Pressed Action for VNDocumentCameraViewController Swift
- Change the wording of VNdocumentCameraViewController
- Camera controller dismiss is not working in iOS Swift?
- How to dismiss camera controller from framework in iOS Swift?
- 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.