#include <rawio.hpp>
Static Public Member Functions | |
static int | raw_in (char *filename, imgdata_t *dst_for_reading_in) |
Read raw file. | |
static uchar_t * | raw_in (char *filename, uchar_t *type, int *w, int *h, uchar_t **data_sub) |
Read raw file. | |
static uchar_t * | raw_in (char *filename, uchar_t *type, int *w, int *h, uchar_t **data_sub, char *init_threshold) |
Read raw file. | |
static int | raw_out (char *filename, uchar_t type, int w, int h, uchar_t *to_output, uchar_t *to_output_sub) |
Write raw file. | |
static int | raw_out (char *filename, uchar_t type, int w, int h, uchar_t *to_output, uchar_t *to_output_sub, char init_threshold) |
Write raw file. |
static uchar_t* RAWIO::raw_in | ( | char * | filename, | |
uchar_t * | type, | |||
int * | w, | |||
int * | h, | |||
uchar_t ** | data_sub, | |||
char * | init_threshold | |||
) | [inline, static] |
Read raw file.
filename | The file to read. | |
type | The fileformat-type. | |
w | The width of the stored image. | |
h | The height of the stored image. | |
data_sub | [deprecated] - just pass NULL. | |
init_threshold | Initial threshold (important for EZW compressed files). |
static uchar_t* RAWIO::raw_in | ( | char * | filename, | |
uchar_t * | type, | |||
int * | w, | |||
int * | h, | |||
uchar_t ** | data_sub | |||
) | [inline, static] |
Read raw file.
filename | The file to read. | |
type | The fileformat-type. | |
w | The width of the stored image. | |
h | The height of the stored image. | |
data_sub | [deprecated] - just pass NULL. |
static int RAWIO::raw_in | ( | char * | filename, | |
imgdata_t * | dst_for_reading_in | |||
) | [inline, static] |
Read raw file.
filename | The file to read. | |
dst_for_reading_in | The destination for the data that is read in. |
static int RAWIO::raw_out | ( | char * | filename, | |
uchar_t | type, | |||
int | w, | |||
int | h, | |||
uchar_t * | to_output, | |||
uchar_t * | to_output_sub, | |||
char | init_threshold | |||
) | [inline, static] |
Write raw file.
filename | The file to write. | |
type | The fileformat-type. | |
w | The width of the data to write. | |
h | The height of the data to write. | |
to_output | Dominant pass data for output (EZW). | |
to_output_sub | Subordinate pass data for output (EZW). | |
init_threshold | Initial threshold (important for EZW compressed files). |
static int RAWIO::raw_out | ( | char * | filename, | |
uchar_t | type, | |||
int | w, | |||
int | h, | |||
uchar_t * | to_output, | |||
uchar_t * | to_output_sub | |||
) | [inline, static] |
Write raw file.
filename | The file to write. | |
type | The fileformat-type. | |
w | The width of the data to write. | |
h | The height of the data to write. | |
to_output | Dominant pass data for output (EZW). | |
to_output_sub | Subordinate pass data for output (EZW). |