如何从CAMERA获取裁剪的图像

时间:2012-08-20 11:59:43

标签: android image-processing pattern-matching android-camera android-capture

如何获取在图像中显示的区域内的裁剪图像。

我希望我的应用能够捕获书页的图像,其中包含4个角落的图像模式。我希望它首先匹配这些模式,然后删除在这4个图像的边界内不可用的所有部分。

enter image description here

3 个答案:

答案 0 :(得分:1)

我建议您使用OpenCV for Android库。

看看这些SO讨论:

答案 1 :(得分:0)

这样做,

 Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
 intent.putExtra("crop", "true");
 startActivityForResult(intent, TAKE_PICTURE);

答案 2 :(得分:-1)

本教程可以完成所有工作,玩具也可以下载资源:http://mobile.tutsplus.com/tutorials/android/capture-and-crop-an-image-with-the-device-camera/