You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
427 B

struct input
{
int criFilterMode;
int frameCntr;
int scenariFrameNo;
};
kernel void Cri(read_only image2d_array_t input_frame, read_write image2d_t output_frame, struct input params)
{
const int rows = get_image_height(input_frame);
const int cols = get_image_width(input_frame);
int4 f = read_imagei(input_frame, (rows,cols,1,1));
printf("out: %a | ", f.x);
// printf(" :hi! I am the cri kernel");
}