登录
首页 » Visual C++ » CompressCurve

CompressCurve

于 2021-01-13 发布 文件大小:3713KB
0 253
下载积分: 1 下载次数: 0

代码说明:

说明:  光栏法的基本思想是(图1):定义一个扇形区域,通过判断曲线上的点在扇形外还是在扇形内,确定保留还是舍去。(The basic idea of ​ ​ light field is (Figure 1): definition of a fan-shaped region, by determining the point on the curve outside the sector or sector, to identify the retained or discarded.)

文件列表:

CompressCurve
.............\CompressCurve.aps,29876,2011-04-06
.............\CompressCurve.clw,2815,2011-04-06
.............\CompressCurve.cpp,4335,2006-02-14
.............\CompressCurve.dsp,5215,2006-09-15
.............\CompressCurve.dsw,551,2006-02-14
.............\CompressCurve.h,1433,2006-02-14
.............\CompressCurve.ncb,230400,2011-04-07
.............\CompressCurve.opt,50688,2011-04-07
.............\CompressCurve.plg,1969,2011-04-06
.............\CompressCurve.rc,12254,2006-02-14
.............\CompressCurveDoc.cpp,1882,2006-02-14
.............\CompressCurveDoc.h,1552,2006-02-14
.............\CompressCurveView.cpp,3760,2006-09-16
.............\CompressCurveView.h,2023,2006-02-14
.............\Debug
.............\.....\CompressCurve.bsc,5129216,2011-04-06
.............\.....\CompressCurve.exe,122988,2011-04-06
.............\.....\CompressCurve.ilk,328220,2011-04-06
.............\.....\CompressCurve.obj,23597,2006-09-15
.............\.....\CompressCurve.pch,6941528,2006-09-15
.............\.....\CompressCurve.pdb,525312,2011-04-06
.............\.....\CompressCurve.res,7648,2006-09-15
.............\.....\CompressCurve.sbr,0,2006-09-15
.............\.....\CompressCurveDoc.obj,15308,2006-09-15
.............\.....\CompressCurveDoc.sbr,0,2006-09-15
.............\.....\CompressCurveView.obj,29815,2011-04-06
.............\.....\CompressCurveView.sbr,0,2011-04-06
.............\.....\DlgCCInput.obj,10522,2006-09-15
.............\.....\DlgCCInput.sbr,0,2006-09-15
.............\.....\LinkPoint.obj,10224,2006-09-15
.............\.....\LinkPoint.sbr,0,2006-09-15
.............\.....\MainFrm.obj,20161,2006-09-15
.............\.....\MainFrm.sbr,0,2006-09-15
.............\.....\Raster.obj,8730,2006-09-15
.............\.....\Raster.sbr,0,2006-09-15
.............\.....\StdAfx.obj,105864,2006-09-15
.............\.....\StdAfx.sbr,1374922,2006-09-15
.............\.....\STPoint.obj,3710,2006-09-15
.............\.....\STPoint.sbr,0,2006-09-15
.............\.....\ttt.txt,0,2007-08-25
.............\.....\vc60.idb,230400,2011-04-07
.............\.....\vc60.pdb,372736,2011-04-06
.............\DlgCCInput.cpp,981,2006-02-14
.............\DlgCCInput.h,1229,2006-02-14
.............\LinkPoint.cpp,1424,2006-02-14
.............\LinkPoint.h,781,2006-02-14
.............\MainFrm.cpp,2514,2006-02-14
.............\MainFrm.h,1581,2006-02-14
.............\Raster.cpp,2484,2006-02-14
.............\Raster.h,758,2006-02-14
.............\ReadMe.txt,4479,2006-02-14
.............\res

.............\...\CompressCurve.rc2,405,2006-02-14


.............\resource.h,738,2006-02-14
.............\StdAfx.cpp,215,2006-02-14
.............\StdAfx.h,1054,2006-02-14
.............\STPoint.cpp,510,2006-02-14
.............\STPoint.h,561,2006-02-14

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

发表评论

