Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hzarei4/syntheticobjects.jl
Generates 2D and 3D objects which can be used in the image processing routines as test images.
https://github.com/hzarei4/syntheticobjects.jl
image-processing julia julia-language test-images
Last synced: 2 months ago
JSON representation
Generates 2D and 3D objects which can be used in the image processing routines as test images.
- Host: GitHub
- URL: https://github.com/hzarei4/syntheticobjects.jl
- Owner: hzarei4
- License: mit
- Created: 2024-04-14T12:55:46.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-07-23T11:31:44.000Z (5 months ago)
- Last Synced: 2024-10-12T19:21:35.421Z (2 months ago)
- Topics: image-processing, julia, julia-language, test-images
- Language: Julia
- Homepage: https://hzarei4.github.io/SyntheticObjects.jl/
- Size: 307 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SyntheticObjects
| **Documentation** | **Build Status** | **Code Coverage** |
|:---------------------------------------:|:-----------------------------------------:|:-------------------------------:|
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][CI-img]][CI-url] | [![][codecov-img]][codecov-url] |This package creates several synthetic objects in Julia to further process in the image processing routines.
## Installation
`SyntheticObjects.jl` can be installed using the command:```julia
julia> ] add SyntheticObjects
```## Examples
```julia
julia> using SyntheticObjects# this generates a pollen grain object array
arr_pollen = pollen3D((256, 256, 256));# Or you can create a set of filaments in 3D:
arr_filaments = filaments3D((100,100,100); rel_theta=0, rand_offset=(0.2, 0.2, 0))
```[docs-dev-img]: https://img.shields.io/badge/docs-dev-orange.svg
[docs-dev-url]: https://hzarei4.github.io/SyntheticObjects.jl/dev/[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg
[docs-stable-url]: https://hzarei4.github.io/SyntheticObjects.jl/stable/[codecov-img]: https://codecov.io/gh/hzarei4/SyntheticObjects.jl/branch/master/graph/badge.svg
[codecov-url]: https://codecov.io/gh/hzarei4/SyntheticObjects.jl[CI-img]: https://github.com/hzarei4/SyntheticObjects.jl/workflows/CI/badge.svg
[CI-url]: https://github.com/hzarei4/SyntheticObjects.jl/actions?query=workflow%3ACI