登录
首页 » Matlab » 程序代码说明 P0401:用Prewitt算子检测图像的边缘 P0402:用不同σ值的LoG算子检测图像的边缘 P0403:用Canny算子检测图像的边缘 P0...

程序代码说明 P0401:用Prewitt算子检测图像的边缘 P0402:用不同σ值的LoG算子检测图像的边缘 P0403:用Canny算子检测图像的边缘 P0...

于 2023-06-04 发布 文件大小:40.97 kB
0 65
下载积分: 2 下载次数: 1

代码说明:

程序代码说明 P0401:用Prewitt算子检测图像的边缘 P0402:用不同σ值的LoG算子检测图像的边缘 P0403:用Canny算子检测图像的边缘 P0404:图像的阈值分割 P0405:用水线阈值法分割图像 P0406:对矩阵进行四叉树分解 P0407:将图像分为文字和非文字的两个类别 P0408:形态学梯度检测二值图像的边缘 P0409:形态学实例――从PCB图像中删除所有电流线,仅保留芯片对象-code P0401 Note : Prewitt operator to detect the edges in the image P0402 : different values of Getting operator to detect the edges in the image P0403 : Canny operator to detect the edges in the image P0404 : image thresholding segmentation P0405 : water line threshold method image segmentation P0406 : matrix Quadtree P0407 : images into text and non-text of the two categories P0408 : morphological gradient detection Binary Image Edge P0409 : morphology example-- Images from the PCB to remove all current lines, retaining only chip targets

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • proj-ASC
    simple microprocessor that gives the greatest common divisor of 2 (4bit) numbers
    2014-11-05 06:32:53下载
    积分:1
  • shunt
    Wound-field synchronous motors are well-known in industrial drives requiring constant speed irrespective of load. Separately controllable dc excitation in the form of dc field current is a unique feature in the power factor control of such a motor the lagging to leading mode.
    2015-02-06 04:49:45下载
    积分:1
  • nrtps_schedule
    分组调度算法中三种基本的调度算法,轮询(RR)、最大载干比(Max C/I)以及比例公平调度算法(PF)的MATLAB编程,对吞吐量、公平性以及时延性的仿真实现过程。((RR), Max C / I and MATLAB programming, the simulation of throughput, fairness and delay in the three basic scheduling algorithms, packet scheduling algorithm Implementation process.)
    2017-10-10 17:11:23下载
    积分:1
  • antdistance
    pheromone levels of terms based on the quality of the best rule among the rules constructed improves the predictive accuracy for some datasets.
    2010-09-06 21:39:31下载
    积分:1
  • SimpleMthd
    单纯形法matlab程序 求解标准型线性规划:max c*x s.t. A*x=b x>=0 本函数中的A是单纯初始表,包括:最后一行是初始的检验数,最后一列是资源向量b N是初始的基变量的下标 输出变量sol是最优解, 其中松弛变量(或剩余变量)可能不为0 输出变量val是最优目标值,kk是迭代次数( example:max 2*x1+3*x2 s.t. x1+2*x2<=8 4*x1<=16 4*x2<=12 x1,x2>=0)
    2013-11-29 17:05:08下载
    积分:1
  • 邓斯指数
    应用背景集群qvalidity指数普遍knwn as邓恩家指数。matlab实现关键技术matlab实现邓恩家指数可以很容易实现和测试。
    2022-01-21 20:58:39下载
    积分:1
  • 车道线检测代码MATLAB版本1
    适用于车道线检测初学者快速学会参数配置,每一行代码都有注释: clc; clear all; close all; % 设置显示标记,1表示都显示,0表示只显示车道线 DrawPoly = 1; % 处理起始范围 NumRows = 120; % 最大存储规模 MaxLaneNum = 20; % 单次最大匹配数目 ExpLaneNum = 2; % 存储车道线,初始化 Rep_ref   = zeros(ExpLaneNum, MaxLaneNum); % 统计数目 Count_ref = zeros(1, MaxLaneNum); % 最大变化距离阈值 TrackThreshold = 75; % 标记颜色 LaneColors = single([0 0 0;1 1 0; 1 1 0; 1 1 1;1 1 1]); % 车道线丢失异常下限 frameFound = 5; % 车道线丢失异常上限 frameLost = 20; % 选择弧度 Rho values 35:45 (1-based index: 415:424) startIdxRho_R = 415; NumRhos_R = 11; % 选择角度 Theta values -90:-70deg (1-based index: 1:21) startIdxTheta_R = 1; NumThetas_R = 21; % 选择弧度 Rho values 379:415 (1-based index: 1:36) startIdxRho_L = 380; NumRhos_L = 36; % 选择角度 Theta values 55:85deg (1-based index: 146:176
    2023-06-28 01:10:04下载
    积分:1
  • BregmanCookbook_v30
    基于bregman算法在一维、二维、三维信号处理中的应用matlab工具箱(This toolbox provides the source code associated with the Bregman Cookbook Doc: - BregmanCookbook.pdf In 1D: -L1_SplitBregmanIteration.m : performs the recovery of a sparse signal affected by a known linear operator In 2D: -AddCurveletArray.m : sum the curvelet coefficients of two decomposition structures -AddFrameletArray.m : sum the framelet coefficients of two decomposition structures -ATV_NB_Deconvolution.m : performs the Nonblind Anisotropic Total Variation Deconvolution -ATV_ROF.m : performs the Anisotropic Total Variation Denoising -ITV_ROF.m : performs the Isotropic Total Variation Denoising -Curvelet_NB_Deconvolution.m : performs the Nonblind Deconvolution based on Curvelet sparsity -Framelet_NB_Deconvolution.m : performs the Nonblind Deconvolution based on Framelet sparsity (Analysis approach) -Framelet_NB_Deconvolution2.m : performs the Nonblind Deconvolution based on Framelet sparsity (Synthesis approach) -ShrinkCurvelet.m : performs the shrinkage of cu)
    2012-05-27 09:56:08下载
    积分:1
  • LCD12864
    labview for example embrassion
    2015-04-04 18:35:06下载
    积分:1
  • cosamp
    压缩感知CS的重构算法中的cosamp算法程序 用于实现信号的重构(cosamp for compressive sensing reconstruction )
    2010-12-01 16:50:14下载
    积分:1
  • 696516资源总数
  • 106752会员总数
  • 15今日下载