Go to the source code of this file.
Functions | |
| unsigned char | quick_select (unsigned char *arr, int nelems, int select) |
| unsigned char | quick_select_median (unsigned char *arr, int nelems) |
| unsigned short | quick_select_ushort (unsigned short *arr, int nelems, int select) |
| unsigned short | quick_select_median_ushort (unsigned short *arr, int nelems) |
| float | quick_select_float (float *arr, int nelems, int select) |
| float | quick_select_median_float (float *arr, int nelems) |
| unsigned char quick_select | ( | unsigned char * | arr, | |
| int | nelems, | |||
| int | select | |||
| ) |
| unsigned char quick_select_median | ( | unsigned char * | arr, | |
| int | nelems | |||
| ) |
| unsigned short quick_select_ushort | ( | unsigned short * | arr, | |
| int | nelems, | |||
| int | select | |||
| ) |
Definition at line 76 of file quickselect.c.
Referenced by SceneChangeDetector::finished(), and quick_select_median_ushort().
| unsigned short quick_select_median_ushort | ( | unsigned short * | arr, | |
| int | nelems | |||
| ) |
Definition at line 129 of file quickselect.c.
| float quick_select_float | ( | float * | arr, | |
| int | nelems, | |||
| int | select | |||
| ) |
| float quick_select_median_float | ( | float * | arr, | |
| int | nelems | |||
| ) |
Definition at line 188 of file quickselect.c.
1.5.5