I've managed to get the OpenALPR library working within my app when passing a static image as per the example, but when using an image from the camera recognition is unsuccessful every time - is there something different about the image thats returned from a AVCaptureSession()?
Here's the code I'm using to get the image:
NSData* imageData = [AVCaptureStillImageOutput jpegStillImageNSDataRepresentation:sampleBuffer];
UIImage* image = [UIImage imageWithData:imageData];
cv::Mat cvImage = [self cvMatFromUIImage:image];
[self.plateScanner scanImage:cvImage onSuccess:^(NSArray * results) {
// Never suceeds