createExpandedSuperResolutionModel3D: 3-D implementation of the expanded image super resolution...

View source: R/createExpandedSuperResolutionModel.R

createExpandedSuperResolutionModel3DR Documentation

3-D implementation of the expanded image super resolution architecture.

Description

Creates a keras model of the expanded image super resolution deep learning framework based on the following python implementation:

Usage

createExpandedSuperResolutionModel3D(
  inputImageSize,
  convolutionKernelSizes = list(c(9, 9, 9), c(1, 1, 1), c(3, 3, 3), c(5, 5, 5), c(5, 5,
    5)),
  numberOfFilters = c(64, 32, 32, 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://github.com/titu1994/Image-Super-Resolution}

Value

a keras model for image super resolution

Author(s)

Tustison NJ

Examples

createExpandedSuperResolutionModel3D(c( 100, 100, 100, 1 ))

ANTsX/ANTsRNet documentation built on April 23, 2024, 1:24 p.m.