我知道有一個ImageJ插件處理NIfTI-1文件(http://rsb.info.nih.gov/ij/plugins/nifti.html)。知道什麼方法在.jar文件
但是該頁面上的所有說明都是使用ImageJ作爲獨立程序,但是我正在使用它的API。我怎樣才能知道這個jar文件沒有它的源文件有什麼方法可用?
我也找不到源代碼。
對於ImageJ的(如DICOM)支持的檔案是很容易的:
public class ImageJTest {
public static void main(){
String path = "res/vaca.dcm";
FileInputStream fis;
ImageView image;
try {
fis = new FileInputStream(path);
DICOM d = new DICOM(fis);
d.run(path);
// Stretches the histogram because the pictures were being
// displayed too dark.
(new ij.plugin.ContrastEnhancer()).stretchHistogram(d, 0.1);
Image picture = SwingFXUtils.toFXImage(d.getBufferedImage(),
null);
// Makes the size standard for thumbnails
image = new ImageView(picture);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
}
我如何可以加載ImageJ中的NIfTI-1文件?
Erreur 403 - Refuter de traitement de larequête(Interdit - Forbidden) – Mansueli
你也可以從這裏得到它。 http://www.softpedia.com/get/Programming/Debuggers-Decompilers-Dissasemblers/JD-GUI.shtml – simion