TLIB documentation
#include "tlVision.h"


Go to the source code of this file.
Functions | |
| int | tl_pixel_add (tlPixel *src, tlPixel *operand, int width, int height, int pixel_width, tlRect *rect, tlPixel *dest) |
| int | tl_pixel_sub (tlPixel *src, tlPixel *operand, int width, int height, int pixel_width, tlRect *rect, tlPixel *dest) |
| int | tl_pixel_scale (tlPixel *src, float factor, int width, int height, int pixel_width, tlRect *rect, tlPixel *dest) |
| int | tl_pixel_hradd (tlHRPixel *src, tlHRPixel *operand, int width, int height, int pixel_width, tlRect *rect, tlHRPixel *dest) |
| int | tl_pixel_hrsub (tlHRPixel *src, tlHRPixel *operand, int width, int height, int pixel_width, tlRect *rect, tlHRPixel *dest) |
| int | tl_pixel_hrscale (tlHRPixel *src, float factor, int width, int height, int pixel_width, tlRect *rect, tlHRPixel *dest) |
| int tl_pixel_add | ( | tlPixel * | src, | |
| tlPixel * | operand, | |||
| int | width, | |||
| int | height, | |||
| int | pixel_width, | |||
| tlRect * | rect, | |||
| tlPixel * | dest | |||
| ) |
Elementary pixel addition on pixel array.
| src | pixel array containing initial image | |
| operand | pixel array containing image to add | |
| width | image width | |
| height | image height | |
| pixel_width | pixel width | |
| rect | portion of the image to process | |
| dest | [out] pixel array containing the operation result |
| int tl_pixel_hradd | ( | tlHRPixel * | src, | |
| tlHRPixel * | operand, | |||
| int | width, | |||
| int | height, | |||
| int | pixel_width, | |||
| tlRect * | rect, | |||
| tlHRPixel * | dest | |||
| ) |
Elementary pixel addition on high-resolution pixel array.
| src | pixel array containing initial image | |
| operand | pixel array containing image to add | |
| width | image width | |
| height | image height | |
| pixel_width | pixel width | |
| rect | portion of the image to process | |
| dest | [out] pixel array containing the operation result |
| int tl_pixel_hrscale | ( | tlHRPixel * | src, | |
| float | factor, | |||
| int | width, | |||
| int | height, | |||
| int | pixel_width, | |||
| tlRect * | rect, | |||
| tlHRPixel * | dest | |||
| ) |
Elementary pixel scaling on high-resolution pixel array.
| src | pixel array containing initial image | |
| factor | scaling factor | |
| width | image width | |
| height | image height | |
| pixel_width | pixel width | |
| rect | portion of the image to process | |
| dest | [out] pixel array containing the operation result |
| int tl_pixel_hrsub | ( | tlHRPixel * | src, | |
| tlHRPixel * | operand, | |||
| int | width, | |||
| int | height, | |||
| int | pixel_width, | |||
| tlRect * | rect, | |||
| tlHRPixel * | dest | |||
| ) |
Elementary pixel subtraction on high-resolution pixel array.
| src | pixel array containing initial image | |
| operand | pixel array containing image to subtract | |
| width | image width | |
| height | image height | |
| pixel_width | pixel width | |
| rect | portion of the image to process | |
| dest | [out] pixel array containing the operation result |
| int tl_pixel_scale | ( | tlPixel * | src, | |
| float | factor, | |||
| int | width, | |||
| int | height, | |||
| int | pixel_width, | |||
| tlRect * | rect, | |||
| tlPixel * | dest | |||
| ) |
Elementary pixel scaling on pixel array.
| src | pixel array containing initial image | |
| factor | scaling factor | |
| width | image width | |
| height | image height | |
| pixel_width | pixel width | |
| rect | portion of the image to process | |
| dest | [out] pixel array containing the operation result |
| int tl_pixel_sub | ( | tlPixel * | src, | |
| tlPixel * | operand, | |||
| int | width, | |||
| int | height, | |||
| int | pixel_width, | |||
| tlRect * | rect, | |||
| tlPixel * | dest | |||
| ) |
Elementary pixel subtraction on pixel array.
| src | pixel array containing initial image | |
| operand | pixel array containing image to subtract | |
| width | image width | |
| height | image height | |
| pixel_width | pixel width | |
| rect | portion of the image to process | |
| dest | [out] pixel array containing the operation result |