IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
1 |
Open CNN |
peak_inference_handle hInference = PEAK_INVALID_HANDLE; |
---|---|---|
2 |
Read out CNN information (optional) |
peak_inference_info info; peak_version cnnFileVersion = info.fileVersion; |
3 |
Get range of confidence threshold (optional) |
status = peak_Inference_ConfidenceThreshold_GetRange(hInference, &min, &max, &inc); |
4 |
Set confidence threshold (optional) |
status = peak_Inference_ConfidenceThreshold_Set(hInference, threshold); |
5 |
CNN image processing (acquisition thread) |
|
6 |
Close CNN |
status = peak_Inference_CNN_Close(hInference); |