皮卡丘移动素材
2021-11-18 09:07:15 2.4MB 皮卡丘移动素材
1
bmp图片的快速傅里叶变换.zip 使用二维快速傅里叶变换,迭代法, 压缩包中含 c代码,bmp图片素材及png 转bmp 的转换工具。 详细可参考博文《【经典算法实现 45】C语言实现图像的FFT快速傅里叶变换及 IFFT逆变换》
2021-11-17 16:31:40 1.78MB 图片的快速傅里叶变换
1
在Linux操作系统下,将framebuffer中的缓存数据(也就是raw格式的数据)转换成BMP格式的图片
2021-11-17 14:49:25 2KB BMP
1
bmp转yuv的程序,学习视频处理的基础。 bmp转yuv的程序,学习视频处理的基础。 bmp转yuv的程序,学习视频处理的基础。 bmp转yuv的程序,学习视频处理的基础。
2021-11-17 14:14:17 388KB bmp yuv bmp2yuv 下载
1
用于将BMP文件转换为c文件,可以直接用于与ucGUI项目中的位图操作,支持65K色
2021-11-17 10:15:02 47KB BMP文件转换
1
此程序实现了BMP格式图片的特效显示,包括马赛克、扫面、滚动、渐进等特效。
2021-11-16 21:10:37 2.47MB BMP图片 特效显示
1
C语言图像处理:条形码识别 对于新手学习图像处理有较好的参考价值。 解压后将.bmp和.c文件放在同一文件夹下即可直接运行即可 (macos系统使用Xcode需要把文件路径改成绝对路径)
2021-11-16 14:55:25 955KB C语言 C++ 图像处理 bmp
1
Bmp To Mif 转换器 // (karimov 2005) // This program was originnaly written by one of the ECE241 students to convert an image // supplied in a BMP file into an MIF file format for use with Quartus II. // // This program has recently been modified to work with the new VGA controller used with the DE2 // board. // // What to do: // 1. Create an image in Microsoft paint (or other program). The image must be 160 pixels wide, 120 pixels high and // use 24-bits to represent colour information. // 2. Once you create the image you need, flip it up-side down. Then save the BMP file. (example: foo.bmp) // 3. Run this converter in command prompt using the name of the BMP file you created as a command-line parameter. // For example: // bmp2mif foo.bmp // 4. The program generates two files: // image.colour.mif - an MIF file with 3 bits colour information obtained from the BMP file you supplied // image.mono.mif - an MIF file containing 1 bit of colour for every pixel on the screen. The dot will either be // black or white. // You can change the file names once they are created, but they should still have the .mif extension. // // 5. Copy the proper MIF file to the directory where your design is located and include it in your project. // 6. Change the BACKGROUND_IMAGE parameter of the VgaAdapter to indicate your MIF file. // 7. The COLOR_CHANNEL_DEPTH parameter must be set to 1 to work with the image.colour.mif file. #include #include #define FLIP_INT(c) ((c >> 24) & 0x000000FF) | ((c & 0x00FF0000) >> 8) | ((c & 0x0000FF00) << 8) | ((c & 0x000000FF) <> 8) | ((c & 0x00FF) << 8) typedef struct s_header { unsigned short bfType; unsigned int bfSize; unsigned short reserved1; unsigned short reserved2; unsigned int offset; } t_bmp_header; typedef struct s_bmp_info { unsigned int biSize; unsigned int biWidth; unsigned int biHeight; unsigned short biPlanes; unsigned short biBitCount; unsigned in
2021-11-15 21:54:08 27KB DE2 FPGA Verilog BMP
1
自己毕业设计用到得指纹图像,找了很久才找到的。包含处理过程
2021-11-15 20:40:25 246KB 指纹图像
1
首先选择文件路径,然后将路径下的一组连续bmp图转换为压缩的avi视频;在VS2010下编译可用。
2021-11-15 18:58:49 137KB bmp avi
1