~~NOTOC~~ ===== Imaris - Java ===== Here is some notes on accessing Imaris contents from Java. Since this example uses COM interface via jacob.dll, platform is limited to windows. ==== Setup ==== There is a breif description in http://www.bitplane.com/go/products/imarisxt
In order to run the JACOB demo, the Java COM Bridge needs to be installed (put the jacob.dll into /bin and the jacob.jar into /lib/ext). The demo does similar things like the demos above: Start Imaris, load a Dataset, perform some action with the image, and terminate Imaris. Many thanks for providing the source code to Volker Bäcker, Monpellier RIO Imaging.
So accessing Imaris from Java requires Jacob pakage (Java - COM Bridge, http://sourceforge.net/projects/jacob-project/). When I downloaded the latest version, two .dll files were included in the package and no jacob.dll.
Jacob.jar relies on a DLL file that it loads off of the library path or classpath. This means that you must either copy the appropriate jacob ddll into your path or use VM options to add directory holding jacob dll to the path. Prior to 1.14M6, the jacob DLL name was alwasy "jacob.dll". This made it hard to verify jacob was loading the correct dll when multiple copies of jacob were installed on a single system. It also was confusing on 64 bit systems where the 32 bit and 64 bit dlls have the same tames. Starting in 1.14M6, Jacob's library loader selects a dll with the appropriate name based on the jacob release and platform. The dll naming convention is: jacob..dll
There actually are following two .dll files in the package. * jacob-1.15-M3-x64.dll * jacob-1.15-M3-x86.dll I copied them under C:\Sun\SDK\jdk\jre\bin, where my system PATH is already set. jacob.jar was as it is so this was copied under C:\Sun\SDK\jdk\jre\lib\ext ==== Testing java applicaiton using example downloadable from Bitplane ==== Example java code by Volker Bäcker is available in the Bitplane site linked above. I downloaded the java file and then made it testable in Eclipse (simply add jacob.jar file in the project build path). === Start button: starts up Imaris === Starting up of imaris uses ActiveX control. Useful tool for viewing ActiveX control: checking progID (activeXID). http://www.nirsoft.net/utils/axhelper.html Constructor of imaris class instance is as follows, within getStartImarisButton(). public void actionPerformed(java.awt.event.ActionEvent e) { if (imarisApplication == null) { imarisApplication = new ActiveXComponent("Imaris.Application"); imarisApplication.setProperty("mVisible", true); } } "mVisible" is a property of IApplication Interface and details are in: http://www.bitplane.com/products/imarisxt/doc/interfaceIApplication.html#6dd1946c64e40cac3f7ca33fc85e520c ActiveXComponent is a class provided in Jacob package, and accessing Imaris functions are mostly done through the method of this class. Java doc is at: http://www.jarvana.com/jarvana/view/net/sf/jacob-project/jacob/1.14.3/jacob-1.14.3-javadoc.jar!/api/com/jacob/activeX/ActiveXComponent.html === text field & "Load" button (first and second line) === Load button sends command to Imaris by following three lines in method getLoadImage1Button(). Variant parameter1 = new Variant(imagePath1TextField.getText()); Variant parameter2 = new Variant(""); imarisApplication.invoke("FileOpen",parameter1, parameter2); imarisapplication is an instance of ActiveXComponent constructed above. Class Variant is described in the Jacob Java doc: http://www.jarvana.com/jarvana/view/net/sf/jacob-project/jacob/1.14.3/jacob-1.14.3-javadoc.jar!/api/com/jacob/com/Variant.html "FileOpen" is a member funciton of IApplication Interface and details are in: http://www.bitplane.com/products/imarisxt/doc/interfaceIApplication.html#eef133819f46ccfb4af8a4483990436f By the way, imarisapplication is initialized in the method "initialize()" as follows: private void initialize() { this.setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); this.setContentPane(getJPanel()); this.setSize(440, 545); this.setTitle("Hello Imaris DataSet"); this.addWindowListener(new java.awt.event.WindowAdapter() { public void windowClosing(java.awt.event.WindowEvent e) { if (imarisApplication != null) { imarisApplication.setProperty("mUserControl", !checkbox.getState()); } } }); } details on the IApplication interface property "mUserControl" is in: http://www.bitplane.com/products/imarisxt/doc/interfaceIApplication.html#6caedd58b0c5f2cc2c7e5f03acb1e15f === getSize button === (does not work, returs error in the current state) Initialization This button's action is as follows: public void actionPerformed(java.awt.event.ActionEvent e) { ActiveXComponent dataSet = imarisApplication.getPropertyAsComponent("mDataSet"); int type = dataSet.getPropertyAsInt("mType"); typeComboBox.setSelectedIndex(type); xTextField.setText(dataSet.getPropertyAsString("mSizeX")); yTextField.setText(dataSet.getPropertyAsString("mSizeY")); zTextField.setText(dataSet.getPropertyAsString("mSizeZ")); chTextField.setText(dataSet.getPropertyAsString("mSizeC")); tTextField.setText(dataSet.getPropertyAsString("mSizeT")); } mDataset: IApplicaiton property http://www.bitplane.com/products/imarisxt/doc/interfaceIApplication.html#066c16450138b617b1b031352731fdb3 mSizeX: IDataSet property http://www.bitplane.com/products/imarisxt/doc/interfaceIDataSet.html#5344b4751d9a543ffefcb9c9e0762cc9