aditik19
Newbie level 5
Code:
// Define Sobel operator kernels
localparam [2:0][2:0] x_kernel ={ "-1, 0, 1", "-2, 0, 2", "-1, 0, 1" };
localparam [2:0][2:0] y_kernel = { " -1, -2, -1 ", " 0, 0, 0 ", " 1, 2, 1 "};
i am getting error
i want to implement it on vivado zcu106 board for edge detection for image processing and add hdmi to itmultiple packed dimensions are not allowed in this mode of verilog.
thank you