私はOCRアプリケーションを持っています。私は私のアプリにtesseract APIライブラリを使用しています。しかし、私がアプリケーションを実行すると、エラーが表示されます(エラー:ISO C++では、型なしの 'TessBaseAPI'の宣言は禁じられています)。エラー:ISO C++は型なしの 'TessBaseAPI'の宣言を禁じますか?
ここはmytです。
@interface OCRViewController : UIViewController <UIImagePickerControllerDelegate,UINavigationControllerDelegate>{
UIImagePickerController *imagePickerController;
//Getting error in this line.
TessBaseAPI *tess;
UIImageView *iv;
UILabel *label;
}