Package org.imagearchive.lsm.toolbox.info

Examples of org.imagearchive.lsm.toolbox.info.ChannelWavelengthRange


    return timeStamps;
  }

  private ChannelWavelengthRange getLambdaStamps(RandomAccessStream stream,
      long position) {
    ChannelWavelengthRange channelWavelength = new ChannelWavelengthRange();
    try {
      stream.seek((int) position);
      channelWavelength.Channels = ReaderToolkit.swap(stream.readInt());
      channelWavelength.StartWavelength = new double[(int) channelWavelength.Channels];
      channelWavelength.EndWavelength = new double[(int) channelWavelength.Channels];
View Full Code Here

TOP

Related Classes of org.imagearchive.lsm.toolbox.info.ChannelWavelengthRange

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.