This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS: Problem using function IMG_conv_3x3_i8_c8s in IMGLIB lib

Tool/software: Code Composer Studio

Hello,

i am trying to using the function IMG_conv_3x3_i8_c8s  in my code but the output is black image(when i made a hard copy of the implementation of the function from "TMS320C64x+ DSP Image/Video Processing Library (v2.0.1)"  to my code it  gave my a good result). 

Is someone can give me example how to use the function from the lib?, including how to define the variables.

here is my definition of my  variables and the call to the function:

unsigned char image_out_G[296*296];

unsigned char image_in[296*296] = { 23, 25, 29, 33, 38, 42, 45, 47, 50, 53....};

char gaussian_filter3[3*3] = { 1,2, 1, 2, 4, 2, 1, 2, 1};

IMG_conv_3x3_i8_c8s(image_in_noise,image_out_A ,296, gaussian_filter3,3);

Thank you for helping me.