Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image.CollapseHorizontally and Image.CollapseVertically #6

Open
swharden opened this issue Oct 31, 2022 · 0 comments
Open

Image.CollapseHorizontally and Image.CollapseVertically #6

swharden opened this issue Oct 31, 2022 · 0 comments

Comments

@swharden
Copy link
Owner

swharden commented Oct 31, 2022

Something like

public static double[] CollapseHorizontally(SciTIF.Image imgR)
{
    double[] collapsed = new double[imgR.Height];
    for (int y = 0; y < imgR.Height; y++)
    {
        double xSum = 0;
        for (int x = 0; x < imgR.Width; x++)
        {
            int offset = y * imgR.Width + x;
            xSum += imgR.Values[offset];
        }
        double xMean = xSum / imgR.Width;
        collapsed[y] = xMean;
    }
    return collapsed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant