Package fiftyone.mobile.detection.entities

Examples of fiftyone.mobile.detection.entities.Version


     * @param reader Reader connected to the source data structure and
     * positioned to start reading
     */
    public Dataset(BinaryReader reader) throws IOException {
        // Read the detection data set headers.
        version = new Version(reader.readInt32(), reader.readInt32(),
                reader.readInt32(), reader.readInt32());

        // Throw exception if the data file does not have the correct
        // version in formation.
        if (version.major != DetectionConstants.FormatVersion.major
View Full Code Here

TOP

Related Classes of fiftyone.mobile.detection.entities.Version

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.