CellomicsReader modification
Posted: Fri May 03, 2013 1:12 pm
Hi,
I am not sure if this is the right place to ask about it.
I am using CellomicsReader to read images. I have found that a huge part of time is spend in checking if a file is hidden.
in line 140 of
loci/formats/in/CellomicsReader.java
Changing the boolean literal to false (not checking if files are hidden) improves performance of the reader greatly.
Is this possible to get something like this in the new bioformats release?
Or can I submit a patch myself somewhere?
I am not sure if this is the right place to ask about it.
I am using CellomicsReader to read images. I have found that a huge part of time is spend in checking if a file is hidden.
in line 140 of
loci/formats/in/CellomicsReader.java
- Code: Select all
(...)
String[] list = parent.list(true);
Changing the boolean literal to false (not checking if files are hidden) improves performance of the reader greatly.
Is this possible to get something like this in the new bioformats release?
- Code: Select all
private static boolean noHiddenFiles = true;
public static void setNoHiddenFiles(boolean v) { noHiddenFiles = v; }
(...)
String[] list = parent.list(noHiddenFiles);
Or can I submit a patch myself somewhere?