Anand Gautam
Anand Gautam

Reputation: 2579

CIDetector not detecting proper Rectangle in iOS?

I am trying to detect a Rectangle using CIDetector.

I am using code from this: https://www.cocoacontrols.com/controls/vnimagescanner

My problem is when I am trying to detect any Rectangle object, sometimes it's detecting or sometimes it's detecting Odd Rectangle (please see below images). I tried to search this Google but didn't find any solution of this.

Normal case:

enter image description here

enter image description here

Some bad case:

enter image description here

Here is my code to set the CIDetector Accuracy :

func highAccuracyRectangleDetector() -> CIDetector? {
   var detector: CIDetector? = nil
   detector = CIDetector(ofType: CIDetectorTypeRectangle, context: nil, options: [CIDetectorAccuracy: CIDetectorAccuracyHigh, CIDetectorAspectRatio: 1.43, CIDetectorMaxFeatureCount: 5])

   return detector
}

If you will look into third image, it's highlighting without Rectangle object.

Is it possible to detect or to display the highlighted green overlay when there will be a proper Rectangle? Please suggest me.

Upvotes: 2

Views: 2102

Answers (1)

Anand Gautam
Anand Gautam

Reputation: 2579

Finally I got the an Open source library WeScan by WeTransfer to detect Rectangle/Document scanning and this give accurate result. I followed below link:

https://github.com/WeTransfer/WeScan

Upvotes: 1

Related Questions