登录
首页 » Visual C++ » 图象压缩与传输

图象压缩与传输

于 2005-07-06 发布 文件大小:303KB
0 237
下载积分: 1 下载次数: 121

代码说明:

  这个源码涉及到网络编程,图像处理,数据压缩与传输。(source involved in the programming of the network, image processing, data compression and transmission.)

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

发表评论

0 个回复

  • stund_0.92_Jun06
    一个UDP穿透NAT的例子,遵守RFC3489(a UDP penetrate NAT example, compliance with RFC3489)
    2004-11-17 23:51:28下载
    积分:1
  • CalRemainder
    可以根据输入的生成多项式计算CRC16的余式表,并输出到TXT文件中打开。附赠CRC16的查表程序和直接计算程序,供验证用。使用这段程序,可以完美解决CRC16的编程问题,CRC32以及CRC8也可以参考使用。(CRC16 remainder table according to the generator polynomial of the input and output to a TXT file to open. Comes with a CRC16 table look-up procedure and a direct calculation program, for verification purposes. This program can be the perfect solution the CRC16 programming problem, the CRC32 and CRC8 also be of use.)
    2012-02-18 12:56:17下载
    积分:1
  • RemoteStartup
    说明:  远程开机的程序,有mfc,vc++,非常实用(Remote boot-consuming procedures, mfc, vc++, Very useful)
    2008-11-21 11:04:54下载
    积分:1
  • 1
    说明:  WinSock网络编程实用宝典。适合初学者以及深入理解网络编程的朋友。(WinSock network programming practical Collection. Suitable for beginners as well as in-depth understanding of network programming friends.)
    2011-07-04 17:38:27下载
    积分:1
  • BingJue-Communications-Test(110303)
    VB开发的IP测试程序,这是在我工作中写的调试程序,在配置文件中只需要写上相应的IP,程序就会循环测试IP地址是否在线,不在线的话就会报警提醒(VB development of IP test program, which is written in my work debugger, just write in the configuration file on the corresponding IP, the program will loop test IP address is online, not online, then it will alarm to remind)
    2014-01-27 13:56:19下载
    积分:1
  • InstantMessaging
    简单的网络聊天文件传输程序 可以 0.普通聊天(文字、图片) 1.聊天室 2.传输文件(断点续传) 3.共享屏幕 4.白板 5.视频、音频聊天(Simple network chat file transfer program can 0. General chat (text, images) a chatroom 2. Transfer files (HTTP) 3. Shared screen 4. Whiteboard 5 video and audio chat)
    2013-08-26 22:14:23下载
    积分:1
  • protntyping
    实现基本的图书管理功能,并能实现可移植性,是本人学习其间的练习作品,值得借鉴,()
    2017-09-26 07:02:40下载
    积分:1
  • ProjExtend
    中频感应加热以其加热效率高、速度快,可控性好及易于实现机械化、自动化等优点,已在熔炼、铸造、弯管、热锻、焊接和表面热处理等行业得到广泛的应用。 本设计根据设计任务进行了方案设计,设计了相应的硬件电路,研制了20KW中频感应加热电源。 本设计中感应加热电源采用IGBT作为开关器件,可工作在10 Hz~10 kHz频段。它由整流器、滤波器、和逆变器组成。整流器采用不可控三相全桥式整流电路。滤波器采用两个电解电容和一个电感组成Ⅱ型滤波器滤波和无源功率因数校正。逆变器主要由PWM控制器SG3525A控制四个IGBT的开通和关断,实现DC-AC的转换。 设计中采用的芯片主要是PWM控制器SG3525A和光耦合驱动电路HCPL-316J。设计过程中程充分利用了SG3525A的控制性能,具有宽的可调工作频率,死区时间可调,具有输入欠电压锁定功能和双路输出电流。由于HCPL-316J具有快的开关速度(500ns),光隔离,故障状态反馈,可配置自动复位、自动关闭等功能,所以选择其作为IGBT的驱动。 对原理样机的调试结果表明,所完成的设计实现了设计任务规定的基本功能。此外,为了满足不同器件对功率需要的要求,设计了功率可调。这部分超出了设计任务书规定的任务。(induction heating with high heating efficiency, speed and good controllability and easy to mechanization. the advantages of automation, in melting, casting, bending, forging, welding and surface heat treatment and other industries have been widely employed. According to the design tasks for the design of the program design, design corresponding to the hardware circuit, Development of 20 KW induction heating power. The design of induction heating power IGBT used as a switching device, which can work in 10 Hz- 10 kHz frequency band. It consists of rectifier, filter, and the inverter components. Controlled Rectifier not use the entire three-phase bridge rectifier circuit. 2 filter used an electrolytic capacitor and inductor components II-type filter and passive PFC. Inverter mainly by the PW)
    2007-04-19 11:31:35下载
    积分:1
  • iliyh
    含有可執行文件,用bmp來卸的,非常漂亮的表面(Contains executable files, unloaded with bmp, very nice surface)
    2018-10-22 03:47:53下载
    积分:1
  • YCArray
    说明:  /** * 动态数组的模板类 * 1.支持字符索引 * 2.方便的添加删除修改任意一项 * 最后更新 2004-8-9 yzh **1.优化了字符索引的运作方式,使用数组存储 **2.重写了底层数据的存储,将连续性的存储方式改为了非连续, *** 从而很好有效地支持了“引用”,并且让数据的删除增加变的更为快速 * 用法如: * YCArray<int,int> test * test.Add("Number2",4) * test.Add("Number1",2) * printf("%d %d",test["Number1"],test["Number2"]) * 显示: * 2 4 ******* ******* History: 2004-11-19 修改了析构函数,解决了索引没有释放的bug **/(/*** dynamic array template class* 1. Support characters Index* 2. Add convenience to delete arbitrary* a final update 2004-8-9 yzh** 1. Character Index optimized mode of operation, the use of storage arrays** 2 . a rewrite of the underlying data storage, storage continuity conversion of non-continuous, and thus good*** effective support to the "quote", and let the data changed to delete the more rapid* usage such as :* YCArraylt; int, intgt; test* test. Add ( "Number2", 4)* test.Add ( "Number1", 2)* printf ( "% d% d", test [ "Number1"] test [ "Number2"])* Display :** 2 4************* History : 2004-11-19 revised the destructors, the index did not address the release of bug** /)
    2005-09-06 13:03:51下载
    积分:1
  • 696518资源总数
  • 105540会员总数
  • 37今日下载