代码搜索:detectors
找到约 42 项符合「detectors」的源代码
代码结果 42
www.eeworm.com/read/268818/4249895
v test_seq_rec_moore_imp.v
module test_seq_detectors ();
reg D_in, clock, reset;
wire D_out;
wire flag;
Seq_Rec_Moore_imp M0 (D_out, D_in, clock, reset);
initial begin clock = 0; forever #50 clo
www.eeworm.com/read/464305/7166320
m ca5.m
%Part 1:Compare various edge detectors
x=imread('fp.bmp');
e1=edge(x,'sobel');
e2=edge(x,'canny');
figure(1);
subplot(1,2,1)
imshow(e1);
title 'sobel edge detector';
subplot(1,2,2)
imshow