normalize_image: Create a histogram from image bands (Criar um histrograma a...

View source: R/normalize_image.R

normalize_imageR Documentation

Create a histogram from image bands (Criar um histrograma a partir das bandas das imagens)

Description

This function allows you to create histograms from the bands of the images (Esta funcao permite criar histogramas a partir das bandas das imagens).

Usage

normalize_image(im,inf=0,max=1)

Arguments

im

:Este objeto deve conter uma imagem (This object must contain an image ).

inf

: Numero em que o pixel de menor valor devera ter (Number in which the lowest value pixel should have).

max

: Numero em que o pixel de maior valor devera ter (Number in which the pixel with the highest value should have).

Value

Retorna histogramas a partir das bandas (Return histograms from the bands of the images).

See Also

segmentation_logit

Examples


end=example_image(6)
im=read_image(end,plot=TRUE)
histogram_image(im,layout = 1)
histogram_image(im,layout = 2)
histogram_image(im,layout = 3)

im2=normalize_image(im)
plot_image(im2)
histogram_image(im2,layout = 3)


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