- 博客(3)
- 资源 (1)
- 收藏
- 关注
原创 opencv遇到的一些问题
我的opencv版本是4.1.0,在编译用用版本opencv的时候遇到了一些问题。1.‘CV_BGR2GRAY’ was not declared in this scope 解决方法:添加#include <opencv2/imgproc/types_c.h>2.‘CV_LOAD_IMAGE_COLOR’ was not declared in this...
2020-01-06 10:27:34
399
1
原创 verilog设计交通信号灯
东西南北四个方向,两组交通灯轮流交替变换,其中,红灯时间为30个时间单位,绿灯时间为25个时间单位,黄灯时间为5个时间单位。源代码:1.状态机module signal_light(clk,rst,count,light1,light2); input clk,rst; input [5:0]count; output light1,light2; ...
2018-04-23 17:01:45
41146
10
原创 verilog设计一个数字时钟
源程序:module clock(clk,rst,h1,h2,m1,m2,s1,s2); input clk,rst; output h1,h2,m1,m2,s1,s2; // 1表示十位,2表示个位 reg [3:0]h1,h2,m1,m2,s1,s2; always@(posedge clk) begin if(!rst) s2<=0; else ...
2018-04-23 16:37:14
17366
4
CMakeLists.txt
2021-05-26
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人