-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
157 additions
and
314 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
// -------------------------------------------------------------------------------------- | ||
// Organization: CALPLUG-FPGA | ||
// Project Name: | ||
// Date: Winter 2019 | ||
// FPGA Board: iCE40 UltraPlus SG48I | ||
// -------------------------------------------------------------------------------------- | ||
// File Name: camera_image.v | ||
// File Description: This is the camera module that implements the algorithm for capturing image from the camera | ||
// -------------------------------------------------------------------------------------- | ||
|
||
module CAMERA_IMAGE | ||
#( | ||
parameter RESOLUTION_W = 640; | ||
parameter RESOLUTION_H = 480; | ||
) | ||
( | ||
input wire [7:0] PIXEL , // 8 bits pixel data | ||
input wire VSYNC , // if VSYNC is high, that means all ENTIRE image pixels have been captured | ||
input wire HREF , // if HREF is high, that means ONE SEPARATE ROW of the image pixels have been captured | ||
input wire PCLK | ||
); | ||
|
||
wire capturing_image = !VSYNC; | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
endmodule; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.