create_png: Create a png image with a transparent background (Criar uma...

View source: R/create_png.R

create_pngR Documentation

Create a png image with a transparent background (Criar uma imagem png com o fundo transparente)

Description

Create a png image with a transparent background (Criar uma imagem png com o fundo transparente)

Usage

create_png(im,segmentation,file=NULL,crop=FALSE)

Arguments

im

:This object must contain an image in EBImage format (Este objeto deve conter uma imagem no formato do EBImage).

segmentation

Binary matrix obtained of a segmentation(matrix binaria obtida por uma segmentacao).

file

Name of the file that will be saved with the '.png' extension (Nome do arquivo que sera salvo com a extensao '.png').

crop

Logical variable, if it is TRUE the image will be cut considering the segmentation matrix (Variavel logica, se for TRUE a imagem sera cortada considerando a matriz segmentation).

Value

: returns an image of type '.png' (retorna uma imagem do tipo '.png').

See Also

segmentation , crop_image

Examples


end=example_image(2)
im=read_image(end,plot=TRUE)
m=gray_scale(im,method = "GLI",plot=TRUE)
plot_image(m,col=3)
seg=segmentation(m,treshold = 0.2,fillHull = TRUE,plot=TRUE)

info_image(im)

im2=create_png(im,seg)
info_image(im2)
#write_image(im2,files = "imagem.png")

im2=create_png(im,seg,crop=TRUE)
info_image(im2)
#write_image(im2,files = "imagem.png")


ExpImage documentation built on May 29, 2024, 11:10 a.m.