LLIPS
rev33
Light Library for Image ProcesS
|
Various functions for Llips. More...
Go to the source code of this file.
Functions | |
CPU_INT32U | mini (CPU_INT32U a, CPU_INT32U b) |
Compare two CPU_INT32U to find the smallest. More... | |
CPU_INT32U | maxi (CPU_INT32U a, CPU_INT32U b) |
compare two CPU_INT32U to find the biggest More... | |
CPU_INT08U ** | createTableINT08U (CPU_INT16S nbLin, CPU_INT16S nbCol) |
Allocate memory for a CPU_INT08U 2D table. More... | |
CPU_FP64 ** | createTableFP64 (CPU_INT16S nbLin, CPU_INT16S nbCol) |
Allocate memory for a CPU_FP64 2D table. More... | |
CPU_VOID | freeTableINT08U (CPU_INT08U **tab) |
Deallocate memory for a CPU_INT08U 2D table. More... | |
CPU_VOID | freeTableFP64 (CPU_FP64 **tab) |
Deallocate memory for a CPU_FP64 2D table. More... | |
CPU_INT32S | compare (const CPU_VOID *a, const CPU_VOID *b) |
Compare function for qsort function. More... | |
Various functions for Llips.
Definition in file llips_functions.h.
CPU_INT32S compare | ( | const CPU_VOID * | a, |
const CPU_VOID * | b | ||
) |
Compare function for qsort function.
a | const CPU_VOID * - first param |
b | const CPU_VOID * - second param |
Definition at line 140 of file llips_functions.c.
CPU_FP64** createTableFP64 | ( | CPU_INT16S | nbLin, |
CPU_INT16S | nbCol | ||
) |
Allocate memory for a CPU_FP64 2D table.
nbLin | CPU_INT16S - number of line (height) |
nbCol | CPU_INT16S - number of column (widht) |
Definition at line 92 of file llips_functions.c.
CPU_INT08U** createTableINT08U | ( | CPU_INT16S | nbLin, |
CPU_INT16S | nbCol | ||
) |
Allocate memory for a CPU_INT08U 2D table.
nbLin | CPU_INT16S - number of line (height) |
nbCol | CPU_INT16S - number of column (widht) |
Definition at line 72 of file llips_functions.c.
Deallocate memory for a CPU_FP64 2D table.
tab | CPU_FP64** - table to destroy |
Definition at line 126 of file llips_functions.c.
CPU_VOID freeTableINT08U | ( | CPU_INT08U ** | tab | ) |
Deallocate memory for a CPU_INT08U 2D table.
tab | CPU_INT08U** - table to destroy |
Definition at line 113 of file llips_functions.c.
CPU_INT32U maxi | ( | CPU_INT32U | a, |
CPU_INT32U | b | ||
) |
compare two CPU_INT32U to find the biggest
a | CPU_INT32U - first value |
b | CPU_INT32U - second value |
Definition at line 51 of file llips_functions.c.
CPU_INT32U mini | ( | CPU_INT32U | a, |
CPU_INT32U | b | ||
) |
Compare two CPU_INT32U to find the smallest.
a | CPU_INT32U - first value |
b | CPU_INT32U - second value |
Definition at line 29 of file llips_functions.c.