CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 图形图象 搜索资源 - endpoint

搜索资源列表

  1. hueituchenxudaquan

    0下载:
  2. 程序的功能: 一、用两种不同算法(DDA法和中点法)画任意直线,输入方式有鼠标取点点法,和对话框输入直线端点法。直线颜色在画线前任意选取。 二、直线的属性控制。可以从对话框中任意输入线宽画直线。还有画虚线的功能,你可以输入虚线中实线部分的长度和空白间隔的长度来画虚线。 三、用两种算法(中点法和正负法)画任意圆。 四、画任意椭圆。画椭圆时限任意取两点确定一矩形,由该矩形确定椭圆的大小。 五、多边形填充。用鼠标取点画任意多边形,可选取任意颜色去填充多边形区域。 六
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:1239665
    • 提供者:wgz
  1. jiaohuline

    0下载:
  2. 用VC用++6.0编写的画直线程序,采用的是bresheham思想,直线的端点在对话框里输入,并且可以选择直线颜色-VC with 6.0 linear paintings prepared by the procedures, using the bresheham thinking, linear Lane endpoint in the dialog box input, and can choose color line
  3. 所属分类:2D图形编程

    • 发布日期:2008-10-13
    • 文件大小:44937
    • 提供者:qin
  1. DXF2MIKE

    3下载:
  2. 专门为MIKE 21定制的提取dxf文件数据点的程序.能够提取AutoCAD dxf文件中的:1.点高程2.Text中的数据3.线(包括Line,Polyline)中的高程数据,三种模式: 1)直接提取直线端点高程2)在直线上进行数据点的加密,然后输出3)输出为模型的水陆边界 -dedicated to the extraction of 21 customized data points dxf document procedures. To extract AutoCAD14 D
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:261289
    • 提供者:张高
  1. openglline

    0下载:
  2. 程序使用了Bresenham算法的思想,将四个象限的问题通过交换端点的方法合并成一,四象限的问题。再利用sign变量,统一成一个问题。又考虑到斜率<1,>1最终问题分成了两种情况。在直线插补程序的一开始,把斜率为正无穷的情况单独进行讨论。最终完成了整个程序-procedures for the use of the Bresenham algorithm thinking, four quadrant of the issue through the exchange of endp
  3. 所属分类:OpenGL

    • 发布日期:2008-10-13
    • 文件大小:87081
    • 提供者:吴子朝
  1. finger-recong

    0下载:
  2. 指纹识别源代码。思路完全是按照文件夹中网页里介绍的方法,即提取指纹中的分叉点和端点的位置作为指纹的特征值。由于今天太忙,对图像的预处理作的很失败,程序会提取出很多伪点,而指纹轮廓也没有想出办法过滤。汗,你看看能不能参考把。 三个m文件,fd.m提取指纹中的分叉点,fd2.m提取指纹中的端点,Cpoint.m则是前两个文件运行中需要调用的掩模函数。-fingerprint identification code. Thinking is entirely in accordance wi
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:299394
    • 提供者:闫晟
  1. mylineseg

    0下载:
  2. 线段及直线的基本运算 1. 点与线段的关系2. 求点到线段所在直线垂线的垂足3. 点到线段的最近点4. 点到线段所在直线的距离 5. 点到折线集的最近距离 6. 判断圆是否在多边形内7. 求矢量夹角余弦 8. 求线段之间的夹角9. 判断线段是否相交10.判断线段是否相交但不交在端点处11.求线段所在直线的方程 12.求直线的斜率 13.求直线的倾斜角14.求点关于某直线的对称点15.判断两条直线是否相交及求直线交点 16.判断线段是否相交,如果相交返回交点-straight line segme
  3. 所属分类:图形图像处理(光照,映射..)

    • 发布日期:2008-10-13
    • 文件大小:1265
    • 提供者:孤星赶月
  1. 基本画线实现算法

    0下载:
  2. 新建一个C++Builder项目 设置Form1的font为“宋体,小五” 在Form1中添加一个TRadioGroup组件rgDrawWhat供选择画什么图形;添加一个Tbutton组件colorBtn和一个TcolorDialog组件ColorDialog1;添加一个TImage组件Image1。 3、 将当前项目保存在自己实验文件夹的exp1子文件夹中(以防错误操作而前功尽弃)。 编写colorBtn的OnClick事件,激活ColorDialog1,并获取所选择的颜色: if (Col
  3. 所属分类:2D图形编程

    • 发布日期:2008-10-13
    • 文件大小:584157
    • 提供者:朱磊
  1. 实验报告2

    0下载:
  2. 重点撑握数值微分法.此法主要内容为先算出直线的斜率 k=△y/△x 其中, △x=x1-x0, △y=y1-y0,(x0,y0)和(x1,y1)分别是直线的端点坐标。然后,从直线的起点开始,确定最佳逼近于直线的y坐标均为整数,让X从起点到终点变化,每步递增1,计算对应的y坐标,y=kx+B,并取象素(x,round(y))。用这个方法既直观,以可行,然而效率低。-focus on shoring grip numerical differentiation. This method is mai
  3. 所属分类:绘图程序

    • 发布日期:2008-10-13
    • 文件大小:27857
    • 提供者:news
  1. Bsplinecurve.rar

    0下载:
  2. 基于VC的三种端点条件的插值B样条曲线绘制,包括夹持端点,自由端点,抛物线端点,线性方程组的解法采用了追赶法。,VC based on the conditions of the three endpoint interpolation B-spline curve drawing, including the gripping end, the Liberal endpoint, the endpoint parabola, the solution of linear equations u
  3. 所属分类:Graph Drawing

    • 发布日期:2017-04-06
    • 文件大小:141821
    • 提供者:梦琦
  1. dfs_image_main

    0下载:
  2. 图像域上的DFS遍历,函数返回连通域数量,范围端点以及最大值-DFS traversal on the image domain, the function returns the number of connected domains, the scope of the endpoint as well as the maximum value
  3. 所属分类:Picture Viewer

    • 发布日期:2017-04-05
    • 文件大小:1092
    • 提供者:paul
  1. Example1

    0下载:
  2. 绘制多种风格的端点-Draw a variety of styles of endpoint
  3. 所属分类:Graph Drawing

    • 发布日期:2017-04-15
    • 文件大小:8916
    • 提供者:zhong
  1. lz0

    0下载:
  2. 功能:将图中所有直线的端点的Z座标均改为0。用途:用于处理PKPM软件形成的图中两直线不能fillet的问题。-Function: to map all of the Z line endpoint coordinates are changed to 0. Uses: PKPM software used to deal with the formation of two straight line graph should not fillet problem.
  3. 所属分类:Graph Drawing

    • 发布日期:2017-04-02
    • 文件大小:1432
    • 提供者:li
  1. zhaotuozhan2

    0下载:
  2. 根据输入点(人工),结合边缘检测,找到道路提取中道路的端点-According to the importation of points (artificial), combined with edge detection, extraction of the road to find the path endpoint
  3. 所属分类:Graph Recognize

    • 发布日期:2017-04-10
    • 文件大小:1603
    • 提供者:zc
  1. Bresenham

    0下载:
  2. 该程序实现了Bresenham算法画直线,将四个象限的问题通过交换端点的方法合并成一,四象限的问题。再利用sign变量,统一成一个问题。又考虑到斜率<=1,>1,不存在,最终问题分成了三种情况。-The program implements Bresenham algorithm for drawing a straight line, the four quadrants of the problem through the exchange of endpoint methods
  3. 所属分类:2D Graphic

    • 发布日期:2017-05-08
    • 文件大小:1642034
    • 提供者:王程冬
  1. line_hough

    0下载:
  2. 利用hough变换检测图像中的直线,得到检测直线的参数与首位端点,并在原图中标出所检测到得直线。-Detection using hough transform image of the straight line parameters to be detected with the first endpoint, and the Original bid to get straight out of the test.
  3. 所属分类:Graph program

    • 发布日期:2017-04-01
    • 文件大小:8873
    • 提供者:JH
  1. Wavelet_denoising

    0下载:
  2. 小波处理+源代码+实践步骤,初学者可以看看哈-aviation noise background voice endpoint detection and voice enhancement algorithms, and very low signal to noise ratio in the strong aviation background noise, particularly effective
  3. 所属分类:Wavelet

    • 发布日期:2017-04-06
    • 文件大小:229500
    • 提供者:解昆
  1. shuohuarenshibie-MATLAB-duandianjiance-yujiazhong-

    0下载:
  2. 说话人识别代码,端点检测,预加重,MFCC..采用的模型是神经网络~-Speaker identification code, endpoint detection, pre-emphasis, MFCC .. neural network model is adopted ~
  3. 所属分类:Graph Recognize

    • 发布日期:2017-03-31
    • 文件大小:4966
    • 提供者:
  1. EMD-Algorithm

    0下载:
  2. 核心算法,它的分解效果依赖于包络线的生成算法和端点延拓算法-The core algorithm, the effect of its decomposition depends on the envelope generation algorithm and endpoint extension algorithm
  3. 所属分类:Special Effects

    • 发布日期:2017-04-01
    • 文件大小:207766
    • 提供者:王静
  1. dtw

    0下载:
  2. 本为主要阐述了小波变换在语音信号去噪的应用,语音端点的检测,语音特征的提取及一种简单的语音识别算法。-This is mainly expounds the wavelet transform in the application of speech signal denoising, speech endpoint detection, speech characteristics of the extraction and a simple speech recognition algori
  3. 所属分类:Wavelet

    • 发布日期:2017-05-08
    • 文件大小:1651169
    • 提供者:renly
  1. pltr

    1下载:
  2. cad中调转多段线的起始端点和终点,在切剖平面图时用于调换方向。-cad in turn around the endpoint and end of the beginning of the polyline used to swap the direction of the cut cutaway plan.
  3. 所属分类:Graph Drawing

    • 发布日期:2017-03-29
    • 文件大小:3586
    • 提供者:王盛宝
« 12 3 »
搜珍网 www.dssz.com