gitter.batch: Process a batch set of plate images

Description Usage Arguments Value Examples

View source: R/Main.R

Description

This function will process a directory or list of images in a batch. You can also use this function to process images with sparse to empty rows/columns using a reference image.

Usage

1
gitter.batch(image.files, ref.image.file = NULL, verbose = "l", ...)

Arguments

image.files

Directory containing images OR a character vector of image paths.

ref.image.file

Specifies path to a reference image, which will be used to grid images specified in image.files.

verbose

See parameters in gitter.

...

Additional parameters passed to gitter

Value

gitter.batch does not return any values. DAT and gridded files are saved to their respective directories.

Examples

1
2
3
4
5
6
7
8
9
# Processing image using reference image
# This image would typically fail to process, since its missing several rows
f = system.file("extdata", "sample_dead.jpg", package="gitter")
# We will use this image to successfully process the above image
f.ref = system.file("extdata", "sample.jpg", package="gitter")
# Process
gitter.batch(f, f.ref)

# Remember: output files by default are saved to your working directory

gitter documentation built on May 2, 2019, 9:14 a.m.