-
Notifications
You must be signed in to change notification settings - Fork 251
Create customized sidebar block with Downloads & Licensing links #242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setSeries and getSeries work by using coreIndex to compute the correct value (replaces series), while getCoreIndex and setCoreIndex use the coreIndex directly. Readers using series directly have been fixed to use getSeries. toSeries and toCoreIndex methods convert between series and core index numbers, and handle resolution flattening. All functions dealing with series numbering use these to handle conversion.
Allow use of both the http://www.leica-microsystems.com/scn/2010/03/10 and http://www.leica-microsystems.com/scn/2010/10/01 schemas. - In order to handle both schemas identically, the pixels element sizeR/sizeZ/sizeC/firstIFD attributes are no longer parsed; instead the sizes for R, Z and C are computed from the dimensions elements. We do require that the dimensions are a non-sparse array. - Fix data order as XYCZT (this matches the existing test cases). - Thumbnails: + Correct IFD mapping for thumbnails + Get thumbnail size from correct image + Use flattened resolutions when getting thumbnails
Warn if the schema is unsupported, but otherwise try to read it.
This required adding toSeries and toCoreIndex to IFormatReader (and hence ImageReader).
Subresolutions are not supported. This removes the need for series ↔ coreIndex conversion, since they are always the same.
These override the ReaderWrapper implementation, and return their argument (since subresolutions are not supported).
This enables getSeries to be O(1) in addition to coreIndex. seriesToCoreIndex and coreIndexToSeries are also O(1) when the current series/coreIndex matches their arguments. FileStitcher also has a series member, but this is currently unused; it was added purely to match the FormatReader behaviour.
The existing constructor using a reader and series number has two problems: - it's unsuitable when using non-flattened resolutions since one can't directly specify the subresolution - getSeriesCount will fail if the core[] array is not yet fully initialised, making this unusable when using during initialisation and strictly validating core[] Here, a new (simple) copy contructor that does a simple copy of the CoreMetadata is provided, and this is used directly in all readers. This is safe since they are copying their own metadata, so avoiding the reader interface is not a problem here. We also update the existing constructor to use a core index instead of series, so that it will work for all readers, whether flat or nonflat, and internally we use setCoreIndex and getCoreIndex.
Fixes #9627. See also: http://www.libpng.org/pub/mng/spec/jng.html
Noticed while looking for a dataset that contains masks.
Fixes Fiji ome#518.
Reported by Olivier Burri.
This is a continuation of what 5e5e99b was trying to accomplish.
Conflicts: ant/toplevel.xml components/legacy/ome-editor/build.properties components/legacy/ome-editor/pom.xml components/legacy/ome-notes/build.properties components/legacy/ome-notes/pom.xml
Conflicts: components/scifio/src/loci/formats/UpgradeChecker.java
The test expects the next-to-last defined URL to be invalid.
…develop Yet another build fix (develop)
Member
Author
|
Temporarily closing since final layout is still undecide (see comments of #236 vs ome/omero-documentation#150) |
Hiding header and menu when printing
Improve OMEXMLMetadata
CoreMetadata: Simplify copying and cloning
Zeiss CZI: parse Z positions from XML
Fixes for pyramid TIFF reading
Broken links
Remove legacy ome-editor and ome-notes
Convert README to Markdown
A couple of minor documentation tweaks
hflynn
pushed a commit
to hflynn/bioformats
that referenced
this pull request
Oct 11, 2013
Begin improving DSL section
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Same as #236 rebased onto
origin/develop