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

Consider splits and merges in tdating #349

Merged
merged 13 commits into from
Jul 22, 2024

Commits on Mar 7, 2024

  1. Ignore 0 in cell match

    Since 0 in labels means that no cell was identified in that pixel, we need to
    ignore 0 when matching. Otherwise we could have a situation where e.g the
    cell overlaps 0.55 with 0 and 0.45 with some cell and it would end up unmatched
    (`ID_coverage` would be 0 and a new track would be initialized)
    ritvje committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    f84da89 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0b32ac3 View commit details
    Browse the repository at this point in the history
  3. Store information about splits

    If the advected cell overlaps > 10% with more than one cell at next timestep, consider
    the advected cell as a split cell. Store information of which IDs the cell split to.
    Also for cells at current timestep, mark cells that resulted from splits
    ritvje committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    9919dfe View commit details
    Browse the repository at this point in the history
  4. Store information about merges

    If the cell at current timestep is overlapped > 10% by more than one advected cell,
    consider it merged and store IDs of previous cells.
    Also mark cells from previous timestep is they will merge at next timestep.
    ritvje committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    edf2178 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    8d22abd View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    8a29ff6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    880cc98 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    25209c2 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    d41dacd View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    58bd8a2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6b96124 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2024

  1. Configuration menu
    Copy the full SHA
    0d1ee6c View commit details
    Browse the repository at this point in the history
  2. Add short example

    dnerini committed Jul 20, 2024
    Configuration menu
    Copy the full SHA
    5c8fdce View commit details
    Browse the repository at this point in the history