Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

swift - 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...