forked from gali8/Tesseract-OCR-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTesseractOCR.h
29 lines (22 loc) · 818 Bytes
/
TesseractOCR.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// TesseractOCR.h
// TesseractOCR
//
// Created by Kirill Makankov on 04.01.15.
// Copyright (c) 2015 Daniele Galiotto - www.g8production.com. All rights reserved.
//
#import <UIKit/UIKit.h>
//! Project version number for TesseractOCR.
FOUNDATION_EXPORT double TesseractOCRVersionNumber;
//! Project version string for TesseractOCR.
FOUNDATION_EXPORT const unsigned char TesseractOCRVersionString[];
// In this header, you should import all the public headers of your framework using statements like #import <TesseractOCR/PublicHeader.h>
#ifndef Tesseract_OCR_iOS_TesseractOCR_h
#define Tesseract_OCR_iOS_TesseractOCR_h
#import "G8Tesseract.h"
#import "G8RecognizedBlock.h"
#import "G8TesseractParameters.h"
#import "G8RecognitionOperation.h"
#import "G8Constants.h"
#import "UIImage+G8Filters.h"
#endif