-
DCTJPEG
blkproc.m,DCHuffmanEncoding.m,ACHuffmanEncoding.m,zigzag.m,PSNR.m,
对灰度图像进行DCT变换,量化,ZigZag扫描,Huffman编解码,反量化,反DCT变换而重建图像。
其中,blkproc.m为分块DCT变换函数;
DCHuffmanEncoding.m,ACHuffmanEncoding.m分别为DC和AC变换系数的Huffman码表函数;
zigzag.m为ZigZag扫描函数;PSNR.m为求图像峰值信噪比函数。
Copyright 2008 Reserved @ Wang Chengyou @ Tianjin University, P.R.China. (This function tests the DCTJPEG codec)
- 2013-03-24 12:06:34下载
- 积分:1
-
eg3_IndependentProject_Timer_interrupt
说明: DSP28335芯片中断服务模块案例程序(case codes about time interrupt of DSP28335)
- 2020-06-22 20:20:01下载
- 积分:1
-
STM32SourceCodeVC
STM代码+VC界面代码使用STM32的时候可以作为模板哦!(STM code+ VC interface code can be used as a template when STM32 Oh!)
- 2011-01-09 22:44:14下载
- 积分:1
-
mxc
TQIMX6 显示有关的代码,自己做的注释,mark(This program is distributed in the hope that it will be useful)
- 2020-06-17 07:20:01下载
- 积分:1
-
13.6
这是一个利用dsp2812开发版自带的ad转化器,实现电信号转化成数字信号,并将数据存贮在存贮器的程序(This is a using DSP2812 development version comes with AD converter, realizes the electrical signal into digital signal and the data stored in the memory of the program
)
- 2015-07-09 11:46:26下载
- 积分:1
-
check_counter
vc查看计数器值的程序源码,希望对大家有所帮助(vc view the source code program counter value, we hope to help)
- 2011-06-05 23:15:12下载
- 积分:1
-
miaobiao
简易秒表,用stc89c52主控制,数码管显示(Simple stopwatch with stc89c52 master control, digital tube display)
- 2017-08-21 12:01:22下载
- 积分:1
-
XMLCreator
自动生成XML文档,自动生成XML文档.(create XML file
)
- 2014-08-08 18:09:24下载
- 积分:1
-
车载诊断标准ISO_15765-4_cn
说明: 无语了,为啥要20字,哈哈哈哈哈哈哈哈,今天天气不错(Speechless, why 20 words, ha ha ha ha ha ha ha ha ha, the weather is good today)
- 2020-04-21 10:54:56下载
- 积分:1
-
C# timer应用范例:左右飘动的窗体
C# 创建一个飘动的窗体,左右飘动,主要是对Timer的控制,基本的原理是:窗体的左上角横坐标随着timer1不断加一,窗体的左上角横坐标随着timer2不断减一,这个过程由Timer控制,因此你要写出一个循环,来控制Timer不停变化,比如timer不断加一:
Point p = new Point(this.DesktopLocation.X + 1, this.DesktopLocation.Y);
this.DesktopLocation = p;
if (p.X == 630)
{
timer1.Enabled = false;
timer2.Enabled = true;
}
以上代码的执行我们放入到private void timer1_Tick私有函数中,运行程序后即运行该函数。
- 2023-03-26 23:00:04下载
- 积分:1