shape_file.split {ExpImage} | R Documentation |
Divide a imagem em objetos/parcelas de acordo com o shapefile
Description
Esta funcao divide a imagem em objetos/parcelas a partir do shapefile criado pela funcao shape_file.create. Dessa forma e criada uma imagem para cada objeto.
Usage
shape_file.split(im,shapefile,namesFile="test",path=getwd(),type="jpg")
Arguments
im |
:Este objeto deve conter uma imagem no formato do EBImage/ExpImage. |
shapefile |
Objeto criado pela funcao shape_file.create |
namesFile |
Nome do arquivo a ser salvo. |
path |
Endereco da pasta onde as imagens seram salvas. |
type |
Extensao da imagem a ser salva.EX: jpg, png, tiff. |
Value
Divide a imagem em varias outras considerando o shapefile (It divides the image into several others considering the shapefile).
See Also
shape_file.create
, shape_file.split
Examples
## Not run:
# Not run: Depende da interacao com uma interface grafica
#(It depends on interaction with a graphical interface).
end=example_image(13)
im=read_image(end,plot=TRUE)
A=shape_file.create(im,rows=5,cols=5,rectangular=F,Matrix=NULL,SelectSeveral = F)
B=shape_file.BorderExtract(im,A,p.rows = .9,p.cols = .9)
shape_file.plot(im,ShapeFile = B)
shape_file.split(im =im,shapefile = B,path = getwd(),namesFile = "TEST",type = ".jpg")
## End(Not run)
[Package ExpImage version 0.10.1 Index]