Questions tagged [google-ios-vision]
18 questions
11
votes
0 answers
Google Vision API possible memory leak
I'm trying to make an app to process a set of frames, stored as jpg into the app using Google-vision API.
The pipeline is simple.
1) I create the detector with some options:
_options = @{
GMVDetectorFaceLandmarkType :…

Ivan
- 782
- 11
- 23
5
votes
1 answer
finished with error - code: -1009 when internet there is no connection
We are using Google SDKs like SignIn,maps and Analytics.
Facebook SDK for signIn.
Alamofire and ObjectMapper for Networking and JSON parsing.
Realm for DB.
When there is no internet connection I am getting following error on console. I have…

AppleBee
- 1,199
- 12
- 26
5
votes
2 answers
Initiating GMVDetector fails
I'm using GoogleMobileVision/Barcode detector in my Swift 3.1 project using the following code:
GMVDetector(ofType: GMVDetectorTypeBarcode, options: nil)
but in the log it shows:
It seems that GoogleMobileVision in iOS is closed source so I cannot…

jdnessity
- 115
- 1
- 7
3
votes
2 answers
Any limits for source image size with Google Mobile Vision for iOS?
I have some issue while using GoogleMobileVision for iOS.
With UIImagePickerController set like this
UIImagePickerController* picker = [[UIImagePickerController alloc]init];
picker.delegate = self;
picker.sourceType =…

groznybear
- 53
- 7
2
votes
1 answer
GoogleMobileVision GoogleSignIn duplicate symbol using Cocoapods?
I am using CocoaPods to add two frameworks.
target 'TestGoogleLib' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for TestGoogleLib
pod 'GoogleMobileVision'
pod…

Sam Shaikh
- 1,596
- 6
- 29
- 53
1
vote
1 answer
AugmentedFacesExample with exporting fail on iOS 14 with EXC_BAD_ACCESS
trying to export a sequence of OBJ from GARAugmentedFaceSession
In the following project, I just added the following code snippet to export OBJs;
https://github.com/google-ar/arcore-ios-sdk/tree/master/Examples/AugmentedFacesExample
Into Ln 236 from…

sean
- 11
- 1
1
vote
1 answer
GMVTextLineFeature returns null when initialised with the image in iOS
I have initialised the textlinedetector as below
self.textDetector = [GMVDetector detectorOfType:GMVDetectorTypeText options:nil];
Since I want only the line and not the whole block, I'm directly accessing GMVTextLineFeature and the input image is…

chirag
- 57
- 10
1
vote
2 answers
Linker errors in GoogleMobileVision when using Firebase ML Kit on iOS without cocapods
I am trying to add the MLVisionTextModel of Firebase 5.0.1 into an Xcode project without cocoapods. I have added all the dependent frameworks as stated in the Readme.md file. Getting the following linker errors:
Showing All Messages
…

avdhut
- 128
- 1
- 13
1
vote
1 answer
Google Face Detection crashing when converting to image and trying to detect face
I am creating a custom camera with filters. When I add the following line it crashes without showing any exception.
//Setting video output
func setupBuffer() {
videoBuffer = AVCaptureVideoDataOutput()
…

Chanchal Warde
- 983
- 5
- 17
1
vote
0 answers
Fix frame orientation using Google Mobile Vision
I'm using Google Mobile Vision to process camera frames and detect faces. After detecting a face I want to save the frame to a file but it has a wrong orientation.
func captureOutput(_ captureOutput: AVCaptureOutput!, didOutputSampleBuffer…

Giancarlo Romeo
- 663
- 1
- 9
- 24
1
vote
0 answers
Google Vision Api text recognition for iOS
I played with text recognition for android code samples in https://github.com/googlesamples/android-vision. But i could not find any samples for iOS. https://github.com/googlesamples/ios-vision.
Is the iOS text recognizer available yet ?

AndQ
- 103
- 1
- 6
0
votes
1 answer
Error when adding Firebase to my iOS project without CocoaPods
I am trying to add Firebase to my project and especially their barcode reader frameworks (Vision). I have followed these instructions:
https://www.mokacoding.com/blog/setting-up-firebase-without-cocoapods/
I have added the folder that contains what…

scourGINHO
- 699
- 2
- 12
- 31
0
votes
1 answer
Undefined symbols for architecture x86_64: "_OBJC_METACLASS_$_GMVDetector" referenced from: TextDetector
I included Google Firebase MLKit to my project without cocoapods. When I try to build, I'm getting the Undefined symbol error: Xcode error image
Undefined symbols for architecture armv7:
"_OBJC_METACLASS_$_GMVDetector", referenced from:
…

chirag
- 57
- 10
0
votes
1 answer
Google Vision crashes when getting UIImage from sample buffer
I finally decided to use Google Mobile Vision sdk for detecting faces and smiling in camera and their sdk and sample look very good and promising.
But after I pasted their sample code into my project it always crashes in captureOutput(_ output:…

Pei
- 11,452
- 5
- 41
- 45
0
votes
1 answer
How to detect and track the foot using ARKIt and vision framework?
I wants to virtually add foot ball and detect and tracking the foot so that we can simulate the kick to the ball.
Can any one please suggest the way achieve it in iOS?

idev
- 311
- 3
- 10