#include <osl/osl_canny_port.h>
Go to the source code of this file.
Classes | |
class | osl_canny_base |
Functions | |
template<class T > | |
T ** | osl_canny_base_make_raw_image (int, int, T *dummy) |
Returns an m*n array of Ts. | |
template<class T > | |
void | osl_canny_base_fill_raw_image (T **, int, int, T value) |
Initialise an m*n array of Ts with value. | |
template<class T > | |
void | osl_canny_base_free_raw_image (T **) |
Frees an m*n array of Ts. | |
template<class S , class T > | |
void | osl_canny_base_copy_raw_image (S const *const *src, T *const *dst, int, int) |
Copies image1 to image2. |
void osl_canny_base_copy_raw_image | ( | S const *const * | src, |
T *const * | dst, | ||
int | , | ||
int | |||
) |
Copies image1 to image2.
Definition at line 294 of file osl_canny_base.cxx.
void osl_canny_base_fill_raw_image | ( | T ** | , |
int | , | ||
int | , | ||
T | value | ||
) |
Initialise an m*n array of Ts with value.
Definition at line 278 of file osl_canny_base.cxx.
void osl_canny_base_free_raw_image | ( | T ** | ) |
Frees an m*n array of Ts.
Definition at line 286 of file osl_canny_base.cxx.
T** osl_canny_base_make_raw_image | ( | int | , |
int | , | ||
T * | dummy | ||
) |
Returns an m*n array of Ts.
Definition at line 268 of file osl_canny_base.cxx.