Home

Awesome

MIRTjim

https://github.com/JeffFessler/MIRTjim.jl

docs-stable docs-dev action status pkgeval status codecov license Aqua QA code-style deps version pkgeval

This Julia package exports the jim method that provides a "jiffy image display" for showing 2D grayscale and color images (and 3D images as a mosaic). It is basically a wrapper around Plots.heatmap with natural defaults. As of v0.9 it supports axes, colorbar limit (clim) and images with physical units.

Getting started

using Pkg
Pkg.add("MIRTjim")

Example

using MIRTjim: jim
z = (1:7) .+ (1:4)' # 7 × 4 matrix
jim(z ; title="example") # figure

For more examples, see the documentation.

Helper functions

This repo also exports some small helper functions.

Notes

This method is used in many of the image reconstruction examples in https://github.com/JuliaImageRecon.

Isolating these functions in this repo, separate from other repos like the Michigan Image Reconstruction Toolbox (MIRT) keeps those repos lighter by avoiding a dependence on Plots.jl there.

Compatibility

Tested with Julia ≥ 1.10.

Related packages

<!-- URLs -->