项目作者: surh

项目描述 :
Rosette Detection with SVM
高级语言: R
项目地址: git://github.com/surh/RosetteDetector.git
创建时间: 2017-06-23T21:21:48Z
项目社区:https://github.com/surh/RosetteDetector

开源协议:GNU General Public License v3.0

下载


DOI Build Status codecov

RosetteDetector

An R package for detecting annd measuring size of Arabidopsis rosettes.

Uses a Support Vector Machine to find the plant.

Visit the package’s website.

Installation

It is also recommended that you install the R package devtools. Just launch R and type:

  1. install.packages("devtools")

Once you have devtools installed, you can install with:

  1. devtools::install_github("surh/RosetteDetector/")

Development version

Build Status codecov

For the development version, one must switch to the dev branch.

  1. devtools::install_github("surh/RosetteDetector/", ref='dev')

Dependencies

The full list of dependencies is specified in the “Imports” and “Suggests” fields of the DESCRIPTION file.

R should automatically pull and install all the dependencies that are on CRAN. You can also manually install them with
the base R function install.packages.

EBImage must be installed via bioconductor and
you can find installation instructions that package’s website. Typically you would type the following in the R prompt:

  1. ## try http:// if https:// URLs are not supported
  2. source("https://bioconductor.org/biocLite.R")
  3. biocLite("EBImage")

Usage

For a basic introduction to the usage. Please look at the basic pipeline vignette.

If you have already installed the package you can use the following
command in the R prompt:

  1. vignette('pipeline', package = 'RosetteDetector')

You can also find where the vignette was installed in your system by
typing:

  1. system.file("doc",package = "RosetteDetector", mustWork = TRUE)

For the full documentation, please look at the package’s reference

Citation

If you use this code, please use the version’s DOI.

DOI

Copyright & license

  1. (C) Copyright 2017-2018 Sur Herrera Paredes
  2. This program is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. This program is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU General Public License for more details.
  10. You should have received a copy of the GNU General Public License
  11. along with this program. If not, see <http://www.gnu.org/licenses></http:>.