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"); }