jipfunc
Class FSharpen

java.lang.Object
  |
  +--jip.JIPFunction
        |
        +--jipfunc.FSharpen

public class FSharpen
extends JIPFunction

FSharpen: Realce de una imagen
DESCRIPCION: Convoluciona una imagen con una matriz de valores dependientes del nivel de realce especificado como parámetro. La matriz es de 3x3 y los valores que varían el pixel (x,y) a tomar son (x-1,y) (x+1,y) (x,y-1) (x,y+1) los píxels de las esquinas quedan a 0. Aplicable a tipos: BYTE, WORD, COLOR y REAL
Usa: FConvolveImage

Notas Adicionales: La matriz que se genera internamente se convierte a una imagen y se llama al metodo que realiza la convolución de dos imagenes.


Fields inherited from class jip.JIPFunction
description, name, params, results
 
Constructor Summary
FSharpen()
           Constructor de la Clase.
Obtiene los parámetros de entrada para aplicar la función.
 
Method Summary
 JIPImage processImg(JIPImage img)
           Método Principal
Se le llama para convolucionar la imagen de entrada con la matriz 3x3 generada.
Parametros de Entrada:
img: Imagen a procesar

Parametros de Salida:
Imagen realzada

 
Methods inherited from class jip.JIPFunction
getDescription, getName, getNumParams, getNumResults, getParamDescr, getParamNames, getParamType, getParamValueBool, getParamValueImg, getParamValueInt, getParamValueReal, getParamValueStr, getResultDescr, getResultNames, getResultType, getResultValueBool, getResultValueImg, getResultValueInt, getResultValueReal, getResultValueStr, isParam, isParamAsigned, isParamRequired, isResult, isResultAsigned, isResultRequired, paramsOK, processSeq, setParamValue, setParamValue, setParamValue, setParamValue, setParamValue, setResultValue, setResultValue, setResultValue, setResultValue, setResultValue
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Constructor Detail

FSharpen

public FSharpen()

Constructor de la Clase.

Obtiene los parámetros de entrada para aplicar la función.

    Parametros de Entrada:
  • NINGUNO

    Parametros de Salida:
  • NINGUNO

Method Detail

processImg

public JIPImage processImg(JIPImage img)

Método Principal

Se le llama para convolucionar la imagen de entrada con la matriz 3x3 generada.

    Parametros de Entrada:
  • img: Imagen a procesar

    Parametros de Salida:
  • Imagen realzada

Overrides:
processImg in class JIPFunction
Following copied from class: jip.JIPFunction
Parameters:
img - Imagen de entrada.
Returns:
Imagen de salida.