使用 Google Goggles 裁剪图像
我正在尝试在我的应用程序中进行一些 ROI(感兴趣区域)选择,但我不知道如何创建某种可调整大小(通过手指)的矩形,就像您在 Google Goggles 中看到的那样。 你能帮助我吗?有源代码示例吗?
I'm trying to do some ROI (region of interest) selection in my app, but I don´t know, how to create some kind of resizable (by fingers) rectangle like you can see in Google Goggles.
Can you help me? Is there any source code example?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的最终解决方案是在视图中间绘制矩形并在我的活动中实现 onTouchEvent() 以设置新的角坐标,如下所示:
My final solution is to draw and rectangle in the midle of a view and implement onTouchEvent() in my activity to set new corners coordinates like this:
您可以重用 Gallery-Cropper 中的代码吗?
CropImage
类源代码已提供 此处。Could you reuse code from the Gallery-Cropper?
The
CropImage
class source code is available here.