I ran into a problem when trying to add the OIB -> OME-TIFF converter (https://www.openmicroscopy.org/site/sup ... rsion.html) to my workflow in Matlab (R2013 in Ubuntu 14.04) as a new user to OME.
I managed to get the FileConvert.java finally compiled (by downgrading my default JDK) so that it was accessible by Matlab without the
- Code: Select all
"java.lang.UnsupportedClassVersionError: FileConvert: Unsupported major.minor version 51.0"
However now I got the following error which I do not understand really as I am not that familiar with Java (and using Java files in Matlab) when I try to create an instance to the FileConvert
- Code: Select all
>> i = FileConvert()
No constructor 'FileConvert' with matching signature found.
Which according to this (http://undocumentedmatlab.com/blog/java ... s-pitfalls) would be due to non-public class but this does not seem to be the case with FileConvert.java, so any idea of how to get the converter working in Matlab?
Thanks