机器视觉dev_update_on和dev_update_off算子
Posted 沧海一笑-dj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了机器视觉dev_update_on和dev_update_off算子相关的知识,希望对你有一定的参考价值。
00. 目录
文章目录
01. 算子dev_update_on
签名:dev_update_on( : : : )
功能:将dev_update_pc, dev_update_var and dev_update_window设置为On。
一般这个函数位于程序的结尾。
02. 算子dev_update_off
签名:dev_update_off( : : : )
功能:将dev_update_pc, dev_update_var and dev_update_window设置为Off。
一般这个函数位于程序的开头。
03. 算子dev_update_on实现
在程序窗口中,选中算子,鼠标右击选择–>显示函数。
* This procedure sets different update settings to 'on'.
*
dev_update_pc ('on')
dev_update_var ('on')
dev_update_window ('on')
return ()
04. 算子dev_update_off实现
在程序窗口中,选中算子,鼠标右击选择–>显示函数。
* This procedure sets different update settings to 'off'.
* This is useful to get the best performance and reduce overhead.
*
dev_update_pc ('off')
dev_update_var ('off')
dev_update_window ('off')
return ()
05. 程序示例
一般这两个函数分别位于程序的开头和结尾。
dev_update_off ()
* do something
dev_update_on ()
06. 附录
6.1 机器视觉博客汇总
网址:https://dengjin.blog.csdn.net/article/details/116837497
以上是关于机器视觉dev_update_on和dev_update_off算子的主要内容,如果未能解决你的问题,请参考以下文章