humanemulator.net — справка.
Продукт, демо и покупка — на
хуманэмулятор.рф
|
Демо
|
Купить
|
API
|
Changelog
get_lines
get_lines($path,$is_h=true,$is_v=true,$struct_h=50,$struct_v=50,$is_draw=false); - Получить вертикальные и горизонтальные линии с картинкиФункция на вход принимает параметры:
После выполнения функции возвращаемое значение будет равно одному из двух :
Пример использования
<?php // Scenario: Detect and extract lines from an image. This function identifies lines in an image and returns information about their positions, which is useful for document analysis and preprocessing. $xhe_host = getenv("RPABOT_HOST_URL"); if (!isset($path)){ // Path to the init.php file for connecting to the XHE API $path = "../../../Templates/init.php"; // Including init.php grants access to all classes and functionality for working with the XHE API require($path); } // Check if the source image exists $sourceImage = "document_with_lines.png"; if (file_exists($sourceImage)) { // Get lines from the image echo "Detecting lines in image: $sourceImage\n"; $lines = DOM::$image->get_lines($sourceImage); if ($lines !== false) { echo "Lines detected successfully\n"; echo "Lines information:\n"; var_export($lines); } else { echo "Failed to detect lines in the image\n"; } } else { echo "Source image does not exist: $sourceImage\n"; } // Quit the application WINDOW::$app->quit(); ?>
=============================================
Image Объекты DOM System Vision Web Window
=============================================
Если что-то непонятно или необходимо узнать или считаете что надо добавить по работе этой функции, пишите в комментарии или на наш форум.