Aquila
2.0 prealpha
Cognitive Robotics Architecture
|
Functions | |
__global__ void | findMotionKernel (int *image1, int *image2, int *result, int threshold) |
Basic motion finding algorithm which does not take into account the motion of the robot. | |
__global__ void | findClustersKernel (int *a, int *result) |
Search around each and every pixel in the motion image summing the result to give an indication of the relative density of motion around that pixel. | |
void | findMotionOnDevice (int *image1, int *image2, int *result, int threshold) |
Wrapper for findMotionKernel. | |
void | findClustersOnDevice (int *image, int *result) |
Wrapper for findClustersKernel. | |
__global__ void findClustersKernel | ( | int * | a, |
int * | result | ||
) |
Search around each and every pixel in the motion image summing the result to give an indication of the relative density of motion around that pixel.
[in] | a | |
[out] | result |
void findClustersOnDevice | ( | int * | image, |
int * | result | ||
) |
Wrapper for findClustersKernel.
[in] | a | |
[out] | result |
__global__ void findMotionKernel | ( | int * | image1, |
int * | image2, | ||
int * | result, | ||
int | threshold | ||
) |
Basic motion finding algorithm which does not take into account the motion of the robot.
[in] | image1 | |
[in] | image2 | |
[in] | threshold | |
[out] | result |
void findMotionOnDevice | ( | int * | image1, |
int * | image2, | ||
int * | result, | ||
int | threshold | ||
) |
Wrapper for findMotionKernel.
[in] | image1 | |
[in] | image2 | |
[in] | threshold | |
[out] | result |