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

posted @ 2017-11-10 17:06  水行  阅读(357)  评论(0编辑  收藏  举报