Welcome![Sign In][Sign Up]
Location:
Search - zip.p

Search list

[JSP/JavajspSmartUpload.zip

Description:

使用jsp上载文件的例子


Platform: | Size: 118570 | Author: | Hits:

[Mathimatics-Numerical algorithmskalman.zip

Description:

卡尔曼滤波源码


Platform: | Size: 2058 | Author: | Hits:

[Browser Clienthttpprot.zip

Description:

Windows下的小型http服务器源代码!


Platform: | Size: 150395 | Author: | Hits:

[PHPZiplib PHP处理ZIP文件的类

Description:

    Ziplib 是一个用来建立、操作、控制 ZIP 文件的类。它看起来很小(11K),但是你可别小看了它,这个类的所有操作不需要 PHP 中ZLib 模板的支持。是的,你没有听错,这个类完全从底层控制了 ZIP 文件的读写!!! 这意味着你可以在任意一个主机上来操作你的 ZIP 文件。内附详细操作说明。Enjoy It!!


Platform: | Size: 7751 | Author: dssz.net | Hits:

[Internet-NetworkHTMViewer.zip

Description:

HTML文档显示源代码.


Platform: | Size: 61058 | Author: Gromit2008 | Hits:

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[Embeded Linux嵌入式程序员应该知道的16个问题.zip

Description:

嵌入式程序员应该知道的16个问题.zip


Platform: | Size: 15420 | Author: sightseer | Hits:

[Embeded-SCM Develop664491vivi bootloader for S3C2410的实现细节

Description:

664491vivi bootloader for S3C2410的实现细节.zip


Platform: | Size: 61004 | Author: hunter103 | Hits:

[Embeded-SCM DevelopuCOS51软件包

Description:

uCOS51软件包 (包含源码、硬件原理图PCB图).zip


Platform: | Size: 639426 | Author: haiqing05 | Hits:

[Graph programGOR_LAND.ZIP

Description: Land Runner by P.Geary - fake 3D dot landscape, 386+ (asm)
Platform: | Size: 8722 | Author: none | Hits:

[assembly languageOTP65R.ZIP

Description: usinf pic16c57 to achive copy machine for pic16c65/66(programmer)-usinf pic16c57 to achive copy machine for p ic16c65/66 (programmer)
Platform: | Size: 1709 | Author: xuguohao | Hits:

[WinSock-NDISIERefreshSample.zip

Description:

IERefreshSample 利用IE控件发送POST数据到服务器


Platform: | Size: 16065 | Author: dssz.net | Hits:

[Windows Kernelcpdh.zip

Description:

A collection of MFC classes to encapsulate the NT Performance Counters


Platform: | Size: 26007 | Author: aility | Hits:

[SQL Server读写SQL中的image字段.zip

Description: Private Declare Function DeleteFile Lib "kernel32" Alias "DeleteFileA" (ByVal lpFileName As String) As Long '************************************************************* Public Function ImportPhoto(sPicFile As String, sEmpID As String) As String Dim rcsPic As ADODB.Recordset Dim sMax As String Dim sInsertPic As String Dim rcsTemp As New Recordset Dim sTempSQL As String If Trim(sPicFile) = "" Then Exit Function On Error GoTo ErrorImportPhoto Set rcsPic = New ADODB.Recordset rcsPic.CursorType = adOpenKeyset rcsPic.LockType = adLockOptimistic ' rcsPic.Open "T_PPICTURE ", AstDbCnt, , , adCmdTable 'astdbcnt 替换为你连接方式 Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.LoadFromFile sPicFile rcsPic.AddNew rcsPic.Fields("PERS").Value = sEmpID rcsPic.Fields("PIC").Value = mstream.Read rcsPic.Update mstream.Close Set mstream = Nothing rcsPic.Close Set rcsPic = Nothing Exit Function ErrorImportPhoto: ImportPhoto = "FALSE" End Function '注意要将 AstDbCnt 替换为你的oracle 连接 Public Function DisplayPhoto(oPicture As PictureBox, sPicID As String) Dim rcsDisplay As ADODB.Recordset Set rcsDisplay = New ADODB.Recordset Dim mstream As ADODB.Stream Dim mc0 As String rcsDisplay.Open "Select * from T_PPICTURE where PERS = '" & sPicID & "'", AstDbCnt, adOpenKeyset, adLockOptimistic If rcsDisplay.EOF Then oPicture.Picture = LoadPicture() Exit Function End If If IsNull(rcsDisplay.Fields("PIC").Value) Then oPicture.Picture = LoadPicture() Exit Function End If Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.Write rcsDisplay.Fields("PIC").Value strclose = App.Path & "\AstPhoto_temp" DeleteFile (strclose) mstream.SaveToFile strclose mstream.Close Set mstream = Nothing rcsDisplay.Close Set rcsDisplay = Nothing oPicture.Picture = LoadPicture(strclose) End Function Private Sub Command1_Click() Set cn = New ADODB.Connection cn.Open "Provider=SQLOLEDB;data Source=IWP2;Initial Catalog=T213;User Id=sa;Password=sql123" Set rs = New ADODB.Recordset rs.Open "Select * from QB_T213PMPD where DT=2006080818", cn, adOpenKeyset, adLockOptimistic Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.Write rs.Fields("MPI").Value mstream.SaveToFile "P:\T213_data\ShowMPI\T213_3.mpi", adSaveCreateOverWrite rs.Close cn.Close End Sub Private Sub Command2_Click() Set cn = New ADODB.Connection cn.Open "Provider=SQLOLEDB;data Source=;Initial Catalog=pubs;User Id=;Password=" Set rs = New ADODB.Recordset rs.Open "Select * from pub_info", cn, adOpenKeyset, adLockOptimistic Set mstream = New ADODB.Stream mstream.Type = adTypeBinary mstream.Open mstream.LoadFromFile "" rs.Fields("logo").Value = mstream.Read rs.Update rs.Close cn.Close End Sub
Platform: | Size: 3123 | Author: wuzhiyong_130@163.com | Hits:

[Windows Developtabctrl.zip

Description:

关于 TAB的控制


Platform: | Size: 122949 | Author: dean97 | Hits:

[File OperateVB加密解密源代码

Description:

rijndaelvb.zip

The enclosed VB project includes a VB class that implements the Rijndael AES block encryption algorithm. The form in the project runs some test data through the class.

The rijndael.asp file is a VBScript ASP file that can be used as a server side include for encryption using the Rijndael AES block cipher algorithm. The rijndaeltest.asp shows how the encryption routine can be called by running some test data through the algorithm.

 


Platform: | Size: 13456 | Author: yusy2000 | Hits:

[Button controlImageEn.v2.3.0.Full.Source.zip

Description:

ImageEn.v2.3.0.Full.Source.zip


Platform: | Size: 1312232 | Author: damao1018 | Hits:

[Internet-Networkzip.lib

Description: 我的一个网友写的PHP下面的zip类 最适合PHP做网上办公系统和提供网站管理程序。-I wrote a netizen PHP zip following categories best suited to do online PHP office systems and site management procedures.
Platform: | Size: 3072 | Author: 董好然 | Hits:

[WEB CodePHP_zip_unzip

Description: 虚拟主机空间在线zip解压工具和虚拟主机空间在线zip打包工具。虚拟主机可直接上传,自主解压zip文件,和把空间所有或部分文件进行打包压缩。免去了找客服的麻烦和时间。-Web hosting space online zip decompression tools and hosting space online zip package tools. Virtual host can be directly uploaded, self-extracting zip file, and the space to package all or part of the file compression. Eliminates the trouble of looking for customer service and time.
Platform: | Size: 9216 | Author: 李相 | Hits:

[OtherT-REC-P.Imp863-201805-I!!ZIP-E

Description: implementation documentation of P.863
Platform: | Size: 2704384 | Author: rockek | Hits:
« 12 3 4 5 6 7 8 »

CodeBus www.codebus.net