搜索资源列表
ImgProcessing
- 可读写bmp格式的图的程序,给了Visobject.cpp 和 visobject.h 做样子,很容易将它们改成合自己用的,能读写bmp格式图象的程序。使用Linux的, 给出pcbitmap.h以备使用。写程序时注意读整数时字节是按顺序还是逆序排列的。-can read and write bmp format of the processes, and to the Visobject.cpp visobject.h frill, it is very easy to change thei
chepairecognition
- 使用VC++6.0做开发工具,一次处理一幅位图(有兴趣的可以作成MDI) 1)位图信息的数据是从左下往右下为一行,一行一行往上排的。 2)每行像素应该是4的倍数,不足的地方用空点补齐,读的时候注意跳过冗余点。 3)主要数据都存在Doc里面,BMP的主要数据存在一个由ImgData指向的BYTE型的内存空间(根据位图的大小,动态分配的)。 4)数据读进来以后,注意向内存中贴图,以保证刷新的效率。 5)程序执行流程-use as a developm
chepaidetection
- 使用VC++6.0做开发工具, 采用简单的SDI框架结构 ,一次处理一幅位图(有兴趣的可以作成MDI) 1)位图信息的数据是从左下往右下为一行,一行一行往上排的。 2)每行像素应该是4的倍数,不足的地方用空点补齐,读的时候注意跳过冗余点。 3)主要数据都存在Doc里面,BMP的主要数据存在一个由ImgData指向的BYTE型的内存空间(根据位图的大小,动态分配的)。 4)数据读进来以后,注意向内存中贴图,以保证刷新的效率。 5)程序执行流程-us
chepaishibie
- 读BMP文件,只能打开256色 (可以是灰度) 显示和内存贴图技术 关于调色板: 调色板实际上是一个数组,4个BYTE 分别是 B,G,R,和 Reserved 每一个像素点都有一个相应的数组。 关于VC和windows 的绘图机制: 使用GDI(图形设备接口)对象,通常使用CDC 类,CPaintDC也一样(device-context)设备上下文 windows下的MFC编程机制,消息驱动,事件等待! 全局的app(应用程序对
BitMapInfo
- BITMAP图象的各个BYTE情报全显示-BITMAP images all show the entire intelligence BYTE
DDB_show
- 用C++读取bmp文件,格式为byte型,转化为opencv可用的iplimage类型,并显示出来。-In C++ to read bmp file format a byte, into the opencv available iplimage type, and displayed.
LSB-Data-Hiding-Image
- 图像的组成无非是一些字符串或者一些字节组成的字符串,然而,每一个字节数据位的重要度并不是一样的,两个相邻字节往往只有低位是不一样的。例如:00100110和00100111代表了两个不同渐变度的红色,但是就人眼是分辨不出来的。最低有效位LSB算法,就是利用这一点,达到图像压缩,或者数字水印的功能。-The composition of the image is nothing more than some number of bytes or string composed of string,
ZoomDemo
- 图像处理的一些代码 注意:代码移植到其他体系的CPU时需要重新考虑字节顺序的大端小端问题!-Some image processing code Note: Code ported to other systems of the CPU when the need to reconsider the big endian byte order Xiaoduan problem!
JiyitexingLSB
- LSB密写技术是目前一种应用最为广泛的数据隐藏技术。本文通过对LSB密写算法的分析,指出了对载体图像进行LSB密写会引起图像统计特性改变的原因,并在此基础上提出了一种基于记忆特性的LSB密写算法。该算法记录下载体已经进行密写部分的统计特性,如果被嵌入的秘密比特与原始像素值的最低位相同,就不作改动 否则就根据该统计特性进行增1或减1的调整 在接收方,提取信息时只需要将载体图像的最低比特位提取、解密即可恢复秘密信息。该算法具有较高的隐蔽性,能够有效地抵抗统计分析方法。-Steganography i
CompressImage
- 灰度图像的像素值范围在[0,255]之间,如果采用一个像素一个字节的存储方式,势必会造成空间的浪费。如果采用一定的无损压缩算法,可以大大提高减小文件大小,减少存储空间。本程序采用动态规划中图像压缩算法(图像分段合并的思想),设计一个类,实现灰度位图数据的压缩和解压过程-Grayscale pixel values in the range [0,255], if we adopt a pixel one byte is stored, it must lead to
HuffmanCompression
- huffman compression i s a computer graphic assignment whereas it is compressed a image to pixel and compressed it into a smaller byte. This program is tested and written in c#
JPEG_to_BMP_ACDC_CODE
- JPEG本身只有描述如何將一個影像轉換為位元組的數據串流(streaming),但並沒有說明這些位元組如何在任何特定的儲存媒體上被封存起來。JPEG的壓縮方式通常是破壞性資料壓縮(lossy compression),意即在壓縮過程中圖像的品質會遭受到可見的破壞,有一種以JPEG為基礎的標準Lossless JPEG是採用無失真的壓縮方式,但Lossless JPEG並沒有受到廣泛的支援。 一個由獨立JPEG小組(Independent JPEG Group)所建立的額外標準,稱為JFIF(
com-graph
- In addition to component ordering and size, the pixel storage modes provide some additional control over the layout of images in memory, including the ability to address a subrectangle within a memory image. Figure 4.7 shows the layout of an imag
progcode3D
- 对灰度图像序列的有损到无损压缩方法,该序列必须为1byte/pel和2bytes/pel-Programs for progressive lossy to lossless compression of gray scale sequences of raw format 1 byte/pel and 2 bytes/pel images
k_means_image
- 完全用C++写得k-means算法实现图像分割源代码,逐个字节读取图像,-Completely with C++ write the k-means algorithm to achieve image segmentation source code, one by one byte to read the image,
CplusplusBitmapLibrarySourceCodeandExamples
- Descr iption The C++ Bitmap Library consists of simple, robust, optimized and portable 24-bit bitmap image processing algorithms for the C++ language. Capabilities The library has the following capabilities: Read/Write 24-bit Bitmap I
bin2hexbyte
- 将bin二进制文件转换成ti的CCS识别的字节hex数据文件-Bin binary file into the the ti' s CCS identification byte hex data file
DepthBasics-D2D
- 微软的Kinect深度图的显示及处理.在深度图帧中,每个像素有2个字节,而每个字节又有8位,故每个像素占了16位。虽然有16位,但并不是全部用来存储图像数据,从0到2是用来储存用户数据的。-Microsoft Kinect depth map display and processing in the depth map frames, each pixel has 2 bytes, and each byte of another eight, each pixel represented b
qtsciicodec
- Converts the first len characters in uc from Unicode to this encoding, and returns the result in a byte array. The state contains some conversion flags, and is used by the codec to maintain state information for Linux. -Converts the first len char
shujuleixingzhuanhuan
- 将bitmap类型的图片转换为stream类型,再转为byte类型,再还原的例子-Convert bitmap type of image to the stream type, and then into a byte type, reduction the example again
