halcon 的 tuple 可以简单理解为是一种数组,既可以存int 也可以存double 或者string类型
tuple也是可以增加内容的,长度是可以增加的,
tuple是支持增删改查的功能的
1、增加:tuple_concat ,将两个数组合并为一个大数组,需要注意顺序;tuple_concat( : : T1, T2 : Concat)
Concat = [T1, T2]
2、删出:
删除全部:Tuple:=[] , 也可以用作初始化
删除指定序号:tuple_remove( : : Tuple, Index : Reduced)
3、修改:替换特定序号的元素:tuple_replace( : : Tuple, Index, ReplaceTuple : Replaced)
基于正则表达式的替换:tuple_regexp_replace( : : Data, Expression, Replace : Result)
tuple_regexp_replace(['img10.bmp','img11.bmp','img12.bmp'], \
'img(.*).bmp', 'out$1.txt', Result)
* Returns ['out10.txt','out11.txt','out12.txt']
4、查找:
查找所有的,返回所有序号:tuple_find( : : Tuple, ToFind : Indices)
查找第一个,返回其对应的序号:tuple_find_first( : : Tuple, ToFind : Index)
查找最后一个,返回其对应的序号:tuple_find_last( : : Tuple, ToFind : Index)
转载自:https://blog.csdn.net/WING__NG/article/details/135963727