Usage of `accumarray()` Function
accumarray allows to aggregate items of an array in various ways, potentially applying some function to the items in the process. accumarray can be thought of as a lightweight reducer (see also: Introduction to MapReduce ).
This topic will contain common scenarios where accumarray is especially useful.
Finding the maximum value among elements grouped by another vector
Section titled “Finding the maximum value among elements grouped by another vector”This is an official MATLAB example
Consider the following code:
month = [1;1;2;3;8;1;3;4;9;11;9;12;3;4;11];temperature = [57;61;60;62;45;59;64;66;40;56;38;65;61;64;55];maxTemp = accumarray(month,temperature,[],@max);The image below demonstrates the computation process done by accumarray in this case:
In this example, all values that have the same month are first collected, and then the function specified by the 4th input to accumarray (in this case, @max) is applied to each such set.
Apply Filter to Image Patches and Set Each Pixel as the Mean of the Result of Each Patch
Section titled “Apply Filter to Image Patches and Set Each Pixel as the Mean of the Result of Each Patch”Many modern Image Processing algorithms use patches are their basic element to work on.
For instance one could denoise patches (See BM3D Algorithm).
Yet when building the image form the processed patches we have many results for the same pixel.
One way to deal with it is taking the average (Empirical Mean) of all values of the same pixel.
The following code shows how to break an image into patches and them reconstruct the image from patches using the average by using [accumarray()][1]:
numRows = 5;numCols = 5;
numRowsPatch = 3;numColsPatch = 3;
% The ImagemI = rand([numRows, numCols]);
% Decomposing into Patches - Each pixel is part of many patches (Neglecting% boundariwes, each pixel is part of (numRowsPatch * numColsPatch) patches).mY = ImageToColumnsSliding(mI, [numRowsPatch, numColsPatch]);
% Here one would apply some operation which work on patches
% Creating image of the index of each pixelmPxIdx = reshape(1:(numRows * numCols), [numRows, numCols]);
% Creating patches of the same indicesmSubsAccu = ImageToColumnsSliding(mPxIdx, [numRowsPatch, numColsPatch]);
% Reconstruct the image - Option AmO = accumarray(mSubsAccu(:), mY(:)) ./ accumarray(mSubsAccu(:), 1);
% Reconstruct the image - Option BmO = accumarray(mSubsAccu, mY(:), [(numRows * numCols), 1], @(x) mean(x));
% Rehsape the Vector into the ImagemO = reshape(mO, [numRows, numCols]);Syntax
Section titled “Syntax”- accumarray(subscriptArray, valuesArray)
- accumarray(subscriptArray, valuesArray, sizeOfOutput)
- accumarray(subscriptArray, valuesArray, sizeOfOutput, funcHandle)
- accumarray(subscriptArray, valuesArray, sizeOfOutput, funcHandle, fillVal)
- accumarray(subscriptArray, valuesArray, sizeOfOutput, funcHandle, fillVal, isSparse)
Parameters
Section titled “Parameters”|Parameter|Details
|---|---|---|---|---|---|---|---|---|---
|subscriptArray|Subscript matrix, specified as a vector of indices, matrix of indices, or cell array of index vectors.
|valuesArray|Data, specified as a vector or a scalar.
|sizeOfOutput|Size of output array, specified as a vector of positive integers.
|funcHandle|Function to be applied to each set of items during aggregation, specified as a function handle or [].
|fillVal|Fill value, for when subs does not reference each element in the output.
|isSparse|Should the output be a sparse array?
Remarks
Section titled “Remarks”- Introduced in MATLAB v7.0.
References:
Section titled “References:”- “Under-appreciated
accumarray”, by Loren Shure, February 20, 2008. accumarrayin the official MATLAB documentation.
