Eric Bautista
Eric Bautista

Reputation: 413

Best way to handle images in Java

I will develop a Java application that uses some image processing algorithms. I have done some image processing applications using C++. I'm currently using BufferedImage object to save data from images but I'm wondering if there is a better way to handle images in Java (improve performance).

Do you guys have any recommendation?

Thanks!!!

Upvotes: 3

Views: 1411

Answers (2)

Maverik
Maverik

Reputation: 2398

if you want to work with images i would look at JavaCv: https://github.com/bytedeco/javacv

JavaCV first provides wrappers to commonly used libraries by researchers in the field of computer vision: OpenCV, FFmpeg, libdc1394, PGR FlyCapture, OpenKinect, videoInput, and ARToolKitPlus.

I think you will find all what you need.

Luca

Upvotes: 4

Radim Burget
Radim Burget

Reputation: 232

For JAVA there exists for example: FiJi

Upvotes: 1

Related Questions