From cc1f35cc753fb652963bbfa4864bf9c2d458344a Mon Sep 17 00:00:00 2001 From: David Rajchenbach-Teller Date: Tue, 6 Sep 2016 13:35:04 +0200 Subject: [PATCH] Resolves #189 ccv_swt_detect_words returns an array of ccv_rect_t --- lib/ccv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ccv.h b/lib/ccv.h index a9fff7a6d..9fb0d43ad 100644 --- a/lib/ccv.h +++ b/lib/ccv.h @@ -1396,7 +1396,7 @@ void ccv_swt(ccv_dense_matrix_t* a, ccv_dense_matrix_t** b, int type, ccv_swt_pa * Return array of regions that are potentially text area. * @param a The input matrix. * @param params A **ccv_swt_param_t** structure that defines various aspect of the SWT function. - * @return A **ccv_array_t** of **ccv_comp_t** with detection results. + * @return A **ccv_array_t** of **ccv_rect_t** with detection results. */ CCV_WARN_UNUSED(ccv_array_t*) ccv_swt_detect_words(ccv_dense_matrix_t* a, ccv_swt_param_t params);