Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seung-lab/contact-points
Find contact points in a 3D Volume.
https://github.com/seung-lab/contact-points
3d connected-components image-processing numpy volumetric-data
Last synced: about 1 month ago
JSON representation
Find contact points in a 3D Volume.
- Host: GitHub
- URL: https://github.com/seung-lab/contact-points
- Owner: seung-lab
- License: apache-2.0
- Created: 2019-10-16T13:22:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-02T00:37:35.000Z (over 3 years ago)
- Last Synced: 2024-09-29T00:22:47.666Z (about 2 months ago)
- Topics: 3d, connected-components, image-processing, numpy, volumetric-data
- Language: Python
- Homepage:
- Size: 438 KB
- Stars: 6
- Watchers: 17
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![PyPI version](https://badge.fury.io/py/contact-points.svg)](https://badge.fury.io/py/contact-points)
Contact Points
==============```python
import contact_points
l1 = 1
l2 = 2
pts = contact_points.find_contact_points(data, l1, l2)
>>> [ (x,y,z), (x,y,z), ... ] # label1, label2, label1, label2
```A collection of algorithms for finding the contacts between one or more connected components in a 3D labeled image.