登录
首页 » 图形图像 » 功能概述:提供一个时间

功能概述:提供一个时间

于 2022-10-11 发布 文件大小:725.64 kB
0 237
下载积分: 2 下载次数: 1

代码说明:

功能概述: 提供一个时间序列的分析插件,只需要提供时间轴和数值轴,就可以进行相关的可视化分析计算。 接口要求: 利用TeeChart为主要平台构建,支持WebService,支持ActiveX,支持OLE Automation。 所有数值序列采用数组存储,独立于数据库,支持数据的转入转出,支持文本和XML等格式导入导出 图像支持矢量输出,支持多种文件格式输出,支持Stream方式输出图像。 序列数据源(含中间序列)支持交互修改. 基于年序列的频率分析见单独的频率分析插件Hfre(R),与空间相关的分析参考Viso和Space插件。 -functions outlined : to provide a time-series analysis of plug-ins, need only provide time frame and numerical axis, it can be related to the visual analysis. Interface : use TeeChart main platform for building support WebService support ActiveX, OLE Automation support. All numerical sequence using array storage, independent of the database, support data transfer to support XML and text formats derived images into vector output support, support for multiple output file formats, support Stream mode output images. Sequence data sources (including intermediate sequence) support interactive changes. Based on the frequency, sequence analysis, see separate plug-frequency analysis Hfre (R), and space-related analysis a

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

发表评论

0 个回复

  • 一个新的主动轮廓模型算法,简化了传统的实现过程,性能也有所提高。相关论文(Active Contours Driven by Local Image Fitti...
    一个新的主动轮廓模型算法,简化了传统的实现过程,性能也有所提高。相关论文(Active Contours Driven by Local Image Fitting Energy)发表在Pattern Recognition 2009上。-A new active contour model algorithm, simplifying the traditional implementation process, performance also improved. Related Papers (Active Contours Driven by Local Image Fitting Energy), published in Pattern Recognition 2009 on.
    2023-06-22 19:15:03下载
    积分:1
  • 通过内存映射读取点云用到了函数模板,有关
    通过内存映射读取点云用到了函数模板,有关-wangd ds d df d df d df d
    2022-04-26 21:17:36下载
    积分:1
  • 原作者的pca
    原作者的pca-sift程序,对Lowe的sift做了一定改进。-The original author of the pca-sift procedures, Lowe" s sift made certain improvements.
    2022-09-02 13:20:03下载
    积分:1
  • 直方均衡化即归一化VC程序,和我上传的matlab对应,都是用于模式识别处理样本。...
    直方图均衡化即归一化VC程序,和我上传的matlab对应,都是用于模式识别处理图像样本。-Histogram equalization that is normalized VC process, and I upload matlab counterparts, are used for pattern recognition image processing samples.
    2023-08-12 10:45:09下载
    积分:1
  • Www.geometrictools.com from multi
    来自www.geometrictools.com的多平台3d引擎库.屏蔽了中国IP,国内IP上不去-Www.geometrictools.com from multi-platform 3d engine library. Shield the Chinese IP, internal IP do not
    2022-03-06 15:14:44下载
    积分:1
  • Machine learning
    机器学习-人脸识别,根据给定的学习样例,提取特征,生成分类。对测试的样例进行人脸方向的分类。需要在vs中进行开发。-Machine learning- face recognition, according to the given learning sample, extract features, generate classification. The test sample to face the direction of classification. Vs the need to develop.
    2022-03-19 17:02:24下载
    积分:1
  • OpenSceneGraph是一款高性能的3D开发库。广泛应用在可视化仿真、游戏、虚拟现实、高端技术研发以及建模等领域。使用标准的C++和 OpenGL编写...
    OpenSceneGraph是一款高性能的3D图形开发库。广泛应用在可视化仿真、游戏、虚拟现实、高端技术研发以及建模等领域。使用标准的C++和 OpenGL编写而成,可以运行在Windows系列、OSX、GNU/Linux、IRIX、Solaris、HP-Ux、AIX以及FreeBSD操作系统。-OpenSceneGraph is a high-performance 3D graphics development library. Widely used in visual simulation, games, virtual reality, high-technology research and development, as well as modeling and other fields. Using the standard C++ and written in OpenGL, you can run on Windows series, OSX, GNU/Linux, IRIX, Solaris, HP-Ux, AIX and FreeBSD operating systems.
    2022-07-27 01:26:32下载
    积分:1
  • 我的英语很差
    使用说明 使用时打开此例题目录下pic中的图片,然后依次单击按钮“转”、“1”、“2”、“3”、“4”和“5”,就可以实现精确的车牌定位。 具体步骤 1.24位真彩色->256色灰度图。 2.预处理:中值滤波。 3.二值化:用一个初始阈值T对图像A进行二值化得到二值化图像B。 初始阈值T的确定方法是:选择阈值T=Gmax-(Gmax-Gmin)/3,Gmax和Gmin分别是最高、最低灰度值。 该阈值对不同牌照有一定的适应性,能够保证背景基本被置为0,以突出牌照区域。 4.削弱背景干扰。对图像B做简单的相邻像素灰度值相减,得到新的图像G,即Gi,j=|Pi,j-Pi,j-1|i=0,1,…,439 j=0,1,…,639Gi,0=Pi,0,左边缘直接赋值,不会影响整体效果。 5.用自定义模板进行中值滤波 区域灰度基本被赋值为0。考虑到文字是由许多短竖线组成,而背景噪声有一大部分是孤立噪声,用模板(1,1,1,1,1)T对G进行中值滤波,能够得到除掉了大部分干扰的图像C。 6.牌照搜索:利用水平投影法检测车牌水平位置,利用垂直投影法检测车牌垂直位置。 7.区域裁剪,截取车牌图像。-my english is poor
    2023-06-10 05:40:04下载
    积分:1
  • 在VB的PictureBox控制中使用256色的例子
    在VB的PictureBox控制中使用256色图形的例子-in VB PictureBox control of the use of 256-color graphic example
    2022-02-26 13:01:55下载
    积分:1
  • 精通Visual C++ 编程
    精通Visual C++ 图像编程-proficient in Visual C Programming Image
    2023-02-14 04:30:15下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载