我想识别写在图像中的文字,所以我想要的是裁剪这个图像,使得所需部分的处理不仅仅是所有图像。 所以任何想法我该怎么做? 这是我在图像上使用的代码:
NSString*ret= [self DoProcess:capturedImage];
我希望裁剪捕获的图像以对其进行处理。
答案 0 :(得分:0)
您可以为要提取的图像部分定义CGRect,然后使用以下方法:
CGRect cropRect = ...;
UIImage *cropped = [UIImage imageWithCGImage:CGImageCreateWithImageInRect([fullImage CGImage], cropRect) scale:fullImage.scale orientation:fullImage.imageOrientation];