R/imagine-internal.R

Defines functions checkArgs_agenbagFilters checkArgs_contextualMF checkArgs_quantileFilter checkArgs_meanFilter checkArgs_convolutionQuantile checkArgs_convolution2D checkArgs

checkArgs <- function(imagineArgs, type){

  switch(
    type,
    convolution2D       = checkArgs_convolution2D(imagineArgs),
    convolutionQuantile = checkArgs_convolutionQuantile(imagineArgs),
    meanFilter          = checkArgs_meanFilter(imagineArgs),
    quantileFilter      = checkArgs_quantileFilter(imagineArgs),
    contextualMF        = checkArgs_contextualMF(imagineArgs),
    agenbagFilters      = checkArgs_agenbagFilters(imagineArgs),
    "Invalid value for 'type'."
  )
}


checkArgs_convolution2D <- function(allArgs){

  X <- allArgs$X
  kernel <- allArgs$kernel
  times <- allArgs$times

  if(!is.matrix(X) || !is.numeric(X)){
    cli_abort(message = "{.code X} must be a numeric matrix.")
  }

  if(!is.matrix(kernel) || !is.numeric(kernel)){
    cli_abort(message = "{.code kernel} must be a numeric matrix.")
  }

  if((nrow(kernel) >= nrow(X)) || ncol(kernel) >= ncol(X)){
    cli_abort(message = "Dimensions of {.code kernel} matrix must be less than the {.code X}.")
  }

  if(length(times) != 1 || !is.numeric(times)){
    cli_abort("{.code time} must be a numeric vector with length 1.")
  }

  if(!isTRUE(all.equal(times, as.integer(times)))){
    cli_warn(
      message = c(
        "{.code times} must be an integer number.",
        "i" = "It will be coerced as integer."
      )
    )

    allArgs$times <- as.integer(allArgs$times)
  }

  allArgs
}

checkArgs_convolutionQuantile <- function(allArgs){

  X <- allArgs$X
  kernel <- allArgs$kernel
  probs <- allArgs$probs
  times <- allArgs$times

  if(!is.matrix(X) || !is.numeric(X)){
    cli_abort(message = "{.code X} must be a numeric matrix.")
  }

  if(any(is.na(kernel))){
    cli_abort("{.code kernel} must not have NA.")
  }

  if(!is.matrix(kernel) || !is.numeric(kernel)){
    cli_abort(message = "{.code kernel} must be a numeric matrix.")
  }

  if((nrow(kernel) >= nrow(X)) || ncol(kernel) >= ncol(X)){
    cli_abort("Dimensions of {.code kernel} matrix must be less than the {.code X}.")
  }

  if(!is.numeric(probs) || length(probs) != 1 || probs < 0 || probs > 1){
    cli_abort("{.code probs} must be a numeric between 0 and 1 with length = 1.")
  }

  if(length(times) != 1 || !is.numeric(times)){
    cli_abort("{.code time} must be a numeric vector with length 1.")
  }

  if(!isTRUE(all.equal(times, as.integer(times)))){
    cli_warn(
      message = c(
        "{.code times} must be an integer number",
        "i" = "It will be coerced as integer."
      )
    )
    allArgs$times <- as.integer(allArgs$times)
  }

  return(allArgs)
}

checkArgs_meanFilter <- function(allArgs){

  X <- allArgs$X
  radius <- allArgs$radius
  times <- allArgs$times

  if(!is.matrix(X) || !is.numeric(X)){
    cli_abort(message = "{.code X} must be a numeric matrix.")
  }

  if(!is.atomic(radius) || !is.numeric(radius)){
    cli_abort("{.code radius} must be a numeric vector of length 1 or 2.")
  }

  if(radius[1] > nrow(X) || radius[2] > ncol(X)){
    cli_abort("{.code radius} must be less than the dimensions (number of row and columns) of 'X'.")
  }

  if(!isTRUE(all.equal(radius, as.integer(radius)))){
    cli_warn("{.code radius} must be an integer number. It will be coerced as integer.")
    allArgs$radius <- as.integer(allArgs$radius)
  }

  if(length(times) != 1 || !is.numeric(times)){
    cli_abort("{.code time} must be a numeric vector with length 1.")
  }

  if(!isTRUE(all.equal(times, as.integer(times)))){
    cli_warn("{.code times} must be an integer number. It will be coerced as integer.")
    allArgs$times <- as.integer(allArgs$times)
  }

  times <- as.integer(times)

  return(allArgs)
}

checkArgs_quantileFilter <- function(allArgs){

  X <- allArgs$X
  radius <- allArgs$radius
  probs <- allArgs$probs
  times <- allArgs$times

  if(!is.matrix(X) || !is.numeric(X)){
    cli_abort(message = "{.code X} must be a numeric matrix.")
  }

  if(!is.atomic(radius) || !is.numeric(radius)){
    cli_abort("{.code radius} must be a numeric vector of length 1 or 2.")
  }

  if(!isTRUE(all.equal(radius, as.integer(radius)))){
    cli_warn("{.code radius} must be an integer vector. It will be coerced as integer.")
    allArgs$radius <- as.integer(allArgs$radius)
  }

  if(any(radius < 1) || radius[1] > nrow(X) || radius[2] > ncol(X)){
    cli_abort("Some value in {.code radius} is out of acceptable bounds in regards to 'X'.")
  }

  if(!is.numeric(probs) || length(probs) != 1 || probs < 0 || probs > 1){
    cli_abort("{.code probs} must be a numeric between 0 and 1 with length = 1.")
  }

  if(length(times) != 1 || !is.numeric(times)){
    cli_abort("{.code time} must be a numeric vector with length 1.")
  }

  if(!isTRUE(all.equal(times, as.integer(times)))){
    cli_warn("{.code times} must be an integer number. It will be coerced as integer.")
    allArgs$times <- as.integer(allArgs$times)
  }

  return(allArgs)
}

checkArgs_contextualMF <- function(allArgs){
  X <- allArgs$X

  if(!is.matrix(X) || !is.numeric(X)){
    cli_abort(message = "{.code X} must be a numeric matrix.")
  }

  return(allArgs)
}

checkArgs_agenbagFilters <- function(allArgs){

  X <- allArgs$X
  algorithm <- as.numeric(allArgs$algorithm[1])

  if(!is.matrix(X) || !is.numeric(X)){
    cli_abort(message = "{.code X} must be a numeric matrix.")
  }

  if(length(algorithm) != 1 || is.na(algorithm) || !algorithm %in% 1:2){
    cli_abort("{.code algorithm} argument only accepts next numeric values: 1 or 2.")
  }

  return(allArgs)
}

Try the imagine package in your browser

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

imagine documentation built on May 14, 2026, 5:06 p.m.