boofcv.io.video.DynamicVideoInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boofcv-io Show documentation
Show all versions of boofcv-io Show documentation
BoofCV is an open source Java library for real-time computer vision and robotics applications.
/*
* Copyright (c) 2011-2017, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package boofcv.io.video;
import boofcv.io.image.SimpleImageSequence;
import boofcv.io.wrapper.images.ImageStreamSequence;
import boofcv.io.wrapper.images.JpegByteImageSequence;
import boofcv.struct.image.ImageBase;
import boofcv.struct.image.ImageType;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.List;
/**
* This video interface attempts to load a native reader. If that fails, jcodec, if that fails it just
* uses the built in video types.
*
* @author Peter Abeles
*/
public class DynamicVideoInterface implements VideoInterface {
VideoInterface jcodec;
VideoInterface ffmpeg;
BoofMjpegVideo mjpeg = new BoofMjpegVideo();
public DynamicVideoInterface() {
try {
ffmpeg = loadManager("boofcv.io.ffmpeg.FfmpegVideo");
} catch( RuntimeException e ) {}
try {
jcodec = loadManager("boofcv.io.jcodec.JCodecVideoInterface");
} catch( RuntimeException e ) {}
}
@Override
public > SimpleImageSequence load(String fileName, ImageType imageType) {
// Use built in movie readers for these file types
if( fileName.endsWith("mjpeg") || fileName.endsWith("MJPEG") ||
fileName.endsWith("mjpg") || fileName.endsWith("MJPG") ) {
try {
VideoMjpegCodec codec = new VideoMjpegCodec();
List data = codec.read(new FileInputStream(fileName));
return new JpegByteImageSequence<>(imageType, data, false);
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
} else if( fileName.endsWith("mpng") || fileName.endsWith("MPNG")) {
try {
return new ImageStreamSequence<>(fileName, true, imageType);
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
}
try {
if( ffmpeg != null ) {
return ffmpeg.load(fileName, imageType);
}
} catch( RuntimeException ignore ){}
try {
if( jcodec != null ) {
if( fileName.endsWith(".mp4") || fileName.endsWith(".MP4")) {
return jcodec.load(fileName,imageType);
}
}
} catch( RuntimeException ignore ){}
System.err.println("No working codec found for file: " + fileName);
return null;
}
/**
* Loads the specified default {@link VideoInterface}.
*
* @return Video interface
*/
public static VideoInterface loadManager( String pathToManager ) {
try {
Class c = Class.forName(pathToManager);
return (VideoInterface) c.newInstance();
} catch (ClassNotFoundException e) {
throw new RuntimeException("Class not found. Is it included in the class path?");
} catch (InstantiationException | IllegalAccessException e) {
throw new RuntimeException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy