createImageSuperResolutionModel3D: 3-D implementation of the image super resolution deep...

View source: R/createImageSuperResolutionModel.R

createImageSuperResolutionModel3DR Documentation

3-D implementation of the image super resolution deep learning architecture.

Description

Creates a keras model of the image super resolution deep learning framework. based on the paper available here:

Usage

createImageSuperResolutionModel3D(
  inputImageSize,
  convolutionKernelSizes = list(c(9, 9, 9), c(1, 1, 1), c(5, 5, 5)),
  numberOfFilters = c(64, 32)
)

Arguments

inputImageSize

Used for specifying the input tensor shape. The shape (or dimension) of that tensor is the image dimensions followed by the number of channels (e.g., red, green, and blue). The batch size (i.e., number of training images) is not specified a priori.

convolutionKernelSizes

a list of 3-D vectors specifying the kernel size at each convolution layer. Default values are the same as given in the original paper. The length of kernel size vectors must be 1 greater than the vector length of the number of filters.

numberOfFilters

a vector containing the number of filters for each convolutional layer. Default values are the same as given in the original paper.

Details

    \url{https://arxiv.org/pdf/1501.00092}

This particular implementation is based on the following python implementation:

    \url{https://github.com/titu1994/Image-Super-Resolution}

Value

a keras model for image super resolution

Author(s)

Tustison NJ

Examples

createImageSuperResolutionModel3D(c( 100, 100, 100, 1 ))

ANTsX/ANTsRNet documentation built on April 18, 2024, 8 a.m.