Halcon算子翻译——exit
Posted 水行
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Halcon算子翻译——exit相关的知识,希望对你有一定的参考价值。
名称
exit - 终止HDevelop。
用法
exit( : : : )
描述
退出HDevelop。 算子等同于菜单项File - > Quit。 在内部和导出的C ++代码中使用C函数调用exit(0)。
exit terminates HDevelop. The operator is aquivalent to the menu entry File -> Quit. Internally and for exported C++ code the C-function call exit(0) is used.
示例
read_image (Image, ‘fabrik‘) intensity (Image, Image, Mean, Deviation) open_file (‘intensity.txt‘, ‘output‘, FileHandle) fwrite_string (FileHandle, Mean + ‘ ‘ + Deviation) close_file (FileHandle) exit ()
结果
退出返回0(o.k.)到HDevelop的调用环境=操作系统。
也可以看看
stop
模块
Foundation
HDevelop例程
exit.hdev Terminate HDevelop after the task is finished
以上是关于Halcon算子翻译——exit的主要内容,如果未能解决你的问题,请参考以下文章