Examples of autoWindow()


Examples of clips.dicom.Image.DICOMImage.autoWindow()

  public void autoWindow(int curImageID, double beginPocent, double endProcent) {
    DICOMImage    img = getImage(curImageID);
    if (img == null){
      return;
    }
    img.autoWindow(beginPocent, endProcent);
    setMinMax(curImageID, img.getMin(), img.getMax());
  }

  public ArrayList<DICOMImage> getImages() {
    return new ArrayList<DICOMImage>(images);
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.