我使用相机 API2 编写了一个相机应用程序。我可以从具体的东西上拍一张照片。然后我知道我的图片中的特定位置有重要信息(我不需要选择重要区域,我已经知道哪个部分是关键的)。我只想拥有我的图片的重要部分并将这部分用于我的 OCR 应用程序。我的问题是如何分离图片的特定部分。有人建议我使用 com.android,camera.action.CROP 裁剪拍摄的照片。但是我在很多地方读到,这种方法可能不适用于所有安卓设备。有谁知道我该怎么做?android支持这样的动作吗??在保存图片之前可以裁剪字节文件吗?或者我应该使用像 Open-CV 这样的第三方库来做这些事情。提前致谢
问问题
296 次
2 回答
0
如果您有起点 x 和 y 以及图像的高度和宽度,或者您有四个点来形成一个用于复制图像的矩形,那么您可以使用这段代码
private void cropBitmap1(int startX, int startY, int width, int height, Bitmap bmp) {
// widht=x+x2 height=y+Y2
Bitmap source = bmp;
//Log.w("TAG","widths "+widths +" width"+width+" heights"+heights+" height"+height+" x"+startX +" y"+startY);
Bitmap resized = Bitmap.createBitmap(source, startX, startY, width, height);
//save the image or execute for ocr using tesseract
}
如果您不知道这四个点,那么请使用 Opencv,以便您可以使用训练文件来获得这些点
于 2016-11-16T13:03:06.320 回答
0
如果你想使用库,我会推荐 theartofdev 库。将此依赖项放入 app gradle
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
用于选择图像
CropImage.activity().start(getContext(), this);
这将重定向到打开或捕获图像。用户可以对其进行裁剪,之后可以通过以下方式轻松获得结果
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == CropImage.CROP_IMAGE_ACTIVITY_REQUEST_CODE) {
CropImage.ActivityResult result = CropImage.getActivityResult(data);
if (resultCode == -1) {
Uri resultUri = result.getUri();
// TODO your stuff here. Cropped image will come here as resultant
} else if (resultCode == CropImage.CROP_IMAGE_ACTIVITY_RESULT_ERROR_CODE) {
Exception error = result.getError();
}
}
}
这是最简单的方法。您可以在此处裁剪任何图像。
于 2021-04-14T17:55:25.420 回答