spandsp 0.0.6
|
#include <stdlib.h>
#include <inttypes.h>
#include <limits.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <time.h>
#include <memory.h>
#include <string.h>
#include "floating_fudge.h"
#include <tiffio.h>
#include <assert.h>
#include "spandsp/telephony.h"
#include "spandsp/fast_convert.h"
#include "spandsp/logging.h"
#include "spandsp/saturated.h"
#include "spandsp/timezone.h"
#include "spandsp/t4_rx.h"
#include "spandsp/t4_tx.h"
#include "spandsp/t4_t6_decode.h"
#include "spandsp/t4_t6_encode.h"
#include "spandsp/image_translate.h"
#include "spandsp/private/logging.h"
#include "spandsp/private/t4_t6_decode.h"
#include "spandsp/private/t4_t6_encode.h"
#include "spandsp/private/t4_rx.h"
#include "spandsp/private/t4_tx.h"
#include "spandsp/private/image_translate.h"
Functions | |
int | image_translate_row (image_translate_state_t *s, uint8_t buf[], size_t len) |
Get the next row of a translated image. | |
int | image_translate_get_output_width (image_translate_state_t *s) |
Get the width of the image being produced by an image translation context. | |
int | image_translate_get_output_length (image_translate_state_t *s) |
Get the length of the image being produced by an image translation context. | |
image_translate_state_t * | image_translate_init (image_translate_state_t *s, int input_format, int input_width, int input_length, int output_width, t4_row_read_handler_t row_read_handler, void *row_read_user_data) |
Initialise an image translation context for rescaling and squashing a gray scale or colour image to a bi-level FAX type image. | |
int | image_translate_release (image_translate_state_t *s) |
Release the resources associated with an image translation context. | |
int | image_translate_free (image_translate_state_t *s) |
Free the resources associated with an image translation context. |
int image_translate_free | ( | image_translate_state_t * | s | ) |
Free the resources associated with an image translation context.
s | The image translation context. |
References image_translate_release().
int image_translate_get_output_length | ( | image_translate_state_t * | s | ) |
Get the length of the image being produced by an image translation context.
s | The image translation context. |
int image_translate_get_output_width | ( | image_translate_state_t * | s | ) |
Get the width of the image being produced by an image translation context.
s | The image translation context. |
image_translate_state_t * image_translate_init | ( | image_translate_state_t * | s, |
int | input_format, | ||
int | input_width, | ||
int | input_length, | ||
int | output_width, | ||
t4_row_read_handler_t | row_read_handler, | ||
void * | row_read_user_data ) |
Initialise an image translation context for rescaling and squashing a gray scale or colour image to a bi-level FAX type image.
s | The image translation context. |
input_format | x |
input_width | The width of the source image, in pixels. |
input_length | The length of the source image, in pixels. |
output_width | The width of the output image, in pixels. The length of the output image will be derived automatically from this and the source image dimension, to main the geometry of the original image. |
row_read_handler | A callback routine used to pull rows of pixels from the source image into the translation process. |
row_read_user_data | An opaque point passed to read_row_handler |
int image_translate_release | ( | image_translate_state_t * | s | ) |
Release the resources associated with an image translation context.
s | The image translation context. |
Referenced by image_translate_free().
int image_translate_row | ( | image_translate_state_t * | s, |
uint8_t | buf[], | ||
size_t | len ) |
Get the next row of a translated image.
s | The image translation context. |