美文网首页
初学者系列:halcon(一) 图像输入imread,摄像头

初学者系列:halcon(一) 图像输入imread,摄像头

作者: Yao_0 | 来源:发表于2017-12-13 09:19 被阅读0次

    1、读取单张图片
    读取图像,read_image函数 读取单张图片
    '''
    read_image(Image,'E:/data/testpic/1.jpg')
    '''
    效果:


    1.PNG

    2、读取多张图片
    2.1 创建一个数组,循环遍历数组读取图片 (不建议这么做,编码太复杂)


    2.PNG

    2.2 创建一个变化的字符串,读取图片(推荐用于读取按一定规律存储的图片)


    2.PNG
    2.3 读取整个文件夹内图片 (推荐)
    操作步骤
    一、打开halcon住手,窜则打开新的 Image Acquisition 5.PNG

    二、选择需要打开的文件夹路径,然后点击 代码生成--->插入代码


    1.PNG 2.PNG

    函数详解:
    '''

    • Image Acquisition 01: Code generated by Image Acquisition 01
      *遍历制定文件夹下的所有文件,然后选择制定的文件

    list_files ('E:/data/testpic/20171122缺陷检测/同轴光源/singel/胶多', ['files','follow_links'], ImageFiles)
    tuple_regexp_select (ImageFiles, ['\.(tif|tiff|gif|bmp|jpg|jpeg|jp2|png|pcx|pgm|ppm|pbm|xwd|ima|hobj)$','ignore_case'], ImageFiles)
    for Index := 0 to |ImageFiles| - 1 by 1
    read_image (Image, ImageFiles[Index])
    * Image Acquisition 01: Do something
    endfor
    '''

    list_files 函数详解
    Parameters

    Directory (input_control) filename.dir → (string)
    Name of directory to be listed.

    Options (input_control) string(-array) → (string)
    Processing options.
    Default value: 'files'
    Suggested values: 'files', 'directories', 'recursive', 'follow_links', 'max_depth 5', 'max_files 1000'

    files ,文件,指定搜索的格式为文件
    directories,文件夹,增加这个参数则文件夹下的子文件夹也会被选中(指定搜索的格式为文件夹)
    'follow_links', 下层连接,增加这个参数则文件夹下的子文件夹会被选中并打开 (只打开,不选中打开后里面的内容)
    'recursive' , 递归,增加这个参数则文件夹下的子文件夹会被选中,打开,然后再选择被开的子文件夹内的内容(指定可以遍历子文件夹下的文件)
    'max_depth ',深度,进入子文件夹的深度
    'max_files ',获取文件的最大数目

    Files (output_control) string-array → (string)
    Found files (and directories).
    Result

    list_files returns the value 2 (H_MSG_TRUE) if the directory exists and could be read. Otherwise, an exception is raised.

    tuple_regexp_select 详细解释
    指定选择符合格式要求的文件
    Parameters

    Data (input_control) string(-array) → (string)
    Input strings to match.

    Expression (input_control) string(-array) → (string)
    Regular expression.
    Default value: '.'
    Suggested values: '.
    ', 'invert_match', 'ignore_case', 'multiline', 'dot_matches_all', 'newline_lf', 'newline_crlf', 'newline_cr'
    'ignore_case' 忽略大小写

    Selection (output_control) string(-array) → (string)
    Matching strings

    3.从笔记本摄像 头中获取

    打开助手---->打开新的Image Acquisition---->图像获取接口处点击自动监测 ----->点击实时按钮------>按需要设置参数----->代码生成出点击代码生成。


    1.PNG

    4 从索引列表中获取
    索引在halcon中为.seq结尾的文件 注:.seq 里面存放的为需要读入图片的路径

    打开助手---->打开新的Image Acquisition---->图像获取接口处选择file ----->点击实时按钮------>按需要设置参数----->代码生成出点击代码生成。


    2.PNG

    然后在生成的代码中,将 open_framegrabber 中的 fabrik 参数改为 .seq的路径 如 ‘d:/halcon/in.seq

    相关文章

      网友评论

          本文标题:初学者系列:halcon(一) 图像输入imread,摄像头

          本文链接:https://www.haomeiwen.com/subject/njmnixtx.html