abdkhan
Newbie level 2
- Joined
- Apr 10, 2007
- Messages
- 2
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,297
Hi Every one ,
I'm building and image processor , I want to store ten 128 X 128 images (8 bits per pixel)
in the Memory of a verilog code(i.e. Processor)
Let me ask it in another way
I have images sized 128 X 128
Bits per pixel are 8
need to store 10 images
total sized required will be 128 X 128 X 8 X 10 = 1310720
can is declare this much memory on any FPGA in the following way ?
considering all pixel in a row orientation
Verilog :
VHDL:
Can FPGA store this much amount in actual ? (any FPGA)
Regards
I'm building and image processor , I want to store ten 128 X 128 images (8 bits per pixel)
in the Memory of a verilog code(i.e. Processor)
Let me ask it in another way
I have images sized 128 X 128
Bits per pixel are 8
need to store 10 images
total sized required will be 128 X 128 X 8 X 10 = 1310720
can is declare this much memory on any FPGA in the following way ?
considering all pixel in a row orientation
Verilog :
reg [1:160000] mem[1:8];
VHDL:
type memory_array is array (0 to 160000) of std_logic_vector(7 downto 0);
Can FPGA store this much amount in actual ? (any FPGA)
Regards