Package | Description |
---|---|
metdetection.beat | |
metdetection.beat.fromfile | |
metdetection.joint | |
metdetection.meter |
Modifier and Type | Method and Description |
---|---|
abstract BeatTrackingModelState |
BeatTrackingModelState.deepCopy()
Create a deep copy of this BeatTrackingModelState.
|
Modifier and Type | Method and Description |
---|---|
abstract java.util.TreeSet<? extends BeatTrackingModelState> |
BeatTrackingModelState.close() |
abstract java.util.TreeSet<? extends BeatTrackingModelState> |
BeatTrackingModelState.handleIncoming(java.util.List<MidiNote> notes) |
Modifier and Type | Class and Description |
---|---|
class |
FromFileBeatTrackingModelState
A
FromFileBeatTrackingModelState generates a list of Beat s, the one
directly generated from the underlying MIDI. |
Modifier and Type | Method and Description |
---|---|
BeatTrackingModelState |
FromFileBeatTrackingModelState.deepCopy() |
Modifier and Type | Field and Description |
---|---|
private BeatTrackingModelState |
JointModelState.beatState
The BeatTrackingModel to use in our joint model.
|
Modifier and Type | Method and Description |
---|---|
BeatTrackingModelState |
JointModelState.getBeatState()
Get the BeatTrackingModelState currently in this JointModelState.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<? extends BeatTrackingModelState> |
JointModel.getBeatHypotheses()
Get an ordered List of the
BeatTrackingModelState s which are currently the top hypotheses
for this joint model. |
Constructor and Description |
---|
JointModel(VoiceSplittingModelState voice,
BeatTrackingModelState beat,
MetricalModelState hierarchy)
Create a new JointModel based on a state with the given constituent states.
|
JointModelState(VoiceSplittingModelState voice,
BeatTrackingModelState beat,
MetricalModelState hierarchy)
Create a new JointModelState with the given constituent states.
|
Modifier and Type | Field and Description |
---|---|
protected BeatTrackingModelState |
MetricalModelState.beatState
The BeatTrackingModelState which we are modeling jointly with.
|
Modifier and Type | Method and Description |
---|---|
BeatTrackingModelState |
MetricalModelState.getBeatState()
Get the BeatTrackingModelState which this hierarchy is based on.
|
Modifier and Type | Method and Description |
---|---|
void |
MetricalModelState.setBeatState(BeatTrackingModelState beatState)
Set the BeatTrackingModelState which this HierarchyModelState is to be based on.
|