通过视频帧图片提取,图片批量裁剪,转换为BMP文件并取模,获得显示屏代码,基于STC32单片机,在8x8点阵LED模块上实现动画播放。
*.bmp
格式文件;1,2,3...
,之后使用批量取模工具生成相应的 16 进制代码,复制到程序中即可。详见:哔哩哔哩 bilibili .
或者将帧图片像素缩小至目标显示屏像素,保持彩色状态,存储为 BMP 格式,使用批量取模工具,勾选 转换彩图
,调整阈值至适当值(如66%),即可直接生成对应代码。
详见附录。该项目的STC代码见附件。
这里推荐使用 广州灵派科技 的 OledTools 软件对图片进行处理,可调整灰度阈值,对于像素点较少的情况,转换效果最佳;缺点是不能进行批量处理。
对于 128x64 像素的转换,各软件均可。批量转换推荐 PictureReader 软件,可批量生成 BMP 文件。
详见:CSDN博客 . www.52pojie.cn .
一些有趣的资源:Wokwi OLED Animation Maker for Arduino 动态图标显示在 128x64 显示屏利用 Arduino 代码。
clear;
video_file='test.mp4';
video=VideoReader(video_file);
frame_number=video.NumFrames;
fori = 1:5:frame_number
image_name=strcat('test',num2str((i-1)/5+1)); % 每5帧取一张图
image_name=strcat(image_name,'.jpg');
I=read(video,i); %读出图片
imwrite(I,image_name,'jpg'); %写入图片
I=[];
end
详见:知乎 (zhihu.com) .
可使用 sort_nat
函数解决,注意需要下载安装该函数。
file_path = '';
Tpath = 'Number\'; % target path
img_path_list = dir([file_path'*.bmp']);%图片路径
img_num = length(img_path_list);
sort_nat_name=sort_nat({img_path_list.name});
fork = 1:img_num
image_name = sort_nat_name{k};%获取图片名称
image = imread(strcat(file_path,image_name));%读取图片
imwrite(image,strcat(Tpath,int2str(k),'.bmp'),'bmp');
end
详见:CSDN博客 . File Exchange - MATLAB .
clear;clc;
file_path = ''; % 设定你存放图片的目录
img_path_list = dir(strcat(file_path, '*.jpg')); % 选后缀为 .jpg 的图片
img_num = length(img_path_list); %获得图片数量
forn = 1:img_num
image_name = img_path_list(n).name;
image = imread(strcat(file_path, image_name));
crop_image = imcrop(image, [3230, 1080, 1080]);
imwrite(crop_image, strcat('Cut/Cut', image_name)); % 保存文件
end
clear;clc;
numrows = 8;
numcols = 8;
file_path = ''; % 设定你存放图片的目录 - 当前文件夹
img_path_list = dir(strcat(file_path, '*.jpg')); % 选后缀为 .jpg 的图片
img_num = length(img_path_list); %获得图片数量
forn = 1:img_num
image_name = img_path_list(n).name;
image_n = image_name(1:end-4); % 删除文件后缀
image = imread(strcat(file_path, image_name));
RtG_image = rgb2gray(image); % rgb to gray
RS_image = imresize(RtG_image,[numrowsnumcols]);
BNR_image = imbinarize(RS_image);
imwrite(BNR_image,strcat('Resize8x8\RS',image_n,'.bmp'),'bmp');
end
转载请注明来源,谢谢!如有任何问题请于本贴留言或联系作者,邮箱 >lijinlei0907@163.com
作者: 无垠的广袤, 来源:面包板社区
链接: https://mbb.eet-china.com/blog/uid-me-4085469.html
版权声明:本文为博主原创,未经本人允许,禁止转载!
文章评论(0条评论)
登录后参与讨论