SqueezeBrains SDK 1.18
|
Samples interface. More...
Data Structures | |
class | sb_cs::SbSampleWeightsImage |
Sample weight image Class that wraps the sb_t_sample_weights_image structure. More... | |
class | sb_cs::SbSample |
Sample class that wraps the sb_t_sample structure. More... | |
Samples interface.
|
strong |
Sample object type that wrpas the sb_t_obj_type enum
Enumerator | |
---|---|
SB_OBJ_TEST | Object is not used for learning. |
SB_OBJ_LEARNING | Object is used for learning. |
Definition at line 102 of file cs_sample.h.
|
strong |
Sample classify mode that wraps the sb_t_sample_classify_mode enum
Enumerator | |
---|---|
SB_SAMPLE_REQUIRED | The sample must be found, otherwise it will be classified as False Negative. |
SB_SAMPLE_OPTIONAL | The positive sample is optional in the sense that if it is found it is classified as Optional Positive, otherwise as Optional Negative. Another way to define an optional sample is a "border line" or a "boundary" sample, in the sense, it is not clear if it is a positive or negative instance, if it is a good or bad sample. |
Definition at line 83 of file cs_sample.h.
|
strong |
Sample truth values that wraps the sb_t_truth enum
Enumerator | |
---|---|
SB_TRUTH_UNDEFINED | Truth not defined. |
SB_TRUTH_TRUE_POSITIVE | Truth True Positive. It is an occurrences with positive weight. |
SB_TRUTH_TRUE_NEGATIVE | Truth True Negative. In case of "Retina" detection it is used:
|
SB_TRUTH_FALSE_POSITIVE | Truth False Positive. A object occurrence was found in a wrong place, or it was identified with the wrong model. |
SB_TRUTH_FALSE_NEGATIVE | Truth False Negative. A object occurrence wasn't found. |
SB_TRUTH_OPTIONAL_POSITIVE | Truth Optional Positive. A optional sample with positive weight. |
SB_TRUTH_OPTIONAL_NEGATIVE | Truth Optional Negative. A optional sample with negative weight. |
SB_TRUTH_OUT_OF_ROI | Truth Out Of ROI. The sample is out of the ROI and then it is not found, but it cannot become a False Negative. |
SB_TRUTH_MODEL_DISABLED | A sample of a disabled model. |
Definition at line 19 of file cs_sample.h.