SkillAgentSearch skills...

Isyntax2raw

iSyntax to raw format converter

Install / Use

/learn @glencoesoftware/Isyntax2raw
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

iSyntax Converter

Python tool that uses Philips' SDK to write slides in an intermediary raw format.

Requirements

  • Python 3.6+
  • Philips iSyntax SDK (https://www.openpathology.philips.com)

The iSyntax SDK must be downloaded separately from Philips and the relevant license agreement agreed to before any conversion can take place.

As of version 0.4.0, which has a Python 3.6+ requirement, the supported iSyntax SDK versions and environments are as follows:

  • iSyntax SDK 1.2.1 (CentOS 7, Ubuntu 18.04, Windows 10 64-bit)
  • iSyntax SDK 2.0 (CentOS 8, Ubuntu 18.04, Windows 10 64-bit)

Usage

Basic usage is:

isyntax2raw write_tiles /path/to/input.isyntax /path/to/directory.zarr

Please see isyntax2raw write_tiles --help for detailed information.

Output tile width and height can optionally be specified; default values are detailed in --help.

A directory structure containing the pyramid tiles at all resolutions and macro/label images will be created. The default format is Zarr compliant with https://ngff.openmicroscopy.org/0.4. Additional metadata is written to a JSON file. Be mindful of available disk space, as larger .isyntax files can result in >20 GB of tiles.

Use of the Zarr file type will result in losslessly compressed output. This is the only format currently supported by the downstream raw2ometiff (as of version 0.3.0).

Supported data types

Brightfield RGB with 8 bits per component is supported in all versions.

Brightfield RGB with 16 bits per component is supported in 0.7.0 and later. By default, all 16 bits per component are converted. If 8 bit output is required instead, the --linear16to8=true option can be used to convert to 8 bit before writing to Zarr, for example:

isyntax2raw write_tiles /path/to/input.isyntax /path/to/directory.zarr --linear16to8=true

Conversion from 16 to 8 bits is performed using the Linear16ToSRGB8 filter built in to the Philips SDK.

Any other data types are not currently supported.

Background color

Any missing tiles are filled with 0 by default, which displays as black. The fill value can be changed using the --fill_color option, which accepts a single integer between 0 and 255 inclusive. Setting --fill_color=255 will cause any missing tiles to display as white.

Performance

This package is highly sensitive to underlying hardware as well as the following configuration options:

  • --max_workers
  • --tile_width
  • --tile_height
  • --batch_size

On systems with significant I/O bandwidth, particularly SATA or NVMe based storage, we have found sharply diminishing returns with worker counts > 4. There are significant performance gains to be had utilizing larger tile sizes but be mindful of the consequences on the downstream workflow. You may find increasing the batch size on systems with very high single core performance to give modest performance gains.

In general, expect to need to tune the above settings and measure relative performance.

License

The iSyntax converter is distributed under the terms of the BSD license. Please see LICENSE.txt for further details.

Related Skills

View on GitHub
GitHub Stars24
CategoryDevelopment
Updated10d ago
Forks19

Languages

Python

Security Score

90/100

Audited on Mar 26, 2026

No findings