“Normalize a matriz Numpy” Respostas de código

Numpy normaliza

def normalize(v):
    norm = np.linalg.norm(v)
    if norm == 0: 
       return v
    return v / norm
Ferry_Morris

Normalize a matriz Numpy

 norm = np.linalg.norm(an_array_to_normalize)

    normal_array = an_array_to_normalize/norm

or for pixels to be obtained in my case. This can be used to map values to another scale from the current scale of values.

    scaled_array = (array/np.float(np.max(array)) )*255.
Nutty Nightingale

Respostas semelhantes a “Normalize a matriz Numpy”

Perguntas semelhantes a “Normalize a matriz Numpy”

Mais respostas relacionadas para “Normalize a matriz Numpy” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código