Examples of VolumeReader


Examples of net.sourceforge.theba.core.io.VolumeReader

     *
     * @param z The depth-index in the stack
     * @return A short[]-array representing the current stack at posistion z
     */
    public short[] getSlice(int z) {
        VolumeReader ip = getCurrentView().getSliceReader();
        if (ip == null)
            return null;
        return ip.getSlice(z);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.