-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/hzarei4/SyntheticObjects.jl
- Loading branch information
Showing
13 changed files
with
1,169 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
|
||
python3 -m http.server --bind localhost |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Objects | ||
```@docs | ||
pollen3D | ||
object_3D | ||
filaments3D | ||
draw_sphere! | ||
draw_line! | ||
filaments3D! | ||
spokes_object | ||
hollow_sphere! | ||
resolution_test | ||
hollow_sphere | ||
annotation_3D! | ||
matrix_read | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,42 @@ | ||
# SyntheticObjects.jl Documentation | ||
# SyntheticObjects.jl | ||
|
||
```@docs | ||
pollen3D(x) | ||
``` | ||
|
||
```@docs | ||
object_3D | ||
``` | ||
This package creates several synthetic objects in Julia to further process in the image processing routines. | ||
|
||
```@docs | ||
filaments3D | ||
``` | ||
## Overview | ||
Using this package, user can generate different objetcs for the pupose of image processing. This package contains 2D as well as 3D samples | ||
of different objects (Numbers, Alphabets, and objects). | ||
|
||
```@docs | ||
draw_sphere! | ||
``` | ||
|
||
```@docs | ||
annotation_3D! | ||
``` | ||
## Installation | ||
`SyntheticObjects.jl` can be installed using the command: | ||
|
||
```@docs | ||
draw_line! | ||
```julia | ||
julia> ] add SyntheticObjects | ||
``` | ||
|
||
```@docs | ||
filaments3D! | ||
``` | ||
|
||
## Examples | ||
|
||
```@docs | ||
matrix_read | ||
``` | ||
```julia | ||
julia> using SyntheticObjects | ||
|
||
```@docs | ||
spokes_object | ||
``` | ||
# this generates a pollen grain object array | ||
arr_pollen = pollen3D((256, 256, 256)); | ||
|
||
```@docs | ||
hollow_sphere! | ||
``` | ||
|
||
```@docs | ||
resolution_offset | ||
# a set of filaments in 3D: | ||
arr_filaments = filaments3D((256,256,256)) | ||
|
||
# and so on ... | ||
``` | ||
### Image of the pollen object (plotted using [`View5D.jl`](https://github.com/RainerHeintzmann/View5D.jl) package) | ||
![](assets/arr_pollen.png) | ||
|
||
### Image of the filaments (plotted using [`View5D.jl`](https://github.com/RainerHeintzmann/View5D.jl) package) | ||
![](assets/arr_filaments.png) | ||
|
||
|
||
|
||
```@docs | ||
hollow_sphere | ||
``` | ||
### Image of the resolution test (plotted using [`View5D.jl`](https://github.com/RainerHeintzmann/View5D.jl) package) | ||
![](assets/arr_resolution_test.png) |
Oops, something went wrong.