opening SCN file in MATLAB
9 ビュー (過去 30 日間)
古いコメントを表示
I have downloaded the Bio-Formats zipped folder bfmatlab and unzipped on my MATLAB path. But I still can't use function bfopen().The error information as pictures.
1 件のコメント
Walter Roberson
2020 年 10 月 26 日
I would experiment with renaming the file so that it did not have periods in the name except before scn
回答 (1 件)
Priysha LNU
2020 年 10 月 28 日
Hi,
Please check the version of the Bio-Formats library being used by the following command:
disp(char(loci.formats.FormatTools.VERSION))
If this results in the following isse,
Undefined variable "loci" or class "loci.formats.FormatTools.VERSION".
then the Bio-Formats JARs are not on the Java classpath. If you have downloaded the latest Bio-Formats MATLAB toolbox, you should be able to put these JARs on the classpath and return the version of the library via:
[status,version] = bfCheckJavaPath()
Having performed these operations, please try re-running the toolbox function:
data = bfopen('<filename>.scn');
If there is still an error, please consider renaming the '.scn' file to a string which does not contain any characters (.,/?<>:;'"*&^%$#@<space>) and try re-rerunning the command.
DISCLAIMER: These are my own views and in no way depict those of MathWorks.
4 件のコメント
JSC
2021 年 4 月 12 日
I know this is months later, but it looks to me like the issue is that you named your file "try. scn" with a space after the period, instead of "try.scn" without a space.
参考
カテゴリ
Help Center および File Exchange で Call C++ from MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!