mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
614 B
20 lines
614 B
#ifndef LSVM_ERROR |
|
#define LSVM_ERROR |
|
|
|
#define LATENT_SVM_OK 0 |
|
#define LATENT_SVM_MEM_NULL 2 |
|
#define DISTANCE_TRANSFORM_OK 1 |
|
#define DISTANCE_TRANSFORM_GET_INTERSECTION_ERROR -1 |
|
#define DISTANCE_TRANSFORM_ERROR -2 |
|
#define DISTANCE_TRANSFORM_EQUAL_POINTS -3 |
|
#define LATENT_SVM_GET_FEATURE_PYRAMID_FAILED -4 |
|
#define LATENT_SVM_SEARCH_OBJECT_FAILED -5 |
|
#define LATENT_SVM_FAILED_SUPERPOSITION -6 |
|
#define FILTER_OUT_OF_BOUNDARIES -7 |
|
#define LATENT_SVM_TBB_SCHEDULE_CREATION_FAILED -8 |
|
#define LATENT_SVM_TBB_NUMTHREADS_NOT_CORRECT -9 |
|
#define FFT_OK 2 |
|
#define FFT_ERROR -10 |
|
#define LSVM_PARSER_FILE_NOT_FOUND -11 |
|
|
|
#endif
|
|
|