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

Search list

[SourceCodeScrollBitmap_demo.zip

Description: Displaying a large bitmap file on a dialog box, in its original size, is quite difficult in the VC++ environment. However, it is possible to display a large bitmap to a predefined area of the dialog by using the StretchBlt( ) function.The major disadvantage of this is that the clarity of the image will be lost. Check out this article for displaying large bitmaps into the desired area of your dialog box in its original size with a scrolling technique used to show the entire bitmap. 滚动显示位图 在VC++环境下,在一个对话框中显示一个原始尺寸的大小的位图文件相当是困难的。然而,通过使用 StretchBlt()函数一个给定的区域显示一个大的位图是可能的。主要的缺点是图像将会失真。看了这篇通过卷动技术显示整个位图技术的文章,你将能够以它的原始尺寸在给定对话框的区域内显示一个大位图。 来源: http://www.codeguru.com/bitmap/ScrollBitmap.html
Platform: | Size: 31909 | Author: | Hits:

[SourceCodeWndToBmpFile.zip

Description: I have written this article to capture a Windows image into a bitmap file that will support all PaintBrush tools and Thumbnail Views of Windows Explorer. I have found many programmers suffering from this problem, including me, until I wrote this article. 捕获一个窗口图像并存入一个支持MS画笔的位图文件中 我写的这篇文章介绍了捕获一个窗口图像并存入一个支持所有画笔和Windows Explorer的位图文件中。 我发现许多程序员因这个问题而烦恼,包括我在内,直到我写了这篇文章。 来源: http://www.codeguru.com/bitmap/WndToBmpFile.html
Platform: | Size: 130891 | Author: | 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:

[GDI-BitmapIMAGECL.ZIP

Description: 实现图像的淡入淡出 图像强度慢慢地增强, 又可以慢慢地减弱,直到消失-achieve image fades out of images to enhance strength slowly, slowly diminished until disappear
Platform: | Size: 7653 | Author: 李程刚 | Hits:

[Graph programJPEG2SRC.ZIP

Description: JPEG image compression and decompression
Platform: | Size: 250880 | Author: Jiun | Hits:

[GDI-BitmapIMAGECL.ZIP

Description: 实现图像的淡入淡出 图像强度慢慢地增强, 又可以慢慢地减弱,直到消失-achieve image fades out of images to enhance strength slowly, slowly diminished until disappear
Platform: | Size: 7168 | Author: chgang | Hits:

[OtherDIP

Description: 06年版图像处理资料,介绍了数字图像处理的基本理论,以及基本的编程实现。-2006 version of image processing information, the introduction of digital image processing of the basic theory, and basic programming.
Platform: | Size: 6091776 | Author: liuyanbao | Hits:

[Special Effectssek_pain_forVB.ZIP

Description: VB实现图像处理功能:铅笔,橡皮擦等画图功能;色调,亮度,锐化,浮雕,反色等图像处理效果.-VB Image processing functions: pencils, eraser, such as drawing functions hue, brightness, sharpen, relief, anti-color effects such as image processing.
Platform: | Size: 12288 | Author: 蓝云 | Hits:

[matlabtarget_image_gen

Description: target image program in zip file
Platform: | Size: 4096 | Author: ravitej | Hits:

[Compress-Decompress algrithmsHARTLEY.ZIP

Description: The frequency domain plays an important role in image processing to smooth, enhance, and detect edges of images. Although image data typically does not include imaginary values, the fast Fourier transform (FFT) has been used for obtaining spectra. In this paper, the fast Hartley transform (FHT) is used to transform two-dimensional image data. Because the Hartley transform is real valued, it does not require complex operations. Both spectra and autocorrelations of two-dimensional ultrasound images of normal and abnormal livers were computed.
Platform: | Size: 4096 | Author: archit | Hits:

[Graph programcolor.ZIP

Description: This document contains details about color image procesing, conversion from HSI to RGB ,some sample codes ,characteristics of color,transformations,histogram equalisation and slicing.
Platform: | Size: 4611072 | Author: deeps | Hits:

[Windows Developimageenhancement.ZIP

Description: This document contains details about image enhancement techniques,spatial domain,frequency domain mathods.image stretching ,contrast slicing,sample codes , and some outputs are also included.
Platform: | Size: 5285888 | Author: deeps | Hits:

[Multimedia programimagerestore.ZIP

Description: This document contains details about image restoration techniques,realated sample codes and outputs.it deals with various types of noise and filters
Platform: | Size: 1442816 | Author: deeps | Hits:

[Windows DevelopEDGESCAN.ZIP

Description: Edge detection image processing with visual basic
Platform: | Size: 50176 | Author: chatchai | Hits:

[Delphi VCLVeryLargeBitmap.ZIP

Description: delphi大图片处理程序,用于处理特大的图片-Large Image Manipulation Program
Platform: | Size: 133120 | Author: zhoushaop | Hits:

[OtherFRACTAL.ZIP

Description: Fractal Image Compression and Decompression Demonstration Program
Platform: | Size: 155648 | Author: claub | Hits:

[Windows DevelopZIP

Description: Image Traitement Source tha i find on a website
Platform: | Size: 1949696 | Author: cuiere | Hits:

[Special Effectsimageedit.ZIP

Description: 实现一些图像的编辑功能,比如图像的打开,关闭,新建,删除,反转,等一些功能-Implement some image editing features, such as the image open, close, create, delete, reverse, and some other functions
Platform: | Size: 1351680 | Author: champion | Hits:

[OtherMatlab-digital-image-.ZIP

Description: 精通Matlab数字图像处理与识别,图像处理好的matalab资料-Proficient in Matlab digital image processing and recognition, image processing matalab good data
Platform: | Size: 24350720 | Author: 朱兆亮 | Hits:

[matlabzip

Description: THIS PROGRAM FOR IMAGE REGISTRATION. IT IS IN ZIP FORMAT.
Platform: | Size: 18432 | Author: gvshah5 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 23 »

CodeBus www.codebus.net