diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2025-03-23 13:07:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-23 13:07:37 +0000 |
commit | d0a50900feef463d26d0306c90e98fecc3d1b007 (patch) | |
tree | f8b1041d51cb6d31f88cb3c69f54f311c92f05fd /tracker-neuralnet/ftnoir_tracker_neuralnet.h | |
parent | bdd0ee5a352e7178bcc716fa8ac16e71d84351be (diff) | |
parent | 0420cbdfb7dd12076accc70d1fdd0dd075a00d51 (diff) |
Merge pull request #1995 from DaWelter/master
tracker/nn: Add more fps options
Diffstat (limited to 'tracker-neuralnet/ftnoir_tracker_neuralnet.h')
-rw-r--r-- | tracker-neuralnet/ftnoir_tracker_neuralnet.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tracker-neuralnet/ftnoir_tracker_neuralnet.h b/tracker-neuralnet/ftnoir_tracker_neuralnet.h index 60715da3..fe755f51 100644 --- a/tracker-neuralnet/ftnoir_tracker_neuralnet.h +++ b/tracker-neuralnet/ftnoir_tracker_neuralnet.h @@ -48,7 +48,15 @@ enum fps_choices fps_default = 0, fps_30 = 1, fps_60 = 2, - fps_MAX = 3 + fps_75 = 3, + fps_125 = 4, + fps_200 = 5, + fps_50 = 6, + fps_100 = 7, + fps_120 = 8, + fps_300 = 9, + fps_250 = 10, + fps_MAX = 11, }; struct resolution_tuple |