简体   繁体   English

Java最佳图像处理库

[英]best image processing library for java

could you please suggest the best image processing library for pure Java environment? 您能为纯Java环境推荐最好的图像处理库吗?

I'll need to do webcam capture, and object detection in real time. 我需要实时摄像头捕获和对象检测。 Or if you have any similar projects doing this it will be great. 或者,如果您有任何类似的项目在做,那就太好了。 :) :)

There is a wrapper for openCV for Java at http://ubaa.net/shared/processing/opencv/ http://ubaa.net/shared/processing/opencv/上有一个针对Java的openCV的包装器。

That's the best for doing object detection and such. 那是进行对象检测之类的最佳方法。 Anyway you must first grab images and for that you can use JMF. 无论如何,您必须首先获取图像,然后才能使用JMF。

看看JAIJMF

Catalano Framework is the best lib in image processing for java. Catalano Framework是Java图像处理中最好的库。 It works in Android too with the same code. 它也可以在Android中使用相同的代码。 Example: 例:

FastBitmap fb = new FastBitmap("c:\\yourImage.bmp");

fb.toGrayscale();

Threshold t = new Threshold(120);
t.applyInPlace(fb);

// Your objects.
BlobDetection bd = new BlobDetection();
ArrayList<Blob> blobs = bd.ProcessImage(fb);

Marvin Framework提供了用于图像和视频处理(包括对象跟踪)的算法。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM