crop.borders | R Documentation |
This function crops pixels on each side of an image. This function is a kind of inverse (centred) padding, and is useful e.g. when you want to get only the valid part of a convolution
crop.borders(im, nx = 0, ny = 0, nz = 0, nPix)
im |
an image |
nx |
number of pixels to crop along horizontal axis |
ny |
number of pixels to crop along vertical axis |
nz |
number of pixels to crop along depth axis |
nPix |
optional: crop the same number of pixels along all dimensions |
an image
Simon Barthelme
#These two versions are equivalent
imfill(10,10) %>% crop.borders(nx=1,ny=1)
imfill(10,10) %>% crop.borders(nPix=1)
#Filter, keep valid part
correlate(boats,imfill(3,3)) %>% crop.borders(nPix=2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.