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) 2021, 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.UtilIO;
import boofcv.io.image.SimpleImageSequence;
import boofcv.io.wrapper.images.ImageStreamSequence;
import boofcv.io.wrapper.images.JpegByteImageSequence;
import boofcv.io.wrapper.images.LoadFileImageSequence;
import boofcv.struct.image.ImageBase;
import boofcv.struct.image.ImageType;
import org.jetbrains.annotations.Nullable;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.InvocationTargetException;
import java.net.URL;
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
*/
@SuppressWarnings("NullAway.Init")
public class DynamicVideoInterface implements VideoInterface {
@Nullable VideoInterface jcodec;
@Nullable VideoInterface ffmpeg;
BoofMjpegVideo mjpeg = new BoofMjpegVideo();
public DynamicVideoInterface() {
try {
ffmpeg = loadManager("boofcv.io.ffmpeg.FfmpegVideo");
} catch (RuntimeException ignore) {}
try {
jcodec = loadManager("boofcv.io.jcodec.JCodecVideoInterface");
} catch (RuntimeException ignore) {}
}
@Override
public > @Nullable SimpleImageSequence load( String fileName, ImageType imageType ) {
URL url = UtilIO.ensureURL(fileName);
if (url == null)
throw new RuntimeException("Can't open " + fileName);
String protocol = url.getProtocol();
// See if it's a directory and then assume it's an image sequence
if (protocol.equals("file")) {
File f = new File(url.getFile());
if (f.isDirectory())
return new LoadFileImageSequence<>(imageType, url.getFile(), null);
}
String lowerName = fileName.toLowerCase();
InputStream stream = null;
try {
stream = url.openStream();
// Use built in movie readers for these file types
if (lowerName.endsWith("mjpeg") || lowerName.endsWith("mjpg")) {
VideoMjpegCodec codec = new VideoMjpegCodec();
List data = codec.read(stream);
return new JpegByteImageSequence<>(imageType, data, false);
} else if (lowerName.endsWith("mpng")) {
return new ImageStreamSequence<>(stream, true, imageType);
}
try {
if (ffmpeg != null) {
return ffmpeg.load(fileName, imageType);
}
} catch (UnsatisfiedLinkError e) {
// Trying to run on an architecture it doesn't have a binary for.
ffmpeg = null;
} catch (RuntimeException ignore) {}
try {
if (jcodec != null) {
SimpleImageSequence sequence = jcodec.load(fileName, imageType);
System.err.println("WARNING: Using JCodec to read movie files as a last resort. " +
"Great that it works, but it's very slow. Might want to look at alternatives.");
return sequence;
}
} catch (RuntimeException e) {
System.err.println("JCodec Error: " + e.getMessage());
}
System.err.println("No working codec found for file: " + fileName);
} catch (IOException e) {
System.err.println("Error opening. " + e.getMessage());
return null;
} finally {
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
System.err.println("Failed to close stream. " + e.getMessage());
}
}
}
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.getConstructor().newInstance();
} catch (ClassNotFoundException e) {
throw new RuntimeException("Class not found. Is it included in the class path?");
} catch (InstantiationException | IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {
throw new RuntimeException(e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy