Learn R Programming

x3ptools (version 0.0.2)

sample_x3p: Sample from an x3p object

Description

Sample from an x3p object

Usage

sample_x3p(x3p, m = 2, mY = m, offset = 0, offsetY = offset)

Arguments

x3p

x3p object

m

integer value - every mth value is included in the sample

mY

integer value - every mth value is included in the sample in x direction and every mYth value is included in y direction

offset

integer value between 0 and m-1 to specify offset of the sample

offsetY

integer value between 0 and mY-1 to specify different offsets for x and y direction

Value

down-sampled x3p object

Examples

Run this code
# NOT RUN {
logo <- read_x3p(system.file("csafe-logo.x3p", package="x3ptools"))
dim(logo$surface.matrix)
# down-sample to one-fourth of the image:
logo4 <- sample_x3p(logo, m=4)
dim(logo4$surface.matrix)
# }
# NOT RUN {
image_x3p(logo)
image_x3p(logo4)
# }

Run the code above in your browser using DataLab