在指纹图象和三角洲的图画圈子

时间:2015-05-01 20:21:47

标签: java image-processing fingerprint fingerprinting

如何绘制圆形或x只是为了显示在增量点或核心上,以显示这些指纹元素的典型图形形式。我的意思是如何在指纹图像中检测核心和三角形。我实际上有一个项目,我从扫描仪收集指纹作为图像对象,我想分析它们,以便我在Imag上绘制顶点和egdes

典型示例是附加图像enter image description here

1 个答案:

答案 0 :(得分:0)

给定BufferedImage,您可以致电createGraphics()获取Graphics2D,然后您可以绘制基本图元,最终将会出现在BufferedImage中。

E.g。假设你有:

BufferedImage fingerprint = readFingerPrint();

然后你可以这样做:

Graphics2D gfx = fingerprint.createGraphics();
gfx.draw( new line2D.Double( x1, y1, x2, y2) );
gfx.draw( new Ellipse2D.Double(x, y, width, height) );