Skip to content

Labelled data associations always used #20

@SeanTasker

Description

@SeanTasker

I noticed an issue where the labels on observations were always used regardless of the whether a labelled association type was used.

The problem is due to an error in condition logic which is present four times in multitracker.h. The condition is written as:

if (alg == NNJPDA || NNJPDA_LABELED)

Which always succeeds since NNJPDA_LABELED will evaluate to true. The lines should read:

if (alg == NNJPDA || alg == NNJPDA_LABELED) 

The lines in question are: 220, 235, 252 and 275

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions