system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
<?php
/*
A simple example demonstrate houghline creation.
*/
/* Create the Imagick object */
$im = new Imagick();
/* Read the image file */
$im->readImage( '/tmp/test.png' );
/* Houghline the image ( width 9, height 9, threshold 40 ) */
$im->houghLineImage( 9, 9, 40 );
/* Write the houghline image to disk */
$im->writeImage( '/tmp/hough_test.png' );
/* Free resources associated to the Imagick object */
$im->destroy();
?>