fix errors
This commit is contained in:
parent
0f7ba1a48a
commit
068acbda28
|
@ -9,7 +9,7 @@ module chanels_to_RGB #(
|
||||||
input reset,
|
input reset,
|
||||||
|
|
||||||
input in_en,
|
input in_en,
|
||||||
input [IN_DEPTH - 1:0] data_in [2:0], // 0:R 1:G 2:B
|
input [15:0] data_in [2:0], // 0:R 1:G 2:B
|
||||||
|
|
||||||
// 输出相关
|
// 输出相关
|
||||||
input data_que, // 数据请求
|
input data_que, // 数据请求
|
||||||
|
|
7
isp.v
7
isp.v
|
@ -23,6 +23,7 @@ module isp #(
|
||||||
);
|
);
|
||||||
// 三通道合成RGB图像
|
// 三通道合成RGB图像
|
||||||
wire rgb_en;
|
wire rgb_en;
|
||||||
|
wire [15:0] im_red, im_green, im_blue;
|
||||||
|
|
||||||
// 任意比例缩放图像
|
// 任意比例缩放图像
|
||||||
reg scale_in_en;
|
reg scale_in_en;
|
||||||
|
@ -38,8 +39,8 @@ module isp #(
|
||||||
out_clk <= clk;
|
out_clk <= clk;
|
||||||
|
|
||||||
demosaic2 #(
|
demosaic2 #(
|
||||||
.IM_WIDTH(1936),
|
.IM_WIDTH(IN_WIDTH),
|
||||||
.IM_HEIGHT(1088),
|
.IM_HEIGHT(IN_HEIGHT),
|
||||||
.RAW_TYPE(RAW_TYPE)
|
.RAW_TYPE(RAW_TYPE)
|
||||||
) CFA (
|
) CFA (
|
||||||
.clk(clk),
|
.clk(clk),
|
||||||
|
@ -57,7 +58,7 @@ module isp #(
|
||||||
.clk(clk),
|
.clk(clk),
|
||||||
.reset(reset),
|
.reset(reset),
|
||||||
.in_en(rgb_en),
|
.in_en(rgb_en),
|
||||||
.data_in({im_red[11:0], im_green[11:0], im_red[11:0]}),
|
.data_in({im_red, im_green, im_red}),
|
||||||
|
|
||||||
.data_que(scale_in_que),
|
.data_que(scale_in_que),
|
||||||
.out_en(scale_in_en),
|
.out_en(scale_in_en),
|
||||||
|
|
Loading…
Reference in New Issue