R/image_registration.R
preprocessImageToMatrix.Rd
Preprocess a image path to the required matrix format for Image registration pipeline built on scikit-image
preprocessImageToMatrix(
x,
invert = FALSE,
equalize_histogram = TRUE,
flip_vertical = FALSE,
flip_horizontal = FALSE,
rotate_90 = FALSE,
use_single_channel = FALSE,
single_channel_number = NULL,
pkg_ptr
)
input file path, required
whether or not to invert intensity to make calculation of descriptors more accurate, default FALSE
whether or not to calculate equalized histogram of the image,default TRUE
whether or not to flip vertical, default FALSE
whether or not to flip horizontal, default FALSE
whether or not to rotates the image 90 degrees counter-clockwise, default FALSE
If input is a multichannel image, whether or not to extract single channel, default FALSE
Channel number in the multichannel image, required if use_single_channel = TRUE
a matrix array to input to .sift_detect