El efecto Remap reemplaza todos los píxeles con el píxel coincidente más cercano que se encuentra en la imagen de referencia de afinidad. remap() reconstruye la paleta de imágenes con el color más cercano a la imagen de afinidad dada.
Sintaxis: wand.image.remap(afinidad, método)
Parámetros:
Parámetro Tipo de entrada Descripción afinidad Imagen base imagen de referencia. método string base método de difuminado. Consulte DITHER_METHODS. El valor predeterminado es ‘no’ tramado.
Imagen de entrada:
Ejemplo 1:
# Import Image from wand.image module from wand.image import Image with Image(filename ="koala.jpeg") as left: with left.clone() as right: with Image(width = 100, height = 1, pseudo ="plasma:") as affinity: # remap image using remap() function right.remap(affinity) left.extent(width = left.width * 2) # adding remaped image with original image left.composite(right, top = 0, left = right.width) left.save(filename ="remapk.jpeg")
Producción:
Imagen de entrada:
Ejemplo 2:
# Import Image from wand.image module from wand.image import Image with Image(filename ="road.jpeg") as left: with left.clone() as right: with Image(width = 100, height = 1, pseudo ="plasma:") as affinity: # remap image using remap() function right.remap(affinity) left.extent(width = left.width * 2) # adding remaped image with original image left.composite(right, top = 0, left = right.width) left.save(filename ="roadr.jpeg")
Producción:
Publicación traducida automáticamente
Artículo escrito por RahulSabharwal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA