R/initImages.R

Defines functions initImages

Documented in initImages

#' @title To display an image.
#' @description An auxiliar function to display a picture.
#' @param path is a file path.
#' @export
#' @importFrom magick image_read

initImages <- function(path){
  img <- image_read(path)
  plot(img)
}

Try the LearnClust package in your browser

Any scripts or data that you put into this service are public.

LearnClust documentation built on Nov. 30, 2020, 1:09 a.m.