基于halcon的凹痕检测

简介: 基于halcon的凹痕检测

测试图

image.png

代码

* This procedure displays text in a graphics window.
* 
* Input parameters:
* WindowHandle: The WindowHandle of the graphics window, where
*    the message should be displayed
* String: A tuple of strings containing the text message to be displayed
* CoordSystem: If set to 'window', the text position is given
*    with respect to the window coordinate system.
*    If set to 'image', image coordinates are used.
*    (This may be useful in zoomed images.)
* Row: The row coordinate of the desired text position
*    A tuple of values is allowed to display text at different
*    positions.
* Column: The column coordinate of the desired text position
*    A tuple of values is allowed to display text at different
*    positions.
* Color: defines the color of the text as string.
*    If set to [], '' or 'auto' the currently set color is used.
*    If a tuple of strings is passed, the colors are used cyclically...
*    - if |Row| == |Column| == 1: for each new textline
*    = else for each text position.
* Box: If Box[0] is set to 'true', the text is written within an orange box.
*      If set to' false', no box is displayed.
*      If set to a color string (e.g. 'white', '#FF00CC', etc.),
*        the text is written in a box of that color.
*      An optional second value for Box (Box[1]) controls if a shadow is displayed:
*        'true' -> display a shadow in a default color
*        'false' -> display no shadow
*        otherwise -> use given string as color string for the shadow color
* 
* It is possible to display multiple text strings in a single call.
* In this case, some restrictions apply:
* - Multiple text positions can be defined by specifying a tuple
*   with multiple Row and/or Column coordinates, i.e.:
*   - |Row| == n, |Column| == n
*   - |Row| == n, |Column| == 1
*   - |Row| == 1, |Column| == n
* - If |Row| == |Column| == 1,
*   each element of String is display in a new textline.
* - If multiple positions or specified, the number of Strings
*   must match the number of positions, i.e.:
*   - Either |String| == n (each string is displayed at the
*                           corresponding position),
*   - or     |String| == 1 (The string is displayed n times).
* 
* 
* Convert the parameters for disp_text.
if (Row == [] or Column == [])
    return ()
endif
if (Row == -1)
    Row := 12
endif
if (Column == -1)
    Column := 12
endif
* 
* Convert the parameter Box to generic parameters.
GenParamName := []
GenParamValue := []
if (|Box| > 0)
    if (Box[0] == 'false')
        * Display no box
        GenParamName := [GenParamName,'box']
        GenParamValue := [GenParamValue,'false']
    elseif (Box[0] != 'true')
        * Set a color other than the default.
        GenParamName := [GenParamName,'box_color']
        GenParamValue := [GenParamValue,Box[0]]
    endif
endif
if (|Box| > 1)
    if (Box[1] == 'false')
        * Display no shadow.
        GenParamName := [GenParamName,'shadow']
        GenParamValue := [GenParamValue,'false']
    elseif (Box[1] != 'true')
        * Set a shadow color other than the default.
        GenParamName := [GenParamName,'shadow_color']
        GenParamValue := [GenParamValue,Box[1]]
    endif
endif
* Restore default CoordSystem behavior.
if (CoordSystem != 'window')
    CoordSystem := 'image'
endif
* 
if (Color == '')
    * disp_text does not accept an empty string for Color.
    Color := []
endif
* 
disp_text (WindowHandle, String, CoordSystem, Row, Column, Color, GenParamName, GenParamValue)
return ()

结果

image.png

相关文章
|
8月前
|
C++ 计算机视觉 Python
Python Yolov5路面裂缝识别检测识别
Python Yolov5路面裂缝识别检测识别
148 0
Halcon找圆系列(1)如何检测圆形
Halcon找圆系列(1)如何检测圆形
1540 0
Halcon找圆系列(1)如何检测圆形
|
1天前
|
算法 计算机视觉
LabVIEW使用图像处理检测显微图像中的白血病
LabVIEW使用图像处理检测显微图像中的白血病
|
1天前
|
存储 传感器 文字识别
LabVIEW开发基于图像处理的车牌检测系统
LabVIEW开发基于图像处理的车牌检测系统
10 3
|
2月前
|
机器学习/深度学习 人工智能 算法
使用纹理对比度检测检测AI生成的图像
在本篇文章中我们将介绍如何开发一个深度学习模型来检测人工智能生成的图像
20 0
|
5月前
|
文字识别
[Halcon&识别] 车牌识别
[Halcon&识别] 车牌识别
30 0
|
7月前
|
算法 C# C++
|
7月前
|
测试技术 C#
C# halcon SubImage的使用
C# halcon SubImage的使用
|
机器学习/深度学习 传感器 算法
【图像检测】基于DCT和arnold实现水印篡改检测附matlab代码
【图像检测】基于DCT和arnold实现水印篡改检测附matlab代码
|
算法 编译器
使用matlab机器视觉工具箱实现人脸特征的检测和定位,识别并标注眉毛,眼睛,鼻子,嘴巴
使用matlab机器视觉工具箱实现人脸特征的检测和定位,识别并标注眉毛,眼睛,鼻子,嘴巴
310 0
使用matlab机器视觉工具箱实现人脸特征的检测和定位,识别并标注眉毛,眼睛,鼻子,嘴巴