Package org.imagearchive.lsm.toolbox.info.scaninfo

Examples of org.imagearchive.lsm.toolbox.info.scaninfo.Track


    int tracksnum = 0;
    while (tag.entry != 0x0FFFFFFFF) {
      tag = getScanInfoTag(stream);
      if (Track.isTrack(tag.entry)) {
        tracksnum++;
        Track t = new Track();
        while (tag.entry != 0x0FFFFFFFF) {
          tag = getScanInfoTag(stream);

          if (IJ.debugMode)
            IJ.log("Tracktag: " + Long.toHexString(tag.entry));
View Full Code Here

TOP

Related Classes of org.imagearchive.lsm.toolbox.info.scaninfo.Track

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.