https://github.com/rand-asswad/active-contour-models
Active Contour Models (Snakes)
https://github.com/rand-asswad/active-contour-models
active-contours image-processing level-set-method numerical-tools python
Last synced: 29 days ago
JSON representation
Active Contour Models (Snakes)
- Host: GitHub
- URL: https://github.com/rand-asswad/active-contour-models
- Owner: rand-asswad
- License: other
- Created: 2020-02-19T18:28:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-22T05:19:47.000Z (over 3 years ago)
- Last Synced: 2025-01-08T03:11:44.483Z (over 1 year ago)
- Topics: active-contours, image-processing, level-set-method, numerical-tools, python
- Language: HTML
- Homepage: https://rand-asswad.github.io/active-contour-models/
- Size: 22.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: license.yml
Awesome Lists containing this project
README
# Documentation
The documentation is built with [R Markdown](https://rmarkdown.rstudio.com/) and hosted with [Github Pages](https://pages.github.com/).
R Markdown is an awesome tool that features:
- [knitr](https://yihui.org/knitr/): an **R** engine for embedding code chunks in Markdown files.
- [pandoc](https://pandoc.org/): a universal document convertor.
For more details, refer to [R Markdown: The Definitive Guide](https://bookdown.org/yihui/rmarkdown/) or [bookdown](https://bookdown.org/yihui/bookdown/).
## Installation
In your **R** console run the following code.
```r
install.packages('bookdown')
# For PDF output install TinyTeX
install.packages("tinytex")
tinytex::install_tinytex()
```
## Usage
```sh
# Generate book.pdf (via LaTeX)
make pdf
# Generate index.html
make html
```
## Directory Content
```
docs/
├── img/ # Image dir
├── include/ # TeX and HTML options
├── parts/ # Markdown content
├── _bookdown.yml # bookdown options
├── _output.yml # rmd output options
├── book.pdf # PDF output
├── index.html # HTML output
├── main.rmd # main MD file
├── Makefile
└── README.md
```