MATLAB: This code part execute the block separation or standard deviation calculation, please clarify sir

#face recognition

fun = @(block_struct) ...
std2(block_struct.data) * ones(size(block_struct.data));

Best Answer

It returns a new block the same size as the input block, with every element set to the same value, the standard deviation of the block. It does no do block separation.