| 213 | } |
| 214 | |
| 215 | int stasm_search_auto( // call repeatedly to find all faces |
| 216 | int* foundface, // out: 0=no more faces, 1=found face |
| 217 | float* landmarks) // out: x0, y0, x1, y1, ..., caller must allocate |
| 218 | { |
| 219 | return stasm_search_auto_ext(foundface, landmarks, NULL); |
| 220 | } |
| 221 | |
| 222 | int stasm_search_single( // wrapper for stasm_search_auto and friends |
| 223 | int* foundface, // out: 0=no face, 1=found face |
no test coverage detected