├── .gitignore ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── SwiftOCR.swift ├── examples ├── pineapple-fast.json ├── pineapple.json ├── pineapple.png ├── plates-fast.json ├── plates.json └── plates.webp └── swiftocr.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/README.md -------------------------------------------------------------------------------- /SwiftOCR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/SwiftOCR.swift -------------------------------------------------------------------------------- /examples/pineapple-fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/examples/pineapple-fast.json -------------------------------------------------------------------------------- /examples/pineapple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/examples/pineapple.json -------------------------------------------------------------------------------- /examples/pineapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/examples/pineapple.png -------------------------------------------------------------------------------- /examples/plates-fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/examples/plates-fast.json -------------------------------------------------------------------------------- /examples/plates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/examples/plates.json -------------------------------------------------------------------------------- /examples/plates.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/examples/plates.webp -------------------------------------------------------------------------------- /swiftocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fny/swiftocr/HEAD/swiftocr.py --------------------------------------------------------------------------------