- try
- {
- HalconCpp::ReadImage(&textImage, "ooo.jpg");
-
- }
- catch (HalconCpp::HException& exception)
- {
- std::cout << (const char*)(exception.ErrorMessage()) << std::endl;
- return;
- }
c++中的try catch,并不能保证不崩溃,有的时候还是要自定义的异常。
halcon就需要自定义异常,如上代码。
参考: