Edge detection and removal

扶醉桌前 提交于 2019-12-06 04:19:03

Edge detection is done via a process called Convolution. There are various convolution matrixes defined, one of which is edge detection. You're going to have to look all that up, and also how to do convolution in Java: see java.awt.image.ConvolveOp for a start. How you then remove 'everything except' is another question.

I don't have the entire code, but I had done edge detection using the approach defined [here] (http://www.pixastic.com/lib/docs/actions/edges2/). The removal of the parts was done using canvas methods

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!