SINGLEO_LOGE("Fail to destroy face detection handle.(%d)", ret);
} catch (const runtime_error &e) {
SINGLEO_LOGE("Failed to destroy face detection handle: %s", e.what());
- throw runtime_error("Failed to destroy face detection handle.");
}
}
SINGLEO_LOGE("Fail to destroy facial landmark handle.(%d)", ret);
} catch (const std::runtime_error &e) {
SINGLEO_LOGE("Failed to destroy facial landmark handle: %s", e.what());
- throw runtime_error("Failed to destroy facial landmark handle.");
}
}
SINGLEO_LOGE("Fail to destroy face recognition handle.(%d)", ret);
} catch (const std::runtime_error &e) {
SINGLEO_LOGE("Failed to destroy face recognition handle: %s", e.what());
- throw runtime_error("Failed to destroy face recognition handle.");
}
}
SINGLEO_LOGE("Fail to destroy image classification handle.(%d)", ret);
} catch (const std::runtime_error &e) {
SINGLEO_LOGE("Failed to destroy image classification handle: %s", e.what());
- throw runtime_error("Failed to destroy image classification handle.");
}
}
SINGLEO_LOGE("Fail to destroy object detection handle.(%d)", ret);
} catch (const std::runtime_error &e) {
SINGLEO_LOGE("Failed to destroy object detection handle: %s", e.what());
- throw runtime_error("Failed to destroy object detection handle.");
}
}