Learn R Programming

Momocs (version 1.1.6)

import_jpg: Extracts outline coordinates from multiple .jpg files

Description

This function is used to import outline coordinates and is built around import_jpg1.

Usage

import_jpg(jpg.paths = NULL, auto.notcentered = TRUE,
  fun.notcentered = NULL, threshold = 0.5, verbose = TRUE)

Arguments

jpg.paths
a vector of paths corresponding to the .jpg files to import. If not provided (or NULL), switches to the automatic version. See Details below.
auto.notcentered
logical if TRUE random locations will be used until. one of them is (assumed) to be within the shape (because of a black pixel); if FALSE a locator will be called, and you will have to click on a point within the shape.
fun.notcentered
NULL by default. Is your shapes are not centered and if a random pick of a black pixel is not satisfactory. See import_jpg1 help and examples.
threshold
the threshold value use to binarize the images. Above, pixels are turned to 1, below to 0.
verbose
whether to print which file is being treated. Useful to detect problems.

Value

a list of matrices of (x; y) coordinates that can be passed to Out

Details

see import_jpg1 for important informations about how the outlines are extracted, and import_Conte for the algorithm itself. If jpg.paths is not provided (or NULL), you will have to select any .jpg file in the folder taht contains all your files. All the outlines should be imported then.

See Also

Other babel functions: bind_db, chc2Out, chc2pix, import_StereoMorph_curve1, import_tps, nef2Coe, ntsrow2Coo, pix2chc, tie_jpg_txt, tps2coo

Examples

Run this code
## Not run: ------------------------------------
# 
# # if your images are in the folder '/foo/jpgs/'
# lf <- list.files('/foo/jpegs', full.names=TRUE)
# coo <- import_jpg(lf)
# Out(coo)
# 
# # 'automatic' version
# coo <- import_jpg()
## ---------------------------------------------

Run the code above in your browser using DataLab