Fast local thickness in 3D and 2D.
Project description
localthickness
Fast local thickness in 3D and 2D. Implements the algorithm described in our CVPR-W (CVMI) paper.
Installation
Install the module using pip install localthickness or clone the repository.
Use
import localthickness as lt
# Make a binary test volume.
B = lt.create_test_volume((100, 500, 400), sigma=15, boundary=0.001)
# Compute thickness and separation.
thickness = lt.local_thickness(B, scale=0.5)
separation = lt.local_thickness(~B, scale=0.5)
# Visualize.
import matplotlib.pyplot as plt
fig, ax = plt.subplots(1, 3, figsize=(10, 5))
ax[0].imshow(B[10])
ax[1].imshow(thickness[10], cmap=lt.black_plasma())
ax[2].imshow(separation[10], cmap=lt.white_viridis())
Paper
The fast local thickness method is described and evaluated in our contribution to the 8th IEEE Workshop on Computer Vision for Microscopy Image Analysis (CVMI), held in conjunction with the CVPR 2023 conference. Please cite our paper if you use the method in your work.
@inproceedings{dahl2023fast,
title={Fast Local Thickness},
author={Dahl, Vedrana Andersen and Dahl, Anders Bjorholm},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops},
pages={4335--4343},
year={2023}
}
Project details
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 localthickness-0.1.3.tar.gz.
File metadata
- Download URL: localthickness-0.1.3.tar.gz
- Upload date:
- Size: 19.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a24f6f615952b3ab0cb9a3ad82f288da96b9690fde52e9493f4d895ec2e89e51
|
|
| MD5 |
3bc79fbda13b1802a742d2cf21f840b2
|
|
| BLAKE2b-256 |
4db84f20832ae822973a301a3cdadbde84978086a8b8f3016cf596b354f1a582
|
File details
Details for the file localthickness-0.1.3-py3-none-any.whl.
File metadata
- Download URL: localthickness-0.1.3-py3-none-any.whl
- Upload date:
- Size: 20.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ee4c1d67fff657449fcaeb603345deb61e2437f86c76c67125f744ac054e08c9
|
|
| MD5 |
046e7ef310e746fc23f6d43431f99160
|
|
| BLAKE2b-256 |
1f5c472f93439458d7a29b37dd6d9215cfc54fcd9d5f9fe005d5280c86163e1e
|