【机器视觉】 convert_vector_to_tuple算子
00. 目錄
文章目錄
- 00. 目錄
- 01. 概述
- 02. 簽名
- 03. 描述
- 04. 注意
- 05. 參數
- 06. 結果
- 07. 附錄
01. 概述
convert_vector_to_tuple - 將容器的元素連接到單個元組。
02. 簽名
convert_vector_to_tuple( : : InputVector : ResultTuple)
03. 描述
convert_vector_to_tuple將一個容器轉換成一個元組。 輸入容器InputVector的元素被連接并存儲在輸出元組ResultTuple中。 如果InputVector具有2或更大的維度,則其元素將在深度優先搜索中收集。 例如,輸入容器{{{1},{2}},{{3},{4}}}'將被轉換為結果元組[1,2,3,4]。
原文描述:
convert_vector_to_tuple transforms a vector into a tuple. The elements of the input vector InputVector get concatenated and stored in the output tuple ResultTuple. If InputVector has a dimension of 2 or greater its elements are collected in a depth-first search. E.g., the input vector ‘{{{1},{2}},{{3},{4}}}’ will be turned into the result tuple [1,2,3,4].
04. 注意
略
05. 參數
InputVector (input_control) number-vector → (real / integer / string)
輸入容器
ResultTuple (output_control) real(-array) → (real / integer / string)
輸出元組
06. 結果
如果指定參數的值正確,則convert_vector_to_tuple返回2(H_MSG_TRUE)。 否則會引發異常并返回錯誤代碼。
HDevelop例程
vector_variables.hdev Use vector variables
pipeline_multiple_threads_per_stage.hdev Show how to implement a pipeline with multiple threads per stage
message_queue_producer_consumer.hdev Use a message queue to exchange data between threads running in parallel (producer consumer)
程序示例
07. 附錄
7.1 機器視覺博客匯總
網址:https://dengjin.blog.csdn.net/article/details/116837497
總結
以上是生活随笔為你收集整理的【机器视觉】 convert_vector_to_tuple算子的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【机器视觉】 comment算子
- 下一篇: 【机器视觉】 executable_ex