convolveImage: convolve one image with another

Description Usage Arguments Value Author(s) Examples

View source: R/convolveImage.R

Description

convolves images together

Usage

1
convolveImage(image, kernelImage, crop = TRUE)

Arguments

image

antsImage to convolve

kernelImage

antsImage acting as kernel

crop

boolean automatically crops kernelImage

Value

convimage

Author(s)

Brian B. Avants

Examples

1
2
3
4
5
fi<-antsImageRead( getANTsRData("r16") ,2)
convimg<-makeImage( c(3,3) , c(1,0,1,0,-4,0,1,0,1) )
convout<-convolveImage( fi, convimg )
convimg2<-makeImage( c(3,3) , c(0,1,0,1,0,-1,0,-1,0) )
convout2<-convolveImage( fi, convimg2 )

neuroconductor-devel/ANTsR documentation built on April 1, 2021, 1:02 p.m.