⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jp1_reset_psot.m

📁 用matlab实现的JPEG算法
💻 M
字号:
% ----------------------------------------
% [pos] = jp1_reset_Psot(fid,pos,pos_Psot);
%
%
%
function  [pos] = jp1_reset_Psot(fid,pos,pos_Psot)

fin = pos ; % mem position
% calcul taille (header + data tuile)
%

taille_tile = fin - pos_Psot +6 ; 

fseek(fid,pos_Psot,'bof');

fwrite(fid,taille_tile,'uint32');

pos = fin ; % update
fseek(fid,pos,'bof');


⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -