您现在的位置: 首页> 研究主题> LZW

LZW

LZW的相关文献在1995年到2023年内共计118篇,主要集中在自动化技术、计算机技术、无线电电子学、电信技术、电工技术 等领域,其中期刊论文66篇、会议论文3篇、专利文献49篇;相关期刊56种,包括知识经济、今日科苑、电测与仪表等; 相关会议3种,包括2007年北京地区高校研究生学术交流会、第十二届全国遥感技术学术交流会、全国第一届JAVA技术及应用研讨会等;LZW的相关文献由287位作者贡献,包括王永生、雷文虎、周晓根等。

LZW—发文量

期刊论文>

论文:66 占比:55.93%

会议论文>

论文:3 占比:2.54%

专利文献>

论文:49 占比:41.53%

总计:118篇

LZW—发文趋势图

LZW

-研究学者

  • 王永生
  • 雷文虎
  • 周晓根
  • 张贵军
  • 徐东伟
  • 李章维
  • 王永东
  • 郝小虎
  • 孙长龙
  • 窦茂森
  • 期刊论文
  • 会议论文
  • 专利文献

搜索

排序:

年份

关键词

    • 韩伟坤; 杨清祥
    • 摘要: 本文提出了一种利用FPGA实现LZW压缩算法的实现方案,描述了实现LZW算法的系统框图和控制器的控制逻辑,采用Verilog语言对核心控制单元进行模块化描述设计。在Xilinx的Artix7系列FPGA XC7A100T平台上进行仿真验证,结果表明本方案可行有效,并具有较好的移植性和可扩展性。
    • 朱仁凯; 李韬; 范振安
    • 摘要: 故障现象一辆2014年生产的五菱宏光S11.2SL,搭载L2B型发动机,VIN码为:LZWADAGA8E118****,累计行驶里程101126km,因启动困难,怠速熄火,报氧传感器故障,进行维修检测。故障诊断与排除经检查,车辆有故障灯点亮,读取故障码,报氧传感器故障。
    • 雷文虎; 户江民; 王均春; 谭淇文; 蒋元兵; 康宗绪
    • 摘要: 窄带无线通信网络主要使用微波、卫星、电台等窄带宽无线链路进行节点间互联,节点之间需要交互路由协议,并接受网管系统的控制.协议控制报文交互的安全性、传输可靠性和带宽占用率等是网络重要的考核指标.利用数据压缩和加密相结合的手段对协议控制报文的数据部分进行安全加固处理,可有效提升窄带无线通信网络协议控制报文的传输效率,增强网络内生安全.
    • 崔方送1
    • 摘要: 串表压缩(Lempel Ziv Welch,LZW)算法在词条存储过程中会重复存储已存储内容,在编码过程中造成内存浪费,而Huffman算法会占用CPU大量时间,为了克服这2种算法的缺点,提出了一种LZW-Huffman混合算法,在该算法的LZW编码阶段,采用二叉树结构存储词条,且对词条出现次数进行统计,再根据LZW压缩结果进行Huffman编码.经过测试分析,该混合算法能够节省LZW编码过程中的内存资源,压缩效果优于原始算法.
    • 崔方送
    • 摘要: 串表压缩(Lempel Ziv Welch,LZW)算法在词条存储过程中会重复存储已存储内容,在编码过程中造成内存浪费,而Huffman算法会占用CPU大量时间,为了克服这2种算法的缺点,提出了一种LZW-Huffman混合算法,在该算法的LZW编码阶段,采用二叉树结构存储词条,且对词条出现次数进行统计,再根据LZW压缩结果进行Huffman编码.经过测试分析,该混合算法能够节省LZW编码过程中的内存资源,压缩效果优于原始算法.
    • Mohammad Hjouj Btoush; Ziad E. Dawahdeh
    • 摘要: In this paper, we analyze the complexity and entropy of different methods of data compression algorithms: LZW, Huffman, Fixed-length code (FLC), and Huffman after using Fixed-length code (HFLC). We test those algorithms on different files of different sizes and then conclude that: LZW is the best one in all compression scales that we tested especially on the large files, then Huffman, HFLC, and FLC, respectively. Data compression still is an important topic for research these days, and has many applications and uses needed. Therefore, we suggest continuing searching in this field and trying to combine two techniques in order to reach a best one, or use another source mapping (Hamming) like embedding a linear array into a Hypercube with other good techniques like Huffman and trying to reach good results.
    • 李承泽; 於剑波; 张淼; 徐国爱; 孔浩浩
    • 摘要: Binary obfuscation plays an essential role in evading malware analysis and tampering with reverse engineering.Some widely used code obfuscation techniques focus on evading syntax based detection,however semantic analysis techniques have been developed to thwart their evasion attempts.Recently some binary obfuscation techniques with potential of evading both statistical and semantic detections have been proposed,taking concealment into account but lacking efficiency or security strength.This study proposes a binary obfuscation technique for mobile apps based on LZW and Huffman encoding to offer the potential of evading both statistical and semantic detections while taking intensity and concealment into account.This technique constructs the required instruction encoding tables.On one hand,it scrambles the sequence of original instructions with encoding tables to improve the intensity and concealment.On the other hand,it reinforces intensity by separating the encoding tables encrypted by white-box AES from code segment,concealing the key and lookup algorithm,in order to evading attacks on keys.A prototype tool for this technique,called ObfusDroid,is put forward,and an evaluation on ObfusDroid is given from aspects of intensity,cost,compatibility and concealment to demonstrate its capability of evading statistical analysis.%二进制混淆技术在规避恶意软件分析、防止利用逆向工程篡改中扮演着重要的角色,一些广泛使用的混淆技术关注于基于语法的检测,基于语义的分析技术在很多年前也已经被提出以防止逃避检测.近年来,一些考虑到统计特征和基于语义的二进制混淆技术开始被提出,这些方法开始关注混淆的隐蔽性,但总体来说效率较低或无法同时考虑到安全性的要求.提出一种针对Android移动应用的、基于Huffman编码和LZW编码的二进制混淆技术,同时将强度、开销和隐蔽性等考虑在内,具备规避基于统计特性和语义特征检测的能力.该技术构造混淆所需的指令编码表,一方面利用编码表对原始指令序列进行置乱,提高混淆技术的隐蔽性;另一方面,将核心编码表从代码执行数据段分离,通过白盒AES加密的方式在提高混淆技术本身安全性的同时隐藏密钥及密钥查找算法.研发出该技术工具原型ObfusDroid.最后,从安全强度、开销、平台适应性和隐蔽性这几个方面,对该技术进行评估和阐述.
    • 张耀楠; 金应东; 邱维宝
    • 摘要: 超声平面波成像是超声成像研究的热点之一,超声平面波带来超高帧频的同时也带来了超大数据量。如果将这些数据量直接通过硬件传输,势必对硬件带来极大的负担,也对硬件处理数据的能力提出了极高的要求。为了减少大数据量高帧频所带来的问题,该文通过数据压缩的方式来降低采集数据的传输量。分别从有损压缩和无损压缩方向进行了研究,选择了LZW压缩算法来尝试无损压缩的效果,而根据平面波特点,提出频域切割压缩算法作为有损压缩方法。将LZW算法在F G PA进行了实施,通过对超声仿真数据进行测试,可以达到一定的压缩比。在已知分数带宽的条件下,可以求出频谱中需要保留的带宽,而其余部分频率信号对图像影响的意义不大。通过对超声仿真数据的测试,频域切割压缩算法可以达到较高的压缩比,而比较原始图像和压缩重建图像,其差异是微小的。所以从压缩比角度,频域切割压缩算法是进行超声数据压缩的优先选择。%Ultrasonic plane wave imaging is one of the hot topics in the study of ultrasound imaging, but the plane wave ultra-high frequency ultrasound has brought a large amount of data. If these data are transmitted directly through the hardware, it will not only bring a great burden on the hardware, but also put a requirement for the ability of the hardware processing data. In order to reduce the problem caused by the high frame frequency and large amount of data, the data compression methods are used to reduce the amount of data acquisition and transmission. In this paper both lossy compression and lossless compression are studied, where LZW compression algorithm is chosen to test lossless compression effect, and based on the plane wave characteristics, the frequency domain cutting compression algorithm is developed as a lossy compression method. In this paper, the LZW algorithm is implemented in FGPA, and it can achieve a certain compression ratio after testing the ultra sonic simulation data. Under the condition of known fractional bandwidth, it is found that the main bandwidth can be preserved in the spectrum, while the rest of the frequency signal has little effect on the image. By testing the ultrasonic simulation data, the frequency domain cutting algorithm can achieve high compression ratio, and the difference between the original image and the reconstructed image is relatively smal . So from the point of the compression ratio, the frequency domain cutting algorithm is the primary choice of the ultrasonic data compression algorithm.
    • 邓富博; 李墨豪; 温恺林; 张朝璇; 陈晨
    • 摘要: 随着社会的发展和科技的进步,数据压缩越来越受到人们的重视.压缩算法可分为有损压缩和无损压缩.本文基于不同信源对常用的三种无损压缩算法(霍夫曼编码、游程编码及LZW编码)进行了研究与总结.对它们各自的原理进行了简单的介绍,并在最后归纳了它们的优缺点、适用范围及大体压缩率情况.
  • 查看更多

客服邮箱:kefu@zhangqiaokeyan.com

京公网安备:11010802029741号 ICP备案号:京ICP备15016152号-6 六维联合信息科技 (北京) 有限公司©版权所有
  • 客服微信

  • 服务号