0 个回复

  • arithmetic
    关于简单四则运算 每次可给出5题 累加正确题数 计算正确率(About four simple arithmetic can be given five questions each time cumulative number of questions correctly calculate the correct rate)
    2013-09-13 00:43:34下载
    积分:1
  • wanianli
    万年历的功能 实现多种功能 希望大家喜欢(Calendar features a variety of functions hope you like)
    2011-06-21 22:38:26下载
    积分:1
  • nice
    顺序表的创建,插入,输出,删除,且各个功能都在主函数中调用(Creation, insert, output by the sequence table, delete)
    2013-03-28 22:50:55下载
    积分:1
  • huffman
    哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统,试为这样的信息收发站写一个哈夫曼编译码系统。 一个完整的系统应具有以下功能: (1) (1) I: 初始化。从终端读入字符集大小 n ,及 n 个字符和 n 个权值,建立哈夫曼树,并将其存于文件hfmtree中。 (2) C: 编码。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3) D: 译码。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中。 (4) P: 打印代码文件。将文件codefi1e以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件codeprint中。 (5) T:打印哈夫曼树。将已在内存中的哈夫曼树以直观的方式(树或凹凸表形式)显示在屏幕上,同时将此字符形式的哈夫曼树写入文件treeprint中。 (利用哈夫曼编码进行信息通讯可以大大提高信道利用率,缩短信息传输时间,降低传输成本。但是,这要求在发送端通过一个编码系统对待传数据预先编码;在接收端将传来的数据进行译码(复原)。对于双工信道(即可以双向传输信息的信道),每端都需要一个完整的编/译码系统,试为这样的信息收发站写一个哈夫曼编译码系统。 一个完整的系统应具有以下功能: (1) (1) I: 初始化。从终端读入字符集大小 n ,及 n 个字符和 n 个权值,建立哈夫曼树,并将其存于文件hfmtree中。 (2) C: 编码。利用已建好的哈夫曼树(如不在内存,则从文件hfmtree中读入),对文件tobetrans中的正文进行编码,然后将结果存入文件codefile中。 (3) D: 译码。利用已建好的哈夫曼树将文件codefile中的代码进行译码,结果存入文件textfile中。 (4) P: 打印代码文件。将文件codefi1e以紧凑格式显示在终端上,每行50个代码。同时将此字符形式的编码文件写入文件codeprint中。 (5) T:打印哈夫曼树。将已在内存中的哈夫曼树以直观的方式(树或凹凸表形式)显示在屏幕上,同时将此字符形式的哈夫曼树写入文件treeprint中。 )
    2010-03-09 12:14:21下载
    积分:1
  • DIACHARGER
    铅酸蓄电池的大电流放电回路的控制,有自关断放电回路的功能的。(Control of the lead-acid batteries, high-current discharge circuit, since the shutdown function of the discharge circuit.)
    2012-02-21 23:08:36下载
    积分:1
  • kongjianhoufangjiaohui
    空间后方交会c++源代码,欢迎广大同胞下载(Space resection c++ source code, welcome compatriots download)
    2013-09-04 19:36:39下载
    积分:1
  • fanhuibian
    黑客反汇编解密书籍,pdf版本,想要学习逆向的可以看一看。(Hacker disassembly decryption books, pdf version, want to learn the reverse can look.)
    2014-01-09 09:59:32下载
    积分:1
  • keyboard
    实现的模拟键盘代码,模拟ps2协议,可以与计算机相连实现键盘的功能,在keil c下开发的。-89s51 achieved through keyboard simulation code, simulation ps2 agreement with the computer keyboard connected to the functions of the c Keil under development(Realize analog keyboard code, analog ps2 agreement, can realize the computer connected to the keyboard functions in keil c developed.-89s51 achieved through keyboard simulation code, simulation ps2 agreement with the computer keyboard connected to the functions of the c Keil under development)
    2007-11-06 13:15:35下载
    积分:1
  • 847457336
    VB汇编指令操作类(CALL注入)源程序,有需要的就下载吧。(VB class assembly instruction (CALL injection) source, there is a need to download it.)
    2013-08-17 01:06:08下载
    积分:1
  • Against-Hacker
    黑客反汇编揭密(中文版) 不适合初学者,适合有一定基础的人(Hackers Disassembly Revealed (Chinese version) is not suitable for beginners, suitable for people who have a certain foundation)
    2012-11-30 22:07:42下载
    积分:1
  • 696518资源总数
  • 105877会员总数
  • 14今日下载