Skip to content

Commit

Permalink
add features to phenotrack output
Browse files Browse the repository at this point in the history
  • Loading branch information
christian34 committed Dec 5, 2024
1 parent 0cc0d00 commit 895bec6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/openalea/phenomenal/tracking/trackedPlant.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,5 +345,6 @@ def growing_leaf_tracking(self):

def output(self):
ranks = [snapshot.leaf_ranks() for snapshot in self.snapshots]
features = [[leaf.features for leaf in snapshot.leaves] for snapshot in self.snapshots]
checks = np.array([snapshot.check_continuity for snapshot in self.snapshots])
return ranks, checks
return ranks, features, checks

0 comments on commit 895bec6

Please sign in to comment.