Skip to content

Commit

Permalink
fix a very annoying little bug
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoKiaru committed Nov 16, 2023
1 parent af5d215 commit 615c7dc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public BioFormatsOpener(
IFormatReader reader = pool.takeOrCreate();
reader.setSeries(iSerie);
this.omeMeta = (IMetadata) reader.getMetadataStore();
nChannels = reader.getSizeC();
nChannels = this.omeMeta.getChannelCount(iSerie);//reader.getSizeC();
this.nMipMapLevels = reader.getResolutionCount();
this.nTimePoints = reader.getSizeT();

Expand Down

0 comments on commit 615c7dc

Please sign in to comment.