Video Processing Library for Java
Asked Answered
M

4

9

I want to extract frames from a video and apply some filters on it such as gabor/hough etc. Which Java library would be perfect for handling all kinds of video encodings? I have been looking at GStreamer, JMF, Xuggler etc. but am unable to decide which one would be the best. I'm also looking to edit the frames and make the video with the new frames.

Meneses answered 22/10, 2012 at 12:22 Comment(0)
G
13

If you're looking to do low level operations such as extracting frames and manipulating them, then Xuggler would be the best choice, because the APIs are geared around this low level. It works on ffmpeg so can handle all types of video encodings.

Don't use JMF for anything, it's old, outdated and buggy - GStreamer is good, but the API lends itself more to playing videos rather than manipulating the frames.

Geopolitics answered 22/10, 2012 at 12:31 Comment(2)
Thanks! I guess it's Xuggler then. It also looks like OpenCV for Java can be manually configured answers.opencv.org/question/2137/… - any ideas on if this would be better?Meneses
I haven't uesd OpenCV so can't really comment, but would still probably lean towards Xuggler since it's a pure Java API which should make the task easier.Geopolitics
H
3

You can try Marvin Framework. It uses JavaCV for video encodings and device access, but all image processing algorithms are pure Java.

It's very easy to load a video and process the frames in real time, as shown in the edge detection example below.

enter image description here

Source code:

import static marvin.MarvinPluginCollection.*;

public class SimpleVideoProcessing extends JFrame implements Runnable{

    private MarvinVideoInterface    videoAdapter = new MarvinJavaCVAdapter();
    private MarvinImagePanel        videoPanel = new MarvinImagePanel();
    private MarvinImage             videoFrame, videoOut = new MarvinImage(640,480);

    public SimpleVideoProcessing() throws MarvinVideoInterfaceException{
        super("Simple Video Processing using Marvin");
        add(videoPanel);
        // Load video file and start the processing thread
        videoAdapter.loadResource("./res/snooker.wmv");
        new Thread(this).start();
        setSize(640,500);
        setVisible(true);
    }

    public void run() {
        try {
            while(true){
                // Request, process and show the video frame.
                videoOut.clear();
                videoFrame = videoAdapter.getFrame();
                prewitt(videoFrame.clone(), videoOut);
                videoPanel.setImage(videoOut);
            }
        } catch (MarvinVideoInterfaceException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) throws MarvinVideoInterfaceException {
        new SimpleVideoProcessing().setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }
}
Hereabout answered 30/6, 2016 at 3:52 Comment(0)
C
1

JMF is a good choice. But if the process time is important in your code, it's better to use Xuggler. Obviously, JMF is more general than Xuggler.

Chetchetah answered 28/10, 2012 at 20:48 Comment(0)
S
0

Xuggler, yes. But if you are going to be working on a lot of Image processing, you should go with OpenImaj. This library uses Xuggler as its dependency, but that's not all what it does. Think of having capabilities of Opencv without the lack of speed which you get in Java. Also, all it requires is adding a maven dependency and you are good to go. The amount of code is also reduced.

Note: I am still reviewing the library and will keep updating my answer on how this goes.

Introductory Video: https://www.youtube.com/watch?v=TNEQ0eNqLgA

Suu answered 22/6, 2016 at 15:37 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.