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

Add SplitFunctions to split domains in hypercubes #1521

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Oct 7, 2020

  1. Add SplitFunctions to split domains in hypercubes

    Given a domain defined by lower and upper bound points and
    requested_number_of_splits implements two functions:
    - computeSplits returns the number of splits that the
    region can hold (lesser or equal than the requested)
    - getSplit returns the ith split and the outputLowerBound and
    outputUpperBound of the split region.
    
    Implementation acquired from ITK: itkImageRegionSplitterMultidimensional.cxx
    https://github.com/InsightSoftwareConsortium/ITK/blob/f971477cdacff22a861dfcbaccd89c0cf2755af7/Modules/Core/Common/src/itkImageRegionSplitterMultidimensional.cxx
    
    - Add splitComplex to SplitFunctions
    - Add test and change testSplitFunctions to use Catch
    phcerdan committed Oct 7, 2020
    Configuration menu
    Copy the full SHA
    4fac550 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2020

  1. Configuration menu
    Copy the full SHA
    1147454 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2021

  1. Configuration menu
    Copy the full SHA
    7d4f3da View commit details
    Browse the repository at this point in the history