![]() |
ETRI IVCL 1.0.0
Acceleration SW Platform for Ondevice
|
#include "lib.h"
Functions | |
int | index_y (int y, int height) |
int | index_x (int x, int width) |
void | filter_Gaussian (float **inputL, float **inputR, float **outputL, float **outputR, int width, int height) |
void | filter_Sobel (float **inputL, float **inputR, float **outputL, float **outputR, int width, int height) |
void filter_Gaussian | ( | float ** | inputL, |
float ** | inputR, | ||
float ** | outputL, | ||
float ** | outputR, | ||
int | width, | ||
int | height | ||
) |
Perform 5x5 Gaussian filtering on an image (Native)
inputL | Left input image |
inputR | Right input image |
outputL | The Gaussian filtered left image |
outputR | The Gaussian filtered right image |
width | The input image width |
height | The input image height |
void filter_Sobel | ( | float ** | inputL, |
float ** | inputR, | ||
float ** | outputL, | ||
float ** | outputR, | ||
int | width, | ||
int | height | ||
) |
Perform 5x5 Sobel filtering on an image (Native)
inputL | Left input image |
inputR | Right input image |
outputL | The Gaussian filtered left image |
outputR | The Gaussian filtered right image |
width | The input image width |
height | The input image height |
int index_x | ( | int | x, |
int | width | ||
) |
int index_y | ( | int | y, |
int | height | ||
) |