mincost.m

来自「实现图象,可以直接运行,里面有示例图象,十分便捷的实现图象压缩」· M 代码 · 共 35 行

M
35
字号
% Finds the indices of the cell that holds the minimum cost%% Input%   costs : The matrix that contains the estimation costs for a macroblock%% Output%   dx : the motion vector component in columns%   dy : the motion vector component in rows%% Written by Aroh Barjatyafunction [dx, dy, min] = minCost(costs)[row, col] = size(costs);% we check whether the current% value of costs is less then the already present value in min. If its% inded smaller then we swap the min value with the current one and note% the indices.min = 65537;for i = 1:row    for j = 1:col        if (costs(i,j) < min)            min = costs(i,j);            dx = j; dy = i;        end    endend

⌨️ 快捷键说明

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