openslide-java
openslide-java copied to clipboard
Java bindings to OpenSlide
#81 added support for reading ICC profiles, but did not add automatic color conversion; ICC profiles from certain slides would cause exceptions in Java's color conversion code. If possible, add...
```java OpenSlide os = null; try { os = new OpenSlide(infile); int levelCount = os.getLevelCount(); // 切割 for (int n = levelCount - 1; n > -1; n--) { //n表示层级,也表示需要创建的文件夹名字...
Migrated from `TODO.txt`: https://github.com/openslide/openslide-java/blob/6fe2d4c949d09af2465360f03b6b3175e9c10112/TODO.txt#L3
Migrated from `TODO.txt`: https://github.com/openslide/openslide-java/blob/6fe2d4c949d09af2465360f03b6b3175e9c10112/TODO.txt#L1
There are three methods, consisting of the low-level `read_region` wrapper plus two additional layers of wrappers. Their names and parameter lists aren't particularly clear/consistent. The low-level method, at least, should...
Hello. I am new to openslide and i am working on a project in which i want to view a wsi on panels and frames, just like in Demo.java that...
I'm using openslide-java to create thumbnail images of slides. It works correctly for most slides but if a slide contains a transparent section then that part is rendered as black....
`OpenSlide.createThumbnailImage(size)` creates poor-quality images when the desired size is significantly smaller than the smallest layer included in the slide. For example we have a slide with three layers. The sizes...
The OpenSlide Python test suite includes some small slide files we can bundle.
The `gui` subpackage should be fixed up or dropped from the public API.