![]() |
ETRI IVCL 1.0.0
Acceleration SW Platform for Ondevice
|
Macros | |
| #define | SIGMA_05 true |
Functions | |
| __kernel void | gaussianFilter_8bit (__global uchar *inL, __global uchar *inR, __global uchar *Left, __global uchar *Right) |
| __kernel void | gaussianFilter_8bit_image (__read_only image2d_t inL, __read_only image2d_t inR, __write_only image2d_t left, __write_only image2d_t right) |
| __kernel void | sobelFilter_8bit (__global uchar *inL, __global uchar *inR, __global uchar *Left, __global uchar *Right) |
| __kernel void | sobelFilter_8bit_image (__read_only image2d_t inL, __read_only image2d_t inR, __write_only image2d_t left, __write_only image2d_t right) |
| __kernel void | weightedMedianFilter2_8bit (__global float *disparity, __global uchar *output) |
Variables | |
| float constant | gaussian_kernel [25] |
| float constant | sobel_kernelY [25] |
| float constant | sobel_kernelX [25] |
| __constant sampler_t | sampler = CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP_TO_EDGE | CLK_FILTER_NEAREST |
| #define SIGMA_05 true |
| __kernel void gaussianFilter_8bit | ( | __global uchar * | inL, |
| __global uchar * | inR, | ||
| __global uchar * | Left, | ||
| __global uchar * | Right | ||
| ) |
Perform 5x5 Gaussian filtering on an image
| inL | Left input image |
| inR | Right input image |
| Left | The Gaussian filtered left image |
| Right | The Gaussian filtered right image |
| __kernel void gaussianFilter_8bit_image | ( | __read_only image2d_t | inL, |
| __read_only image2d_t | inR, | ||
| __write_only image2d_t | left, | ||
| __write_only image2d_t | right | ||
| ) |
Perform 5x5 Gaussian filtering on an image (using image2d)
| inL | Left input image |
| inR | Right input image |
| Left | The Gaussian filtered left image |
| Right | The Gaussian filtered right image |
| __kernel void sobelFilter_8bit | ( | __global uchar * | inL, |
| __global uchar * | inR, | ||
| __global uchar * | Left, | ||
| __global uchar * | Right | ||
| ) |
Perform 5x5 Sobel filtering on an image
| inL | Left input image |
| inR | Right input image |
| Left | The Sobel filtered left image |
| Right | The Sobel filtered right image |
| __kernel void sobelFilter_8bit_image | ( | __read_only image2d_t | inL, |
| __read_only image2d_t | inR, | ||
| __write_only image2d_t | left, | ||
| __write_only image2d_t | right | ||
| ) |
Perform 5x5 Sobel filtering on an image (using image2d)
| inL | Left input image |
| inR | Right input image |
| Left | The Sobel filtered left image |
| Right | The Sobel filtered right image |
| __kernel void weightedMedianFilter2_8bit | ( | __global float * | disparity, |
| __global uchar * | output | ||
| ) |
Perform Weighted Median Filtering as a post-processing on the disparity map
| disparity | Input disparity map |
| output | Output post-processed image |
| float constant gaussian_kernel[25] |
| __constant sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE | CLK_ADDRESS_CLAMP_TO_EDGE | CLK_FILTER_NEAREST |
| float constant sobel_kernelX[25] |
| float constant sobel_kernelY[25] |