Questions tagged [apple-vision]

Apple Vision is a high-level computer vision framework to identify faces, detect and track features, and classify images, video, tabular data, audio and motion sensors data.

Apple Vision framework performs face and face landmark detection on input images and video, barcode recognition, image registration, text detection, and, of course, feature tracking. Vision API allows the use of custom CoreML models for tasks like classification or object detection.

205 questions
0
votes
1 answer

Object detection from image using vision framework

I am trying to detect objects from a given image. From research I just found that we can detect and track an object for the videos using the following process: private lazy var cameraLayer: AVCaptureVideoPreviewLayer =…
The iCoder
  • 1,414
  • 3
  • 19
  • 39
0
votes
1 answer

Stop detecting letters in Apple Vision, iOS, Swift

I am detecting text with Vision and it is working ok I have it use a completion when something detected and call a function, but the text is still being detected. How can I stop the text detection To start it i am using: func startTextDetection()…
Tony Merritt
  • 1,177
  • 11
  • 35
0
votes
2 answers

Has anyone tried how to use vision api(VNHomographicImageRegistrationRequest) in ios 11?

I am studying currency recognition problems which is related to the Vision SDK of iOS11. I'm having trouble handling VNHomographicImageRegistrationRequest, which determines the perspective warp matrix needed to align the content of two images. But…
0
votes
2 answers

VNFaceObservation BoundingBox Not Scaling In Portrait Mode

For reference, this stems from a question in the Vision API. I am working to use Vision to detect faces in an image via a VNDetectFaceRectanglesRequest, which is successfully functioning in terms of determining the correct number of faces in an…
ZbadhabitZ
  • 2,753
  • 1
  • 25
  • 45
0
votes
1 answer

Vision SDK only recognise faces in landscape right mode on iPad

I am trying to create an app that use the Vision SDK to track a face in real time, using the camera. So far, it's only working when I hold the iPad in landscape right mode. The process is the following: // This is the…
Antzi
  • 12,831
  • 7
  • 48
  • 74
0
votes
2 answers

Google Mobile Vision iOS issue

https://developers.google.com/vision/ios/getting-started pod 'GoogleMobileVision/FaceDetector' does not exist pod install does not work
0
votes
1 answer

OpenCV color correction

I'm working on a project that involves a paper strip that changes color from white to dark brown based on certain factors, and I need to write an app that is able to classify this color. I have already written the feature recognition part of it in…
-1
votes
1 answer

Finding a correct way to augment shoes on user's foot

What would be the best way to augement shoes on the user's feet? Would you suggest ARKit's object detection or through the vision framework? Or is there any other better way to achieve this ? Thanks !
-1
votes
1 answer

How to significantly reduce Energy Impact in iOS app?

I'm developing an ARKit app with Vision framework capabilities (handling CoreML model). loopCoreMLUpdate() function makes a loop which leads to Very High Energy Impact (CPU=70%, GPU=66%). How to handle this task and decrease Energy Impact to LOW…
Andy Jazz
  • 49,178
  • 17
  • 136
  • 220
-2
votes
1 answer

Detect if face is within a circle

Currently I am working on face detection app. I have implemented face detection part using Apple's Vision. And app has custom white circle drawn over the screen (you can see in below image). Now, how can I detect if face is within that custom white…
DoeJ
  • 405
  • 1
  • 4
  • 14
1 2 3
13
14