You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/Python-Batch-Component-API.md
+61-2Lines changed: 61 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -646,7 +646,7 @@ a static method, or a class method.
646
646
647
647
648
648
#### mpf_component_api.VideoJob
649
-
Class containing data used for detection of objects in a video file.
649
+
Class containing data used for detection of objects in a video file. Contains at most one feed-forward track.
650
650
651
651
* Members:
652
652
@@ -713,7 +713,7 @@ Class containing data used for detection of objects in a video file.
713
713
<tr>
714
714
<td>feed_forward_track</td>
715
715
<td><code>None</code> or <code>mpf_component_api.VideoTrack</code></td>
716
-
<td>An <code>mpf_component_api.VideoTrack</code> from the previous pipeline stage. Provided when feed forward is enabled. See <a href="../Feed-Forward-Guide/index.html">Feed Forward Guide</a>.</td>
716
+
<td>An optional <code>mpf_component_api.VideoTrack</code> from the previous pipeline stage. Provided when feed forward is enabled. See <a href="../Feed-Forward-Guide/index.html">Feed Forward Guide</a>.</td>
717
717
</tr>
718
718
</tbody>
719
719
</table>
@@ -733,6 +733,65 @@ they should only be used to specify properties that will not change throughout t
| video_job | `mpf_component_api.AllVideoTracksJob` | Object containing details about the work to be performed.
761
+
762
+
* Returns: An iterable of `mpf_component_api.VideoTrack`
763
+
764
+
765
+
#### mpf_component_api.AllVideoTracksJob
766
+
767
+
<divstyle="background-color:DeepSkyBlue"><pstyle="color:white; padding:5px"><b>EXPERIMENTAL:</b> This feature is not fully implemented.</p></div>
768
+
769
+
Class containing data used for detection of objects in a video file. May contain multiple feed-forward tracks.
770
+
771
+
Members are the same as `mpf_component_api.VideoJob` with the exception that `feed_forward_track` is replaced by
772
+
`feed_forward_tracks`.
773
+
774
+
* Members:
775
+
776
+
<table>
777
+
<thead>
778
+
<tr>
779
+
<th>Member</th>
780
+
<th>Data Type</th>
781
+
<th>Description</th>
782
+
</tr>
783
+
</thead>
784
+
<tbody>
785
+
<tr>
786
+
<td>feed_forward_tracks</td>
787
+
<td><code>None</code> or <code>List[mpf_component_api.VideoTrack]</code></td>
788
+
<td>An optional list of <code>mpf_component_api.VideoTrack</code> objects from the previous pipeline stage. Provided when feed forward is enabled and <code>FEED_FORWARD_ALL_TRACKS</code> is true. See <a href="../Feed-Forward-Guide/index.html#feed-forward-all-tracks">Feed Forward Guide</a>.</td>
789
+
</tr>
790
+
</tbody>
791
+
</table>
792
+
793
+
794
+
736
795
#### mpf_component_api.VideoTrack
737
796
Class used to store the location of detected objects in a video file.
<td><code>None</code> or <code>mpf_component_api.VideoTrack</code></td>
951
-
<td>An <code>mpf_component_api.VideoTrack</code> from the previous pipeline stage. Provided when feed forward is enabled. See <ahref="../Feed-Forward-Guide/index.html">Feed Forward Guide</a>.</td>
951
+
<td>An optional <code>mpf_component_api.VideoTrack</code> from the previous pipeline stage. Provided when feed forward is enabled. See <ahref="../Feed-Forward-Guide/index.html">Feed Forward Guide</a>.</td>
<divstyle="background-color:DeepSkyBlue"><pstyle="color:white; padding:5px"><b>EXPERIMENTAL:</b> This feature is not fully implemented.</p></div>
1010
+
1011
+
<p>Class containing data used for detection of objects in a video file. May contain multiple feed-forward tracks.</p>
1012
+
<p>Members are the same as <code>mpf_component_api.VideoJob</code> with the exception that <code>feed_forward_track</code> is replaced by
1013
+
<code>feed_forward_tracks</code>.</p>
1014
+
<ul>
1015
+
<li>Members:</li>
1016
+
</ul>
1017
+
<table>
1018
+
<thead>
1019
+
<tr>
1020
+
<th>Member</th>
1021
+
<th>Data Type</th>
1022
+
<th>Description</th>
1023
+
</tr>
1024
+
</thead>
1025
+
<tbody>
1026
+
<tr>
1027
+
<td>feed_forward_tracks</td>
1028
+
<td><code>None</code> or <code>List[mpf_component_api.VideoTrack]</code></td>
1029
+
<td>An optional list of <code>mpf_component_api.VideoTrack</code> objects from the previous pipeline stage. Provided when feed forward is enabled and <code>FEED_FORWARD_ALL_TRACKS</code> is true. See <ahref="../Feed-Forward-Guide/index.html#feed-forward-all-tracks">Feed Forward Guide</a>.</td>
0 commit comments