girder-dashboards-precipitate
Precipitate Analysis — a dashboard for girder-dashboards that detects precipitates in an SEM/TEM micrograph and measures their equivalent diameter and nearest-neighbour spacing.
An implementation of the pipeline from Taheri-Mousavi Laboratory / Image-analysis-precipitate-detection-and-particle-spacing-estimation, turned into something you can run from a browser.
Installing
pip install girder-dashboards-precipitate
girder-dashboards comes along as a dependency; installing this plugin adds one more card to its
gallery. Like every dashboard it arrives disabled — a site admin enables it from
Admin console → Plugins → Dashboards.
The scientific stack the analysis needs (numpy/scipy/scikit-image/tifffile/…) comes with it — it is a requirement rather than an extra, because a dashboard that can only report that it cannot compute anything is no use. Install the package in both the Girder environment and the Celery worker environment; the dashboard reports a missing dependency on its own page instead of failing a run.
There is no broker requirement: the computation runs as a Celery task on the local queue when a
worker is consuming it, and in a thread of the Girder process when none is — so a plain
girder serve works.
What it does
- Upload an SEM/TEM micrograph (TIFF, including the LZW and 16-bit variants instrument software emits). The backend reads what the file says about itself: the pixel scale, from the vendor header or from the scale bar drawn on the image, and the info panel across the bottom, which is excluded from the analysis (see below).
- Check the scale — the length of the image's scale bar in µm and how many pixels it spans, filled in already if either could be read, with a note saying where it came from.
- Choose the spacing measure — centre-to-centre or edge-to-edge.
- Select regions of interest by dragging on the image, as many as you like, or select none and the whole image is analysed as one region. Each region is detected and measured on its own and then pooled, exactly as the original treated its three separate ROI files.
- Wait — the computation is a Celery task, reported as a normal Girder job with progress.
- Read the numbers — size and spacing histograms with mean/median rules, a spacing map, the detection and nearest-neighbour overlays on the micrograph itself, and pooled and per-region statistics tables. Everything is drawn in the browser from stored numbers; the backend produces no figures.
Every input and output is a Girder object in a folder of the user's own — Precipitate Analysis/<run>/ in their user space, holding the uploaded micrograph, the preview the backend
rendered for region selection, and results.json, which carries per-particle arrays
(x, y, diameterNm, spacingNm, nnIndex, …) plus per-region and pooled statistics.
The scale, and the info panel
Both are things the instrument already recorded, so neither should have to be typed in.
The scale is looked for in two places, in order. A vendor header — TESCAN's private tag
50431, or FEI/Thermo's tag 34682 — states the pixel size outright, and the form is filled in
with the scale bar the image itself is printed with (50 µm = 370.656 px, not 1 µm = 7.4 px),
so the number on screen is one you can check against the number on the image. Failing that, the
bar drawn in the info panel is measured: that gives the pixel count but not the length
printed beside it, which is text, so the pixel count is filled in and you are asked for the
length. Either way the dashboard says which happened, marks the bar it measured on the image,
and offers the detected value back if you change it. The standard TIFF resolution tags are
deliberately not consulted: on every real micrograph tested they held a leftover screen or
print DPI, which would be a confidently wrong answer.
The info panel — the strip of instrument readings across the bottom — is found from the same header where it states one, and otherwise from the pixels, and excluded from the analysis by default. It is not specimen: its text and drawn scale bar are the brightest, roundest, most compact things in the file, and are detected as precipitates. On the sample micrograph the research code ships, leaving it in invents 35 particles and shifts the mean diameter by 2.6%; excluding it reproduces the hand-cropped file the published analysis used to within 0.02%. It is also what decides the 0-255 stretch on a 16-bit image, which is why the crop happens before the grey conversion rather than after. The panel is dimmed on the preview rather than hidden — it is where the scale bar is printed — and the exclusion is a checkbox with an editable height.
The two detection tunings published with the research code are offered as presets: fine for
small dim precipitates (725 °C, 1 hr) and coarse for large bright ones (725 °C, 5 hr). The
port is numerically faithful — see test/fidelity/compare_to_original.py, which compares every
reported statistic against the original scripts.
REST API
Under /api/v1/precipitate. Every route is @access.user and checks the dashboard document,
so disabling the dashboard from the config page disables the functionality, not just the card.
| Route | Purpose |
|---|---|
GET /precipitate/capability |
dependency probe, worker availability, presets, admin form defaults |
GET/POST /precipitate/run |
list runs; create a run folder (and the workspace on first use) |
GET/DELETE /precipitate/run/{id} |
run state; delete the folder |
POST /precipitate/run/{id}/prepare |
schedule decode + preview + scale/panel inspection |
POST /precipitate/run/{id}/analyze |
schedule the analysis; returns the job |
Settings
Editable by an admin from the dashboard's settings dialog, and used as the pre-filled values in its form:
| Key | Default | Meaning |
|---|---|---|
defaultScaleBarMicrons |
1.0 |
Scale bar length prefilled when nothing could be read |
defaultScaleBarPixels |
129 |
…and its pixel span |
defaultPreset |
"fine" |
Which detection tuning is selected initially |
defaultEdgeToEdge |
false |
Spacing measured edge-to-edge rather than centre-to-centre |
maxRegions |
12 |
Guard on how much work one run can ask for |
Development
pip install -e .
(cd girder_dashboards_precipitate/web_client && npm install && npm run build)
pytest girder_dashboards_precipitate/tests -q
ruff check .
Build the web client before running the tests — with no bundle in web_client/dist, load()
raises FileNotFoundError. See CLAUDE.md and docs/ for the rest.
Licence
BSD-3-Clause.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file girder_dashboards_precipitate-0.1.0.tar.gz.
File metadata
- Download URL: girder_dashboards_precipitate-0.1.0.tar.gz
- Upload date:
- Size: 112.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45e9cceadd68bbfb079c00362084fd3e63d0beb8b6b64c184410f5c25a46f9d6
|
|
| MD5 |
932cfb191bd958090eae039bf8ac2da7
|
|
| BLAKE2b-256 |
55c0abb88e34a8fe0b52962d6393cc621caf9dbb3003fa3d732334c54c307c27
|
Provenance
The following attestation bundles were made for girder_dashboards_precipitate-0.1.0.tar.gz:
Publisher:
release.yml on imqcam/girder-dashboards-precipitate
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
girder_dashboards_precipitate-0.1.0.tar.gz -
Subject digest:
45e9cceadd68bbfb079c00362084fd3e63d0beb8b6b64c184410f5c25a46f9d6 - Sigstore transparency entry: 2260022096
- Sigstore integration time:
-
Permalink:
imqcam/girder-dashboards-precipitate@8cb7096b1d5a8bda4a4203b661c4697dadcae16a -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/imqcam
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8cb7096b1d5a8bda4a4203b661c4697dadcae16a -
Trigger Event:
push
-
Statement type:
File details
Details for the file girder_dashboards_precipitate-0.1.0-py3-none-any.whl.
File metadata
- Download URL: girder_dashboards_precipitate-0.1.0-py3-none-any.whl
- Upload date:
- Size: 115.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3913c26a4fdc3d8f6ced77c010105fdc5b2de37389730330322086ca3441c62c
|
|
| MD5 |
8ec502b7115a2b32c31b52778d03f1e4
|
|
| BLAKE2b-256 |
38cc5117c3c82b5952c08ff93b428c5ee587e1403367ecbf7f274a5dbb9fe3be
|
Provenance
The following attestation bundles were made for girder_dashboards_precipitate-0.1.0-py3-none-any.whl:
Publisher:
release.yml on imqcam/girder-dashboards-precipitate
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
girder_dashboards_precipitate-0.1.0-py3-none-any.whl -
Subject digest:
3913c26a4fdc3d8f6ced77c010105fdc5b2de37389730330322086ca3441c62c - Sigstore transparency entry: 2260022130
- Sigstore integration time:
-
Permalink:
imqcam/girder-dashboards-precipitate@8cb7096b1d5a8bda4a4203b661c4697dadcae16a -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/imqcam
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@8cb7096b1d5a8bda4a4203b661c4697dadcae16a -
Trigger Event:
push
-
Statement type: