Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/imcflibs/imagej/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@
return imaris_paths[-1]


def run_imarisconvert(file_path):
def run_imarisconvert(file_path, pixel_calibration=None):
"""Convert a given file to Imaris format using ImarisConvert.

Convert the input image file to Imaris format (Imaris5) using the
Expand All @@ -680,6 +680,9 @@
----------
file_path : str
Absolute path to the input image file.
pixel_calibration : tuple or list, optional
Sequence of 3 values (x, y, z) representing voxel dimensions to be set during
conversion, by default None.
"""
# in case the given file has the suffix `.ids` (meaning it is part of an
# ICS-1 `.ics`+`.ids` pair), point ImarisConvert to the `.ics` file instead:
Expand All @@ -694,6 +697,13 @@
file_path,
file_path.replace(file_extension, ".ims"),
)
if pixel_calibration:
command = command + " --voxelsizex %s --voxelsizey %s --voxelsizez %s" % (

Check warning on line 701 in src/imcflibs/imagej/misc.py

View check run for this annotation

Codecov / codecov/patch

src/imcflibs/imagej/misc.py#L700-L701

Added lines #L700 - L701 were not covered by tests
pixel_calibration[0],
pixel_calibration[1],
pixel_calibration[2],
)

log.debug("\n%s" % command)
IJ.log("Converting to Imaris5 .ims...")
result = subprocess.call(command, shell=True, cwd=imaris_path)
Expand Down
Loading