-----Imagick  3.4.3  &&  ImageMagick 7.0.6  
-----why cannot find filter method????? 
if (!method_exists(Imagick, 'filter')) {
    echo 'undefined filter()!';
} else {
    echo 'defined filter()!';
}(PECL imagick 3 >= 3.3.0)
Imagick::filter — Aplica un núcleo de convolución personalizado a la imagen
Esta función está DEPRECADA a partir de Imagick 3.4.4. Depender de esta funcionalidad está fuertemente desaconsejado.
$ImagickKernel, int $channel = Imagick::CHANNEL_UNDEFINED): boolAplica un núcleo de convolución personalizado a la imagen.
ImagickKernelUna instancia de ImagickKernel que representa un solo núcleo o una serie de núcleos vinculados.
channel
      Proporciona una constante de canal válida para su modo de canal. Para aplicarlo a más de un canal, combínense las constantes de canales utilizando un operador a nivel de bits. Por omisión, vale Imagick::CHANNEL_DEFAULT. Consúltese la lista de constantes de canales
     
   Devuelve true en caso de éxito.
  
Ejemplo #1 Imagick::filter()
<?php
function filter($imagePath) {
    $imagick = new \Imagick(realpath($imagePath));
    $matrix = [
        [-1, 0, -1],
        [0,  5,  0],
        [-1, 0, -1],
    ];
    $kernel = \ImagickKernel::fromMatrix($matrix);
    $strength = 0.5;
    $kernel->scale($strength, \Imagick::NORMALIZE_KERNEL_VALUE);
    $kernel->addUnityKernel(1 - $strength);
    $imagick->filter($kernel);
    header("Content-Type: image/jpg");
    echo $imagick->getImageBlob();
}
?>-----Imagick  3.4.3  &&  ImageMagick 7.0.6  
-----why cannot find filter method????? 
if (!method_exists(Imagick, 'filter')) {
    echo 'undefined filter()!';
} else {
    echo 'defined filter()!';
}-----Imagick::filter cannot work!
-----suse linux server   ,   imagick module version 3.4.3
-----run Example #1 Imagick::filter()  , there is no result!  where is problem?
thank you for your answer!
Alex