Skip to content

inference_pipeline

InferencePipeline

Source code in inference/core/interfaces/stream/inference_pipeline.py
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
class InferencePipeline:
    @classmethod
    def init(
        cls,
        video_reference: Union[VideoSourceIdentifier, List[VideoSourceIdentifier]],
        model_id: str,
        on_prediction: SinkHandler = None,
        api_key: Optional[str] = None,
        max_fps: Optional[Union[float, int]] = None,
        watchdog: Optional[PipelineWatchDog] = None,
        status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
        source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
        source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
        class_agnostic_nms: Optional[bool] = None,
        confidence: Optional[float] = None,
        iou_threshold: Optional[float] = None,
        max_candidates: Optional[int] = None,
        max_detections: Optional[int] = None,
        mask_decode_mode: Optional[str] = "accurate",
        tradeoff_factor: Optional[float] = 0.0,
        active_learning_enabled: Optional[bool] = None,
        video_source_properties: Optional[
            Union[Dict[str, float], List[Optional[Dict[str, float]]]]
        ] = None,
        active_learning_target_dataset: Optional[str] = None,
        batch_collection_timeout: Optional[float] = None,
        sink_mode: SinkMode = SinkMode.ADAPTIVE,
    ) -> "InferencePipeline":
        """
        This class creates the abstraction for making inferences from Roboflow models against video stream.
        It allows to choose model from Roboflow platform and run predictions against
        video streams - just by the price of specifying which model to use and what to do with predictions.

        It allows to set the model post-processing parameters (via .init() or env) and intercept updates
        related to state of pipeline via `PipelineWatchDog` abstraction (although that is something probably
        useful only for advanced use-cases).

        For maximum efficiency, all separate chunks of processing: video decoding, inference, results dispatching
        are handled by separate threads.

        Given that reference to stream is passed and connectivity is lost - it attempts to re-connect with delay.

        Since version 0.9.11 it works not only for object detection models but is also compatible with stubs,
        classification, instance-segmentation and keypoint-detection models.

        Since version 0.9.18, `InferencePipeline` is capable of handling multiple video sources at once. If multiple
        sources are provided - source multiplexing will happen. One of the change introduced in that release is switch
        from `get_video_frames_generator(...)` as video frames provider into `multiplex_videos(...)`. For a single
        video source, the behaviour of `InferencePipeline` is remained unchanged when default parameters are used.
        For multiple videos - frames are multiplexed, and we can adjust the pipeline behaviour using new configuration
        options. `batch_collection_timeout` is one of the new option - it is the parameter of `multiplex_videos(...)`
        that dictates how long the batch frames collection process may wait for all sources to provide video frame.
        It can be set infinite (None) or with specific value representing fraction of second. We advise that value to
        be set in production solutions to avoid processing slow-down caused by source with unstable latency spikes.
        For more information on multiplexing process - please visit `multiplex_videos(...)` function docs.
        Another change is the way on how sinks work. They can work in `SinkMode.ADAPTIVE` - which means that
        video frames and predictions will be either provided to sink as list of objects, or specific elements -
        and the determining factor is number of sources (it will behave SEQUENTIAL for one source and BATCH if multiple
        ones are provided). All old sinks were adjusted to work in both modes, custom ones should be migrated
        to reflect changes in sink function signature.

        Args:
            model_id (str): Name and version of model at Roboflow platform (example: "my-model/3")
            video_reference (Union[str, int, List[Union[str, int]]]): Reference of source or sources to be used to make
                predictions against. It can be video file path, stream URL and device (like camera) id
                (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then
                it will trigger parallel processing of multiple sources. It has some implication on sinks. See:
                `sink_mode` parameter comments.
            on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
                once prediction is ready - passing both decoded frame, their metadata and dict with standard
                Roboflow model prediction (different for specific types of models).
            api_key (Optional[str]): Roboflow API key - if not passed - will be looked in env under "ROBOFLOW_API_KEY"
                and "API_KEY" variables. API key, passed in some form is required.
            max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
                dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
                on single machine making tradeoff between number of frames and number of streams handled. Disabled
                by default.
            watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
                inference pipeline - if not given null implementation (doing nothing) will be used.
            status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
                status updates of all elements of the pipeline. Should be used only if detailed inspection of
                pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
                fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
                without re-raising. Default: None.
            source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
                video stream decoding behaviour. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
                video stream frames consumption. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            class_agnostic_nms (Optional[bool]): Parameter of model post-processing. If not given - value checked in
                env variable "CLASS_AGNOSTIC_NMS" with default "False"
            confidence (Optional[float]): Parameter of model post-processing. If not given - value checked in
                env variable "CONFIDENCE" with default "0.5"
            iou_threshold (Optional[float]): Parameter of model post-processing. If not given - value checked in
                env variable "IOU_THRESHOLD" with default "0.5"
            max_candidates (Optional[int]): Parameter of model post-processing. If not given - value checked in
                env variable "MAX_CANDIDATES" with default "3000"
            max_detections (Optional[int]): Parameter of model post-processing. If not given - value checked in
                env variable "MAX_DETECTIONS" with default "300"
            mask_decode_mode: (Optional[str]): Parameter of model post-processing. If not given - model "accurate" is
                used. Applicable for instance segmentation models
            tradeoff_factor (Optional[float]): Parameter of model post-processing. If not 0.0 - model default is used.
                Applicable for instance segmentation models
            active_learning_enabled (Optional[bool]): Flag to enable / disable Active Learning middleware (setting it
                true does not guarantee any data to be collected, as data collection is controlled by Roboflow backend -
                it just enables middleware intercepting predictions). If not given, env variable
                `ACTIVE_LEARNING_ENABLED` will be used. Please point out that Active Learning will be forcefully
                disabled in a scenario when Roboflow API key is not given, as Roboflow account is required
                for this feature to be operational.
            video_source_properties (Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]):
                Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties
                cv2.CAP_PROP_*. If not given, defaults for the video source will be used.
                It is optional and if provided can be provided as single dict (applicable for all sources) or
                as list of configs. Then the list must be of length of `video_reference` and may also contain None
                values to denote that specific source should remain not configured.
                Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}
            active_learning_target_dataset (Optional[str]): Parameter to be used when Active Learning data registration
                should happen against different dataset than the one pointed by model_id
            batch_collection_timeout (Optional[float]): Parameter of multiplex_videos(...) dictating how long process
                to grab frames from multiple sources can wait for batch to be filled before yielding already collected
                frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows
                unstable latency. Visit `multiplex_videos(...)` for more information about multiplexing process.
            sink_mode (SinkMode): Parameter that controls how video frames and predictions will be passed to sink
                handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink,
                in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned
                in the order of video sources - with None values in the place of vide_frames / predictions that
                were skipped due to `batch_collection_timeout`.
                `SinkMode.ADAPTIVE` is a middle ground (and default mode) - all old sources will work in that mode
                against a single video input, as the pipeline will behave as if running in `SinkMode.SEQUENTIAL`.
                To handle multiple videos - sink needs to accept `predictions: List[Optional[dict]]` and
                `video_frame: List[Optional[VideoFrame]]`. It is also possible to process multiple videos using
                old sinks - but then `SinkMode.SEQUENTIAL` is to be used, causing sink to be called on each
                prediction element.

        Other ENV variables involved in low-level configuration:
        * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
        * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop
        * ACTIVE_LEARNING_ENABLED - controls Active Learning middleware if explicit parameter not given

        Returns: Instance of InferencePipeline

        Throws:
            * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
                always if connection to stream is lost.
        """
        if api_key is None:
            api_key = API_KEY
        inference_config = ModelConfig.init(
            class_agnostic_nms=class_agnostic_nms,
            confidence=confidence,
            iou_threshold=iou_threshold,
            max_candidates=max_candidates,
            max_detections=max_detections,
            mask_decode_mode=mask_decode_mode,
            tradeoff_factor=tradeoff_factor,
        )
        model = get_model(model_id=model_id, api_key=api_key)
        on_video_frame = partial(
            default_process_frame, model=model, inference_config=inference_config
        )
        active_learning_middleware = NullActiveLearningMiddleware()
        if active_learning_enabled is None:
            logger.info(
                f"`active_learning_enabled` parameter not set - using env `ACTIVE_LEARNING_ENABLED` "
                f"with value: {ACTIVE_LEARNING_ENABLED}"
            )
            active_learning_enabled = ACTIVE_LEARNING_ENABLED
        if api_key is None:
            logger.info(
                f"Roboflow API key not given - Active Learning is forced to be disabled."
            )
            active_learning_enabled = False
        if active_learning_enabled is True:
            resolved_model_id = resolve_roboflow_model_alias(model_id=model_id)
            target_dataset = (
                active_learning_target_dataset or resolved_model_id.split("/")[0]
            )
            active_learning_middleware = ThreadingActiveLearningMiddleware.init(
                api_key=api_key,
                target_dataset=target_dataset,
                model_id=resolved_model_id,
                cache=cache,
            )
            al_sink = partial(
                active_learning_sink,
                active_learning_middleware=active_learning_middleware,
                model_type=model.task_type,
                disable_preproc_auto_orient=DISABLE_PREPROC_AUTO_ORIENT,
            )
            logger.info(
                "AL enabled - wrapping `on_prediction` with multi_sink() and active_learning_sink()"
            )
            on_prediction = partial(multi_sink, sinks=[on_prediction, al_sink])
        on_pipeline_start = active_learning_middleware.start_registration_thread
        on_pipeline_end = active_learning_middleware.stop_registration_thread
        return InferencePipeline.init_with_custom_logic(
            video_reference=video_reference,
            on_video_frame=on_video_frame,
            on_prediction=on_prediction,
            on_pipeline_start=on_pipeline_start,
            on_pipeline_end=on_pipeline_end,
            max_fps=max_fps,
            watchdog=watchdog,
            status_update_handlers=status_update_handlers,
            source_buffer_filling_strategy=source_buffer_filling_strategy,
            source_buffer_consumption_strategy=source_buffer_consumption_strategy,
            video_source_properties=video_source_properties,
            batch_collection_timeout=batch_collection_timeout,
            sink_mode=sink_mode,
        )

    @classmethod
    def init_with_yolo_world(
        cls,
        video_reference: Union[str, int, List[Union[str, int]]],
        classes: List[str],
        model_size: str = "s",
        on_prediction: SinkHandler = None,
        max_fps: Optional[Union[float, int]] = None,
        watchdog: Optional[PipelineWatchDog] = None,
        status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
        source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
        source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
        class_agnostic_nms: Optional[bool] = None,
        confidence: Optional[float] = None,
        iou_threshold: Optional[float] = None,
        max_candidates: Optional[int] = None,
        max_detections: Optional[int] = None,
        video_source_properties: Optional[Dict[str, float]] = None,
        batch_collection_timeout: Optional[float] = None,
        sink_mode: SinkMode = SinkMode.ADAPTIVE,
    ) -> "InferencePipeline":
        """
        This class creates the abstraction for making inferences from YoloWorld against video stream.
        The way of how `InferencePipeline` works is displayed in `InferencePipeline.init(...)` initializer
        method.

        Args:
            video_reference (Union[str, int, List[Union[str, int]]]): Reference of source or sources to be used to make
                predictions against. It can be video file path, stream URL and device (like camera) id
                (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then
                it will trigger parallel processing of multiple sources. It has some implication on sinks. See:
                `sink_mode` parameter comments.
            classes (List[str]): List of classes to execute zero-shot detection against
            model_size (str): version of model - to be chosen from `s`, `m`, `l`
            on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
                once prediction is ready - passing both decoded frame, their metadata and dict with standard
                Roboflow Object Detection prediction.
            max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
                dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
                on single machine making tradeoff between number of frames and number of streams handled. Disabled
                by default.
            watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
                inference pipeline - if not given null implementation (doing nothing) will be used.
            status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
                status updates of all elements of the pipeline. Should be used only if detailed inspection of
                pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
                fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
                without re-raising. Default: None.
            source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
                video stream decoding behaviour. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
                video stream frames consumption. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            class_agnostic_nms (Optional[bool]): Parameter of model post-processing. If not given - value checked in
                env variable "CLASS_AGNOSTIC_NMS" with default "False"
            confidence (Optional[float]): Parameter of model post-processing. If not given - value checked in
                env variable "CONFIDENCE" with default "0.5"
            iou_threshold (Optional[float]): Parameter of model post-processing. If not given - value checked in
                env variable "IOU_THRESHOLD" with default "0.5"
            max_candidates (Optional[int]): Parameter of model post-processing. If not given - value checked in
                env variable "MAX_CANDIDATES" with default "3000"
            max_detections (Optional[int]): Parameter of model post-processing. If not given - value checked in
                env variable "MAX_DETECTIONS" with default "300"
            video_source_properties (Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]):
                Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties
                cv2.CAP_PROP_*. If not given, defaults for the video source will be used.
                It is optional and if provided can be provided as single dict (applicable for all sources) or
                as list of configs. Then the list must be of length of `video_reference` and may also contain None
                values to denote that specific source should remain not configured.
                Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}
            batch_collection_timeout (Optional[float]): Parameter of multiplex_videos(...) dictating how long process
                to grab frames from multiple sources can wait for batch to be filled before yielding already collected
                frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows
                unstable latency. Visit `multiplex_videos(...)` for more information about multiplexing process.
            sink_mode (SinkMode): Parameter that controls how video frames and predictions will be passed to sink
                handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink,
                in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned
                in the order of video sources - with None values in the place of vide_frames / predictions that
                were skipped due to `batch_collection_timeout`.
                `SinkMode.ADAPTIVE` is a middle ground (and default mode) - all old sources will work in that mode
                against a single video input, as the pipeline will behave as if running in `SinkMode.SEQUENTIAL`.
                To handle multiple videos - sink needs to accept `predictions: List[Optional[dict]]` and
                `video_frame: List[Optional[VideoFrame]]`. It is also possible to process multiple videos using
                old sinks - but then `SinkMode.SEQUENTIAL` is to be used, causing sink to be called on each
                prediction element.


        Other ENV variables involved in low-level configuration:
        * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
        * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

        Returns: Instance of InferencePipeline

        Throws:
            * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
                always if connection to stream is lost.
        """
        inference_config = ModelConfig.init(
            class_agnostic_nms=class_agnostic_nms,
            confidence=confidence,
            iou_threshold=iou_threshold,
            max_candidates=max_candidates,
            max_detections=max_detections,
        )
        try:
            from inference.core.interfaces.stream.model_handlers.yolo_world import (
                build_yolo_world_inference_function,
            )

            on_video_frame = build_yolo_world_inference_function(
                model_id=f"yolo_world/{model_size}",
                classes=classes,
                inference_config=inference_config,
            )
        except ImportError as error:
            raise CannotInitialiseModelError(
                f"Could not initialise yolo_world/{model_size} due to lack of sufficient dependencies. "
                f"Use pip install inference[yolo-world] to install missing dependencies and try again."
            ) from error
        return InferencePipeline.init_with_custom_logic(
            video_reference=video_reference,
            on_video_frame=on_video_frame,
            on_prediction=on_prediction,
            on_pipeline_start=None,
            on_pipeline_end=None,
            max_fps=max_fps,
            watchdog=watchdog,
            status_update_handlers=status_update_handlers,
            source_buffer_filling_strategy=source_buffer_filling_strategy,
            source_buffer_consumption_strategy=source_buffer_consumption_strategy,
            video_source_properties=video_source_properties,
            batch_collection_timeout=batch_collection_timeout,
            sink_mode=sink_mode,
        )

    @classmethod
    def init_with_workflow(
        cls,
        video_reference: Union[str, int],
        workflow_specification: Optional[dict] = None,
        workspace_name: Optional[str] = None,
        workflow_id: Optional[str] = None,
        api_key: Optional[str] = None,
        image_input_name: str = "image",
        workflows_parameters: Optional[Dict[str, Any]] = None,
        on_prediction: SinkHandler = None,
        max_fps: Optional[Union[float, int]] = None,
        watchdog: Optional[PipelineWatchDog] = None,
        status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
        source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
        source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
        video_source_properties: Optional[Dict[str, float]] = None,
        workflow_init_parameters: Optional[Dict[str, Any]] = None,
    ) -> "InferencePipeline":
        """
        This class creates the abstraction for making inferences from given workflow against video stream.
        The way of how `InferencePipeline` works is displayed in `InferencePipeline.init(...)` initializer
        method.

        Args:
            video_reference (Union[str, int]): Reference of source to be used to make predictions against.
                It can be video file path, stream URL and device (like camera) id (we handle whatever cv2 handles).
            workflow_specification (Optional[dict]): Valid specification of workflow. See [workflow docs](https://github.com/roboflow/inference/tree/main/inference/enterprise/workflows).
                It can be provided optionally, but if not given, both `workspace_name` and `workflow_id`
                must be provided.
            workspace_name (Optional[str]): When using registered workflows - Roboflow workspace name needs to be given.
            workflow_id (Optional[str]): When using registered workflows - Roboflow workflow id needs to be given.
            api_key (Optional[str]): Roboflow API key - if not passed - will be looked in env under "ROBOFLOW_API_KEY"
                and "API_KEY" variables. API key, passed in some form is required.
            image_input_name (str): Name of input image defined in `workflow_specification`. `InferencePipeline` will be
                injecting video frames to workflow through that parameter name.
            workflows_parameters (Optional[Dict[str, Any]]): Dictionary with additional parameters that can be
                defined within `workflow_specification`.
            on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
                once prediction is ready - passing both decoded frame, their metadata and dict with workflow output.
            max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
                dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
                on single machine making tradeoff between number of frames and number of streams handled. Disabled
                by default.
            watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
                inference pipeline - if not given null implementation (doing nothing) will be used.
            status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
                status updates of all elements of the pipeline. Should be used only if detailed inspection of
                pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
                fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
                without re-raising. Default: None.
            source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
                video stream decoding behaviour. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
                video stream frames consumption. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            video_source_properties (Optional[dict[str, float]]): Optional source properties to set up the video source,
                corresponding to cv2 VideoCapture properties cv2.CAP_PROP_*. If not given, defaults for the video source
                will be used.
                Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}


        Other ENV variables involved in low-level configuration:
        * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
        * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

        Returns: Instance of InferencePipeline

        Throws:
            * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
                always if connection to stream is lost.
            * ValueError if workflow specification not provided and registered workflow not pointed out
            * NotImplementedError if workflow used against multiple videos which is not supported yet
            * MissingApiKeyError - if API key is not provided in situation when retrieving workflow definition
                from Roboflow API is needed
        """
        if api_key is None:
            api_key = API_KEY
        named_workflow_specified = (workspace_name is not None) and (
            workflow_id is not None
        )
        if not (named_workflow_specified != (workflow_specification is not None)):
            raise ValueError(
                "Parameters (`workspace_name`, `workflow_id`) can be used mutually exclusive with "
                "`workflow_specification`, but at least one must be set."
            )
        if issubclass(type(video_reference), list) and len(list) > 1:
            raise NotImplementedError(
                "Usage of workflows and `InferencePipeline` is experimental feature for now. We do not support "
                "multiple video sources yet."
            )
        try:
            from inference.core.interfaces.stream.model_handlers.workflows import (
                WorkflowRunner,
            )
            from inference.core.roboflow_api import get_workflow_specification
            from inference.core.workflows.core_steps.sinks.active_learning.middleware import (
                WorkflowsActiveLearningMiddleware,
            )
            from inference.core.workflows.execution_engine import ExecutionEngine

            if workflow_specification is None:
                if api_key is None:
                    raise MissingApiKeyError(
                        "Roboflow API key needs to be provided either as parameter or via env variable "
                        "ROBOFLOW_API_KEY. If you do not know how to get API key - visit "
                        "https://docs.roboflow.com/api-reference/authentication#retrieve-an-api-key to learn how to "
                        "retrieve one."
                    )
                workflow_specification = get_workflow_specification(
                    api_key=api_key,
                    workspace_id=workspace_name,
                    workflow_id=workflow_id,
                )
            workflows_active_learning_middleware = WorkflowsActiveLearningMiddleware(
                cache=cache,
            )
            model_registry = RoboflowModelRegistry(ROBOFLOW_MODEL_TYPES)
            model_manager = BackgroundTaskActiveLearningManager(
                model_registry=model_registry, cache=cache
            )
            model_manager = WithFixedSizeCache(
                model_manager,
                max_size=MAX_ACTIVE_MODELS,
            )
            if api_key is None:
                api_key = API_KEY
            background_tasks = BackgroundTasks()
            if workflow_init_parameters is None:
                workflow_init_parameters = {}
            workflow_init_parameters["workflows_core.model_manager"] = model_manager
            workflow_init_parameters["workflows_core.api_key"] = api_key
            workflow_init_parameters["workflows_core.active_learning_middleware"] = (
                workflows_active_learning_middleware
            )
            workflow_init_parameters["workflows_core.background_tasks"] = (
                background_tasks
            )
            execution_engine = ExecutionEngine.init(
                workflow_definition=workflow_specification,
                init_parameters=workflow_init_parameters,
            )
            workflow_runner = WorkflowRunner()
            on_video_frame = partial(
                workflow_runner.run_workflow,
                workflows_parameters=workflows_parameters,
                execution_engine=execution_engine,
                image_input_name=image_input_name,
            )
        except ImportError as error:
            raise CannotInitialiseModelError(
                f"Could not initialise workflow processing due to lack of dependencies required. "
                f"Please provide an issue report under https://github.com/roboflow/inference/issues"
            ) from error
        return InferencePipeline.init_with_custom_logic(
            video_reference=video_reference,
            on_video_frame=on_video_frame,
            on_prediction=on_prediction,
            on_pipeline_start=None,
            on_pipeline_end=None,
            max_fps=max_fps,
            watchdog=watchdog,
            status_update_handlers=status_update_handlers,
            source_buffer_filling_strategy=source_buffer_filling_strategy,
            source_buffer_consumption_strategy=source_buffer_consumption_strategy,
            video_source_properties=video_source_properties,
        )

    @classmethod
    def init_with_custom_logic(
        cls,
        video_reference: Union[VideoSourceIdentifier, List[VideoSourceIdentifier]],
        on_video_frame: InferenceHandler,
        on_prediction: SinkHandler = None,
        on_pipeline_start: Optional[Callable[[], None]] = None,
        on_pipeline_end: Optional[Callable[[], None]] = None,
        max_fps: Optional[Union[float, int]] = None,
        watchdog: Optional[PipelineWatchDog] = None,
        status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
        source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
        source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
        video_source_properties: Optional[Dict[str, float]] = None,
        batch_collection_timeout: Optional[float] = None,
        sink_mode: SinkMode = SinkMode.ADAPTIVE,
    ) -> "InferencePipeline":
        """
        This class creates the abstraction for making inferences from given workflow against video stream.
        The way of how `InferencePipeline` works is displayed in `InferencePipeline.init(...)` initialiser
        method.

        Args:
            video_reference (Union[str, int, List[Union[str, int]]]): Reference of source or sources to be used to make
                predictions against. It can be video file path, stream URL and device (like camera) id
                (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then
                it will trigger parallel processing of multiple sources. It has some implication on sinks. See:
                `sink_mode` parameter comments.
            on_video_frame (Callable[[VideoFrame], AnyPrediction]): function supposed to make prediction (or do another
                kind of custom processing according to your will). Accept `VideoFrame` object and is supposed
                to return dictionary with results of any kind.
            on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
                once prediction is ready - passing both decoded frame, their metadata and dict with output from your
                custom callable `on_video_frame(...)`. Logic here must be adjusted to the output of `on_video_frame`.
            on_pipeline_start (Optional[Callable[[], None]]): Optional (parameter-free) function to be called
                whenever pipeline starts
            on_pipeline_end (Optional[Callable[[], None]]): Optional (parameter-free) function to be called
                whenever pipeline ends
            max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
                dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
                on single machine making tradeoff between number of frames and number of streams handled. Disabled
                by default.
            watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
                inference pipeline - if not given null implementation (doing nothing) will be used.
            status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
                status updates of all elements of the pipeline. Should be used only if detailed inspection of
                pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
                fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
                without re-raising. Default: None.
            source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
                video stream decoding behaviour. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
                video stream frames consumption. By default - tweaked to the type of source given.
                Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
            video_source_properties (Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]):
                Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties
                cv2.CAP_PROP_*. If not given, defaults for the video source will be used.
                It is optional and if provided can be provided as single dict (applicable for all sources) or
                as list of configs. Then the list must be of length of `video_reference` and may also contain None
                values to denote that specific source should remain not configured.
                Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}
            batch_collection_timeout (Optional[float]): Parameter of multiplex_videos(...) dictating how long process
                to grab frames from multiple sources can wait for batch to be filled before yielding already collected
                frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows
                unstable latency. Visit `multiplex_videos(...)` for more information about multiplexing process.
            sink_mode (SinkMode): Parameter that controls how video frames and predictions will be passed to sink
                handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink,
                in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned
                in the order of video sources - with None values in the place of vide_frames / predictions that
                were skipped due to `batch_collection_timeout`.
                `SinkMode.ADAPTIVE` is a middle ground (and default mode) - all old sources will work in that mode
                against a single video input, as the pipeline will behave as if running in `SinkMode.SEQUENTIAL`.
                To handle multiple videos - sink needs to accept `predictions: List[Optional[dict]]` and
                `video_frame: List[Optional[VideoFrame]]`. It is also possible to process multiple videos using
                old sinks - but then `SinkMode.SEQUENTIAL` is to be used, causing sink to be called on each
                prediction element.


        Other ENV variables involved in low-level configuration:
        * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
        * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

        Returns: Instance of InferencePipeline

        Throws:
            * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
                always if connection to stream is lost.
        """
        if watchdog is None:
            watchdog = NullPipelineWatchdog()
        if status_update_handlers is None:
            status_update_handlers = []
        status_update_handlers.append(watchdog.on_status_update)
        video_sources = prepare_video_sources(
            video_reference=video_reference,
            video_source_properties=video_source_properties,
            status_update_handlers=status_update_handlers,
            source_buffer_filling_strategy=source_buffer_filling_strategy,
            source_buffer_consumption_strategy=source_buffer_consumption_strategy,
        )
        watchdog.register_video_sources(video_sources=video_sources)
        predictions_queue = Queue(maxsize=PREDICTIONS_QUEUE_SIZE)
        return cls(
            on_video_frame=on_video_frame,
            video_sources=video_sources,
            predictions_queue=predictions_queue,
            watchdog=watchdog,
            status_update_handlers=status_update_handlers,
            on_prediction=on_prediction,
            max_fps=max_fps,
            on_pipeline_start=on_pipeline_start,
            on_pipeline_end=on_pipeline_end,
            batch_collection_timeout=batch_collection_timeout,
            sink_mode=sink_mode,
        )

    def __init__(
        self,
        on_video_frame: InferenceHandler,
        video_sources: List[VideoSource],
        predictions_queue: Queue,
        watchdog: PipelineWatchDog,
        status_update_handlers: List[Callable[[StatusUpdate], None]],
        on_prediction: SinkHandler = None,
        on_pipeline_start: Optional[Callable[[], None]] = None,
        on_pipeline_end: Optional[Callable[[], None]] = None,
        max_fps: Optional[float] = None,
        batch_collection_timeout: Optional[float] = None,
        sink_mode: SinkMode = SinkMode.ADAPTIVE,
    ):
        self._on_video_frame = on_video_frame
        self._video_sources = video_sources
        self._on_prediction = on_prediction
        self._max_fps = max_fps
        self._predictions_queue = predictions_queue
        self._watchdog = watchdog
        self._command_handler_thread: Optional[Thread] = None
        self._inference_thread: Optional[Thread] = None
        self._dispatching_thread: Optional[Thread] = None
        self._stop = False
        self._camera_restart_ongoing = False
        self._status_update_handlers = status_update_handlers
        self._on_pipeline_start = on_pipeline_start
        self._on_pipeline_end = on_pipeline_end
        self._batch_collection_timeout = batch_collection_timeout
        self._sink_mode = sink_mode

    def start(self, use_main_thread: bool = True) -> None:
        self._stop = False
        self._inference_thread = Thread(target=self._execute_inference)
        self._inference_thread.start()
        if self._on_pipeline_start is not None:
            self._on_pipeline_start()
        if use_main_thread:
            self._dispatch_inference_results()
        else:
            self._dispatching_thread = Thread(target=self._dispatch_inference_results)
            self._dispatching_thread.start()

    def terminate(self) -> None:
        self._stop = True
        for video_source in self._video_sources:
            video_source.terminate(
                wait_on_frames_consumption=False, purge_frames_buffer=True
            )

    def pause_stream(self, source_id: Optional[int] = None) -> None:
        for video_source in self._video_sources:
            if video_source.source_id == source_id or source_id is None:
                video_source.pause()

    def mute_stream(self, source_id: Optional[int] = None) -> None:
        for video_source in self._video_sources:
            if video_source.source_id == source_id or source_id is None:
                video_source.mute()

    def resume_stream(self, source_id: Optional[int] = None) -> None:
        for video_source in self._video_sources:
            if video_source.source_id == source_id or source_id is None:
                video_source.resume()

    def join(self) -> None:
        if self._inference_thread is not None:
            self._inference_thread.join()
            self._inference_thread = None
        if self._dispatching_thread is not None:
            self._dispatching_thread.join()
            self._dispatching_thread = None
        if self._on_pipeline_end is not None:
            self._on_pipeline_end()

    def _execute_inference(self) -> None:
        send_inference_pipeline_status_update(
            severity=UpdateSeverity.INFO,
            event_type=INFERENCE_THREAD_STARTED_EVENT,
            status_update_handlers=self._status_update_handlers,
        )
        logger.info(f"Inference thread started")
        try:
            for video_frames in self._generate_frames():
                self._watchdog.on_model_inference_started(
                    frames=video_frames,
                )
                predictions = self._on_video_frame(video_frames)
                self._watchdog.on_model_prediction_ready(
                    frames=video_frames,
                )
                self._predictions_queue.put((predictions, video_frames))
                send_inference_pipeline_status_update(
                    severity=UpdateSeverity.DEBUG,
                    event_type=INFERENCE_COMPLETED_EVENT,
                    payload={
                        "frames_ids": [f.frame_id for f in video_frames],
                        "frames_timestamps": [f.frame_timestamp for f in video_frames],
                        "sources_id": [f.source_id for f in video_frames],
                    },
                    status_update_handlers=self._status_update_handlers,
                )

        except Exception as error:
            payload = {
                "error_type": error.__class__.__name__,
                "error_message": str(error),
                "error_context": "inference_thread",
            }
            send_inference_pipeline_status_update(
                severity=UpdateSeverity.ERROR,
                event_type=INFERENCE_ERROR_EVENT,
                payload=payload,
                status_update_handlers=self._status_update_handlers,
            )
            logger.exception(f"Encountered inference error: {error}")
        finally:
            self._predictions_queue.put(None)
            send_inference_pipeline_status_update(
                severity=UpdateSeverity.INFO,
                event_type=INFERENCE_THREAD_FINISHED_EVENT,
                status_update_handlers=self._status_update_handlers,
            )
            logger.info(f"Inference thread finished")

    def _dispatch_inference_results(self) -> None:
        while True:
            inference_results: Optional[
                Tuple[List[AnyPrediction], List[VideoFrame]]
            ] = self._predictions_queue.get()
            if inference_results is None:
                self._predictions_queue.task_done()
                break
            predictions, video_frames = inference_results
            if self._on_prediction is not None:
                self._handle_predictions_dispatching(
                    predictions=predictions,
                    video_frames=video_frames,
                )
            self._predictions_queue.task_done()

    def _handle_predictions_dispatching(
        self,
        predictions: List[AnyPrediction],
        video_frames: List[VideoFrame],
    ) -> None:
        if self._should_use_batch_sink():
            self._use_batch_sink(predictions, video_frames)
            return None
        for frame_predictions, video_frame in zip(predictions, video_frames):
            self._use_sink(frame_predictions, video_frame)

    def _should_use_batch_sink(self) -> bool:
        return self._sink_mode is SinkMode.BATCH or (
            self._sink_mode is SinkMode.ADAPTIVE and len(self._video_sources) > 1
        )

    def _use_batch_sink(
        self,
        predictions: List[AnyPrediction],
        video_frames: List[VideoFrame],
    ) -> None:
        # This function makes it possible to always call sinks with payloads aligned to order of
        # video sources - marking empty frames as None
        results_by_source_id = {
            video_frame.source_id: (frame_predictions, video_frame)
            for frame_predictions, video_frame in zip(predictions, video_frames)
        }
        source_id_aligned_sink_payload = [
            results_by_source_id.get(video_source.source_id, (None, None))
            for video_source in self._video_sources
        ]
        source_id_aligned_predictions = [e[0] for e in source_id_aligned_sink_payload]
        source_id_aligned_frames = [e[1] for e in source_id_aligned_sink_payload]
        self._use_sink(
            predictions=source_id_aligned_predictions,
            video_frames=source_id_aligned_frames,
        )

    def _use_sink(
        self,
        predictions: Union[AnyPrediction, List[Optional[AnyPrediction]]],
        video_frames: Union[VideoFrame, List[Optional[VideoFrame]]],
    ) -> None:
        try:
            self._on_prediction(predictions, video_frames)
        except Exception as error:
            payload = {
                "error_type": error.__class__.__name__,
                "error_message": str(error),
                "error_context": "inference_results_dispatching",
            }
            send_inference_pipeline_status_update(
                severity=UpdateSeverity.ERROR,
                event_type=INFERENCE_RESULTS_DISPATCHING_ERROR_EVENT,
                payload=payload,
                status_update_handlers=self._status_update_handlers,
            )
            logger.warning(f"Error in results dispatching - {error}")

    def _generate_frames(
        self,
    ) -> Generator[List[VideoFrame], None, None]:
        for video_source in self._video_sources:
            video_source.start()
        yield from multiplex_videos(
            videos=self._video_sources,
            max_fps=self._max_fps,
            batch_collection_timeout=self._batch_collection_timeout,
            should_stop=lambda: self._stop,
        )

init(video_reference, model_id, on_prediction=None, api_key=None, max_fps=None, watchdog=None, status_update_handlers=None, source_buffer_filling_strategy=None, source_buffer_consumption_strategy=None, class_agnostic_nms=None, confidence=None, iou_threshold=None, max_candidates=None, max_detections=None, mask_decode_mode='accurate', tradeoff_factor=0.0, active_learning_enabled=None, video_source_properties=None, active_learning_target_dataset=None, batch_collection_timeout=None, sink_mode=SinkMode.ADAPTIVE) classmethod

This class creates the abstraction for making inferences from Roboflow models against video stream. It allows to choose model from Roboflow platform and run predictions against video streams - just by the price of specifying which model to use and what to do with predictions.

It allows to set the model post-processing parameters (via .init() or env) and intercept updates related to state of pipeline via PipelineWatchDog abstraction (although that is something probably useful only for advanced use-cases).

For maximum efficiency, all separate chunks of processing: video decoding, inference, results dispatching are handled by separate threads.

Given that reference to stream is passed and connectivity is lost - it attempts to re-connect with delay.

Since version 0.9.11 it works not only for object detection models but is also compatible with stubs, classification, instance-segmentation and keypoint-detection models.

Since version 0.9.18, InferencePipeline is capable of handling multiple video sources at once. If multiple sources are provided - source multiplexing will happen. One of the change introduced in that release is switch from get_video_frames_generator(...) as video frames provider into multiplex_videos(...). For a single video source, the behaviour of InferencePipeline is remained unchanged when default parameters are used. For multiple videos - frames are multiplexed, and we can adjust the pipeline behaviour using new configuration options. batch_collection_timeout is one of the new option - it is the parameter of multiplex_videos(...) that dictates how long the batch frames collection process may wait for all sources to provide video frame. It can be set infinite (None) or with specific value representing fraction of second. We advise that value to be set in production solutions to avoid processing slow-down caused by source with unstable latency spikes. For more information on multiplexing process - please visit multiplex_videos(...) function docs. Another change is the way on how sinks work. They can work in SinkMode.ADAPTIVE - which means that video frames and predictions will be either provided to sink as list of objects, or specific elements - and the determining factor is number of sources (it will behave SEQUENTIAL for one source and BATCH if multiple ones are provided). All old sinks were adjusted to work in both modes, custom ones should be migrated to reflect changes in sink function signature.

Parameters:

Name Type Description Default
model_id str

Name and version of model at Roboflow platform (example: "my-model/3")

required
video_reference Union[str, int, List[Union[str, int]]]

Reference of source or sources to be used to make predictions against. It can be video file path, stream URL and device (like camera) id (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then it will trigger parallel processing of multiple sources. It has some implication on sinks. See: sink_mode parameter comments.

required
on_prediction Callable[AnyPrediction, VideoFrame], None]

Function to be called once prediction is ready - passing both decoded frame, their metadata and dict with standard Roboflow model prediction (different for specific types of models).

None
api_key Optional[str]

Roboflow API key - if not passed - will be looked in env under "ROBOFLOW_API_KEY" and "API_KEY" variables. API key, passed in some form is required.

None
max_fps Optional[Union[float, int]]

Specific value passed as this parameter will be used to dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines on single machine making tradeoff between number of frames and number of streams handled. Disabled by default.

None
watchdog Optional[PipelineWatchDog]

Implementation of class that allows profiling of inference pipeline - if not given null implementation (doing nothing) will be used.

None
status_update_handlers Optional[List[Callable[[StatusUpdate], None]]]

List of handlers to intercept status updates of all elements of the pipeline. Should be used only if detailed inspection of pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed fast - otherwise they will impair pipeline performance. All errors will be logged as warnings without re-raising. Default: None.

None
source_buffer_filling_strategy Optional[BufferFillingStrategy]

Parameter dictating strategy for video stream decoding behaviour. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
source_buffer_consumption_strategy Optional[BufferConsumptionStrategy]

Parameter dictating strategy for video stream frames consumption. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
class_agnostic_nms Optional[bool]

Parameter of model post-processing. If not given - value checked in env variable "CLASS_AGNOSTIC_NMS" with default "False"

None
confidence Optional[float]

Parameter of model post-processing. If not given - value checked in env variable "CONFIDENCE" with default "0.5"

None
iou_threshold Optional[float]

Parameter of model post-processing. If not given - value checked in env variable "IOU_THRESHOLD" with default "0.5"

None
max_candidates Optional[int]

Parameter of model post-processing. If not given - value checked in env variable "MAX_CANDIDATES" with default "3000"

None
max_detections Optional[int]

Parameter of model post-processing. If not given - value checked in env variable "MAX_DETECTIONS" with default "300"

None
mask_decode_mode Optional[str]

(Optional[str]): Parameter of model post-processing. If not given - model "accurate" is used. Applicable for instance segmentation models

'accurate'
tradeoff_factor Optional[float]

Parameter of model post-processing. If not 0.0 - model default is used. Applicable for instance segmentation models

0.0
active_learning_enabled Optional[bool]

Flag to enable / disable Active Learning middleware (setting it true does not guarantee any data to be collected, as data collection is controlled by Roboflow backend - it just enables middleware intercepting predictions). If not given, env variable ACTIVE_LEARNING_ENABLED will be used. Please point out that Active Learning will be forcefully disabled in a scenario when Roboflow API key is not given, as Roboflow account is required for this feature to be operational.

None
video_source_properties Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]

Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties cv2.CAP_PROP_*. If not given, defaults for the video source will be used. It is optional and if provided can be provided as single dict (applicable for all sources) or as list of configs. Then the list must be of length of video_reference and may also contain None values to denote that specific source should remain not configured. Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}

None
active_learning_target_dataset Optional[str]

Parameter to be used when Active Learning data registration should happen against different dataset than the one pointed by model_id

None
batch_collection_timeout Optional[float]

Parameter of multiplex_videos(...) dictating how long process to grab frames from multiple sources can wait for batch to be filled before yielding already collected frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows unstable latency. Visit multiplex_videos(...) for more information about multiplexing process.

None
sink_mode SinkMode

Parameter that controls how video frames and predictions will be passed to sink handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink, in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned in the order of video sources - with None values in the place of vide_frames / predictions that were skipped due to batch_collection_timeout. SinkMode.ADAPTIVE is a middle ground (and default mode) - all old sources will work in that mode against a single video input, as the pipeline will behave as if running in SinkMode.SEQUENTIAL. To handle multiple videos - sink needs to accept predictions: List[Optional[dict]] and video_frame: List[Optional[VideoFrame]]. It is also possible to process multiple videos using old sinks - but then SinkMode.SEQUENTIAL is to be used, causing sink to be called on each prediction element.

ADAPTIVE

Other ENV variables involved in low-level configuration: * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop * ACTIVE_LEARNING_ENABLED - controls Active Learning middleware if explicit parameter not given

Returns: Instance of InferencePipeline

Throws
  • SourceConnectionError if source cannot be connected at start, however it attempts to reconnect always if connection to stream is lost.
Source code in inference/core/interfaces/stream/inference_pipeline.py
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
@classmethod
def init(
    cls,
    video_reference: Union[VideoSourceIdentifier, List[VideoSourceIdentifier]],
    model_id: str,
    on_prediction: SinkHandler = None,
    api_key: Optional[str] = None,
    max_fps: Optional[Union[float, int]] = None,
    watchdog: Optional[PipelineWatchDog] = None,
    status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
    source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
    source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
    class_agnostic_nms: Optional[bool] = None,
    confidence: Optional[float] = None,
    iou_threshold: Optional[float] = None,
    max_candidates: Optional[int] = None,
    max_detections: Optional[int] = None,
    mask_decode_mode: Optional[str] = "accurate",
    tradeoff_factor: Optional[float] = 0.0,
    active_learning_enabled: Optional[bool] = None,
    video_source_properties: Optional[
        Union[Dict[str, float], List[Optional[Dict[str, float]]]]
    ] = None,
    active_learning_target_dataset: Optional[str] = None,
    batch_collection_timeout: Optional[float] = None,
    sink_mode: SinkMode = SinkMode.ADAPTIVE,
) -> "InferencePipeline":
    """
    This class creates the abstraction for making inferences from Roboflow models against video stream.
    It allows to choose model from Roboflow platform and run predictions against
    video streams - just by the price of specifying which model to use and what to do with predictions.

    It allows to set the model post-processing parameters (via .init() or env) and intercept updates
    related to state of pipeline via `PipelineWatchDog` abstraction (although that is something probably
    useful only for advanced use-cases).

    For maximum efficiency, all separate chunks of processing: video decoding, inference, results dispatching
    are handled by separate threads.

    Given that reference to stream is passed and connectivity is lost - it attempts to re-connect with delay.

    Since version 0.9.11 it works not only for object detection models but is also compatible with stubs,
    classification, instance-segmentation and keypoint-detection models.

    Since version 0.9.18, `InferencePipeline` is capable of handling multiple video sources at once. If multiple
    sources are provided - source multiplexing will happen. One of the change introduced in that release is switch
    from `get_video_frames_generator(...)` as video frames provider into `multiplex_videos(...)`. For a single
    video source, the behaviour of `InferencePipeline` is remained unchanged when default parameters are used.
    For multiple videos - frames are multiplexed, and we can adjust the pipeline behaviour using new configuration
    options. `batch_collection_timeout` is one of the new option - it is the parameter of `multiplex_videos(...)`
    that dictates how long the batch frames collection process may wait for all sources to provide video frame.
    It can be set infinite (None) or with specific value representing fraction of second. We advise that value to
    be set in production solutions to avoid processing slow-down caused by source with unstable latency spikes.
    For more information on multiplexing process - please visit `multiplex_videos(...)` function docs.
    Another change is the way on how sinks work. They can work in `SinkMode.ADAPTIVE` - which means that
    video frames and predictions will be either provided to sink as list of objects, or specific elements -
    and the determining factor is number of sources (it will behave SEQUENTIAL for one source and BATCH if multiple
    ones are provided). All old sinks were adjusted to work in both modes, custom ones should be migrated
    to reflect changes in sink function signature.

    Args:
        model_id (str): Name and version of model at Roboflow platform (example: "my-model/3")
        video_reference (Union[str, int, List[Union[str, int]]]): Reference of source or sources to be used to make
            predictions against. It can be video file path, stream URL and device (like camera) id
            (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then
            it will trigger parallel processing of multiple sources. It has some implication on sinks. See:
            `sink_mode` parameter comments.
        on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
            once prediction is ready - passing both decoded frame, their metadata and dict with standard
            Roboflow model prediction (different for specific types of models).
        api_key (Optional[str]): Roboflow API key - if not passed - will be looked in env under "ROBOFLOW_API_KEY"
            and "API_KEY" variables. API key, passed in some form is required.
        max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
            dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
            on single machine making tradeoff between number of frames and number of streams handled. Disabled
            by default.
        watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
            inference pipeline - if not given null implementation (doing nothing) will be used.
        status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
            status updates of all elements of the pipeline. Should be used only if detailed inspection of
            pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
            fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
            without re-raising. Default: None.
        source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
            video stream decoding behaviour. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
            video stream frames consumption. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        class_agnostic_nms (Optional[bool]): Parameter of model post-processing. If not given - value checked in
            env variable "CLASS_AGNOSTIC_NMS" with default "False"
        confidence (Optional[float]): Parameter of model post-processing. If not given - value checked in
            env variable "CONFIDENCE" with default "0.5"
        iou_threshold (Optional[float]): Parameter of model post-processing. If not given - value checked in
            env variable "IOU_THRESHOLD" with default "0.5"
        max_candidates (Optional[int]): Parameter of model post-processing. If not given - value checked in
            env variable "MAX_CANDIDATES" with default "3000"
        max_detections (Optional[int]): Parameter of model post-processing. If not given - value checked in
            env variable "MAX_DETECTIONS" with default "300"
        mask_decode_mode: (Optional[str]): Parameter of model post-processing. If not given - model "accurate" is
            used. Applicable for instance segmentation models
        tradeoff_factor (Optional[float]): Parameter of model post-processing. If not 0.0 - model default is used.
            Applicable for instance segmentation models
        active_learning_enabled (Optional[bool]): Flag to enable / disable Active Learning middleware (setting it
            true does not guarantee any data to be collected, as data collection is controlled by Roboflow backend -
            it just enables middleware intercepting predictions). If not given, env variable
            `ACTIVE_LEARNING_ENABLED` will be used. Please point out that Active Learning will be forcefully
            disabled in a scenario when Roboflow API key is not given, as Roboflow account is required
            for this feature to be operational.
        video_source_properties (Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]):
            Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties
            cv2.CAP_PROP_*. If not given, defaults for the video source will be used.
            It is optional and if provided can be provided as single dict (applicable for all sources) or
            as list of configs. Then the list must be of length of `video_reference` and may also contain None
            values to denote that specific source should remain not configured.
            Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}
        active_learning_target_dataset (Optional[str]): Parameter to be used when Active Learning data registration
            should happen against different dataset than the one pointed by model_id
        batch_collection_timeout (Optional[float]): Parameter of multiplex_videos(...) dictating how long process
            to grab frames from multiple sources can wait for batch to be filled before yielding already collected
            frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows
            unstable latency. Visit `multiplex_videos(...)` for more information about multiplexing process.
        sink_mode (SinkMode): Parameter that controls how video frames and predictions will be passed to sink
            handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink,
            in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned
            in the order of video sources - with None values in the place of vide_frames / predictions that
            were skipped due to `batch_collection_timeout`.
            `SinkMode.ADAPTIVE` is a middle ground (and default mode) - all old sources will work in that mode
            against a single video input, as the pipeline will behave as if running in `SinkMode.SEQUENTIAL`.
            To handle multiple videos - sink needs to accept `predictions: List[Optional[dict]]` and
            `video_frame: List[Optional[VideoFrame]]`. It is also possible to process multiple videos using
            old sinks - but then `SinkMode.SEQUENTIAL` is to be used, causing sink to be called on each
            prediction element.

    Other ENV variables involved in low-level configuration:
    * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
    * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop
    * ACTIVE_LEARNING_ENABLED - controls Active Learning middleware if explicit parameter not given

    Returns: Instance of InferencePipeline

    Throws:
        * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
            always if connection to stream is lost.
    """
    if api_key is None:
        api_key = API_KEY
    inference_config = ModelConfig.init(
        class_agnostic_nms=class_agnostic_nms,
        confidence=confidence,
        iou_threshold=iou_threshold,
        max_candidates=max_candidates,
        max_detections=max_detections,
        mask_decode_mode=mask_decode_mode,
        tradeoff_factor=tradeoff_factor,
    )
    model = get_model(model_id=model_id, api_key=api_key)
    on_video_frame = partial(
        default_process_frame, model=model, inference_config=inference_config
    )
    active_learning_middleware = NullActiveLearningMiddleware()
    if active_learning_enabled is None:
        logger.info(
            f"`active_learning_enabled` parameter not set - using env `ACTIVE_LEARNING_ENABLED` "
            f"with value: {ACTIVE_LEARNING_ENABLED}"
        )
        active_learning_enabled = ACTIVE_LEARNING_ENABLED
    if api_key is None:
        logger.info(
            f"Roboflow API key not given - Active Learning is forced to be disabled."
        )
        active_learning_enabled = False
    if active_learning_enabled is True:
        resolved_model_id = resolve_roboflow_model_alias(model_id=model_id)
        target_dataset = (
            active_learning_target_dataset or resolved_model_id.split("/")[0]
        )
        active_learning_middleware = ThreadingActiveLearningMiddleware.init(
            api_key=api_key,
            target_dataset=target_dataset,
            model_id=resolved_model_id,
            cache=cache,
        )
        al_sink = partial(
            active_learning_sink,
            active_learning_middleware=active_learning_middleware,
            model_type=model.task_type,
            disable_preproc_auto_orient=DISABLE_PREPROC_AUTO_ORIENT,
        )
        logger.info(
            "AL enabled - wrapping `on_prediction` with multi_sink() and active_learning_sink()"
        )
        on_prediction = partial(multi_sink, sinks=[on_prediction, al_sink])
    on_pipeline_start = active_learning_middleware.start_registration_thread
    on_pipeline_end = active_learning_middleware.stop_registration_thread
    return InferencePipeline.init_with_custom_logic(
        video_reference=video_reference,
        on_video_frame=on_video_frame,
        on_prediction=on_prediction,
        on_pipeline_start=on_pipeline_start,
        on_pipeline_end=on_pipeline_end,
        max_fps=max_fps,
        watchdog=watchdog,
        status_update_handlers=status_update_handlers,
        source_buffer_filling_strategy=source_buffer_filling_strategy,
        source_buffer_consumption_strategy=source_buffer_consumption_strategy,
        video_source_properties=video_source_properties,
        batch_collection_timeout=batch_collection_timeout,
        sink_mode=sink_mode,
    )

init_with_custom_logic(video_reference, on_video_frame, on_prediction=None, on_pipeline_start=None, on_pipeline_end=None, max_fps=None, watchdog=None, status_update_handlers=None, source_buffer_filling_strategy=None, source_buffer_consumption_strategy=None, video_source_properties=None, batch_collection_timeout=None, sink_mode=SinkMode.ADAPTIVE) classmethod

This class creates the abstraction for making inferences from given workflow against video stream. The way of how InferencePipeline works is displayed in InferencePipeline.init(...) initialiser method.

Parameters:

Name Type Description Default
video_reference Union[str, int, List[Union[str, int]]]

Reference of source or sources to be used to make predictions against. It can be video file path, stream URL and device (like camera) id (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then it will trigger parallel processing of multiple sources. It has some implication on sinks. See: sink_mode parameter comments.

required
on_video_frame Callable[[VideoFrame], AnyPrediction]

function supposed to make prediction (or do another kind of custom processing according to your will). Accept VideoFrame object and is supposed to return dictionary with results of any kind.

required
on_prediction Callable[AnyPrediction, VideoFrame], None]

Function to be called once prediction is ready - passing both decoded frame, their metadata and dict with output from your custom callable on_video_frame(...). Logic here must be adjusted to the output of on_video_frame.

None
on_pipeline_start Optional[Callable[[], None]]

Optional (parameter-free) function to be called whenever pipeline starts

None
on_pipeline_end Optional[Callable[[], None]]

Optional (parameter-free) function to be called whenever pipeline ends

None
max_fps Optional[Union[float, int]]

Specific value passed as this parameter will be used to dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines on single machine making tradeoff between number of frames and number of streams handled. Disabled by default.

None
watchdog Optional[PipelineWatchDog]

Implementation of class that allows profiling of inference pipeline - if not given null implementation (doing nothing) will be used.

None
status_update_handlers Optional[List[Callable[[StatusUpdate], None]]]

List of handlers to intercept status updates of all elements of the pipeline. Should be used only if detailed inspection of pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed fast - otherwise they will impair pipeline performance. All errors will be logged as warnings without re-raising. Default: None.

None
source_buffer_filling_strategy Optional[BufferFillingStrategy]

Parameter dictating strategy for video stream decoding behaviour. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
source_buffer_consumption_strategy Optional[BufferConsumptionStrategy]

Parameter dictating strategy for video stream frames consumption. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
video_source_properties Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]

Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties cv2.CAP_PROP_*. If not given, defaults for the video source will be used. It is optional and if provided can be provided as single dict (applicable for all sources) or as list of configs. Then the list must be of length of video_reference and may also contain None values to denote that specific source should remain not configured. Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}

None
batch_collection_timeout Optional[float]

Parameter of multiplex_videos(...) dictating how long process to grab frames from multiple sources can wait for batch to be filled before yielding already collected frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows unstable latency. Visit multiplex_videos(...) for more information about multiplexing process.

None
sink_mode SinkMode

Parameter that controls how video frames and predictions will be passed to sink handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink, in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned in the order of video sources - with None values in the place of vide_frames / predictions that were skipped due to batch_collection_timeout. SinkMode.ADAPTIVE is a middle ground (and default mode) - all old sources will work in that mode against a single video input, as the pipeline will behave as if running in SinkMode.SEQUENTIAL. To handle multiple videos - sink needs to accept predictions: List[Optional[dict]] and video_frame: List[Optional[VideoFrame]]. It is also possible to process multiple videos using old sinks - but then SinkMode.SEQUENTIAL is to be used, causing sink to be called on each prediction element.

ADAPTIVE

Other ENV variables involved in low-level configuration: * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

Returns: Instance of InferencePipeline

Throws
  • SourceConnectionError if source cannot be connected at start, however it attempts to reconnect always if connection to stream is lost.
Source code in inference/core/interfaces/stream/inference_pipeline.py
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
@classmethod
def init_with_custom_logic(
    cls,
    video_reference: Union[VideoSourceIdentifier, List[VideoSourceIdentifier]],
    on_video_frame: InferenceHandler,
    on_prediction: SinkHandler = None,
    on_pipeline_start: Optional[Callable[[], None]] = None,
    on_pipeline_end: Optional[Callable[[], None]] = None,
    max_fps: Optional[Union[float, int]] = None,
    watchdog: Optional[PipelineWatchDog] = None,
    status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
    source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
    source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
    video_source_properties: Optional[Dict[str, float]] = None,
    batch_collection_timeout: Optional[float] = None,
    sink_mode: SinkMode = SinkMode.ADAPTIVE,
) -> "InferencePipeline":
    """
    This class creates the abstraction for making inferences from given workflow against video stream.
    The way of how `InferencePipeline` works is displayed in `InferencePipeline.init(...)` initialiser
    method.

    Args:
        video_reference (Union[str, int, List[Union[str, int]]]): Reference of source or sources to be used to make
            predictions against. It can be video file path, stream URL and device (like camera) id
            (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then
            it will trigger parallel processing of multiple sources. It has some implication on sinks. See:
            `sink_mode` parameter comments.
        on_video_frame (Callable[[VideoFrame], AnyPrediction]): function supposed to make prediction (or do another
            kind of custom processing according to your will). Accept `VideoFrame` object and is supposed
            to return dictionary with results of any kind.
        on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
            once prediction is ready - passing both decoded frame, their metadata and dict with output from your
            custom callable `on_video_frame(...)`. Logic here must be adjusted to the output of `on_video_frame`.
        on_pipeline_start (Optional[Callable[[], None]]): Optional (parameter-free) function to be called
            whenever pipeline starts
        on_pipeline_end (Optional[Callable[[], None]]): Optional (parameter-free) function to be called
            whenever pipeline ends
        max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
            dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
            on single machine making tradeoff between number of frames and number of streams handled. Disabled
            by default.
        watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
            inference pipeline - if not given null implementation (doing nothing) will be used.
        status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
            status updates of all elements of the pipeline. Should be used only if detailed inspection of
            pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
            fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
            without re-raising. Default: None.
        source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
            video stream decoding behaviour. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
            video stream frames consumption. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        video_source_properties (Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]):
            Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties
            cv2.CAP_PROP_*. If not given, defaults for the video source will be used.
            It is optional and if provided can be provided as single dict (applicable for all sources) or
            as list of configs. Then the list must be of length of `video_reference` and may also contain None
            values to denote that specific source should remain not configured.
            Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}
        batch_collection_timeout (Optional[float]): Parameter of multiplex_videos(...) dictating how long process
            to grab frames from multiple sources can wait for batch to be filled before yielding already collected
            frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows
            unstable latency. Visit `multiplex_videos(...)` for more information about multiplexing process.
        sink_mode (SinkMode): Parameter that controls how video frames and predictions will be passed to sink
            handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink,
            in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned
            in the order of video sources - with None values in the place of vide_frames / predictions that
            were skipped due to `batch_collection_timeout`.
            `SinkMode.ADAPTIVE` is a middle ground (and default mode) - all old sources will work in that mode
            against a single video input, as the pipeline will behave as if running in `SinkMode.SEQUENTIAL`.
            To handle multiple videos - sink needs to accept `predictions: List[Optional[dict]]` and
            `video_frame: List[Optional[VideoFrame]]`. It is also possible to process multiple videos using
            old sinks - but then `SinkMode.SEQUENTIAL` is to be used, causing sink to be called on each
            prediction element.


    Other ENV variables involved in low-level configuration:
    * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
    * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

    Returns: Instance of InferencePipeline

    Throws:
        * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
            always if connection to stream is lost.
    """
    if watchdog is None:
        watchdog = NullPipelineWatchdog()
    if status_update_handlers is None:
        status_update_handlers = []
    status_update_handlers.append(watchdog.on_status_update)
    video_sources = prepare_video_sources(
        video_reference=video_reference,
        video_source_properties=video_source_properties,
        status_update_handlers=status_update_handlers,
        source_buffer_filling_strategy=source_buffer_filling_strategy,
        source_buffer_consumption_strategy=source_buffer_consumption_strategy,
    )
    watchdog.register_video_sources(video_sources=video_sources)
    predictions_queue = Queue(maxsize=PREDICTIONS_QUEUE_SIZE)
    return cls(
        on_video_frame=on_video_frame,
        video_sources=video_sources,
        predictions_queue=predictions_queue,
        watchdog=watchdog,
        status_update_handlers=status_update_handlers,
        on_prediction=on_prediction,
        max_fps=max_fps,
        on_pipeline_start=on_pipeline_start,
        on_pipeline_end=on_pipeline_end,
        batch_collection_timeout=batch_collection_timeout,
        sink_mode=sink_mode,
    )

init_with_workflow(video_reference, workflow_specification=None, workspace_name=None, workflow_id=None, api_key=None, image_input_name='image', workflows_parameters=None, on_prediction=None, max_fps=None, watchdog=None, status_update_handlers=None, source_buffer_filling_strategy=None, source_buffer_consumption_strategy=None, video_source_properties=None, workflow_init_parameters=None) classmethod

This class creates the abstraction for making inferences from given workflow against video stream. The way of how InferencePipeline works is displayed in InferencePipeline.init(...) initializer method.

Parameters:

Name Type Description Default
video_reference Union[str, int]

Reference of source to be used to make predictions against. It can be video file path, stream URL and device (like camera) id (we handle whatever cv2 handles).

required
workflow_specification Optional[dict]

Valid specification of workflow. See workflow docs. It can be provided optionally, but if not given, both workspace_name and workflow_id must be provided.

None
workspace_name Optional[str]

When using registered workflows - Roboflow workspace name needs to be given.

None
workflow_id Optional[str]

When using registered workflows - Roboflow workflow id needs to be given.

None
api_key Optional[str]

Roboflow API key - if not passed - will be looked in env under "ROBOFLOW_API_KEY" and "API_KEY" variables. API key, passed in some form is required.

None
image_input_name str

Name of input image defined in workflow_specification. InferencePipeline will be injecting video frames to workflow through that parameter name.

'image'
workflows_parameters Optional[Dict[str, Any]]

Dictionary with additional parameters that can be defined within workflow_specification.

None
on_prediction Callable[AnyPrediction, VideoFrame], None]

Function to be called once prediction is ready - passing both decoded frame, their metadata and dict with workflow output.

None
max_fps Optional[Union[float, int]]

Specific value passed as this parameter will be used to dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines on single machine making tradeoff between number of frames and number of streams handled. Disabled by default.

None
watchdog Optional[PipelineWatchDog]

Implementation of class that allows profiling of inference pipeline - if not given null implementation (doing nothing) will be used.

None
status_update_handlers Optional[List[Callable[[StatusUpdate], None]]]

List of handlers to intercept status updates of all elements of the pipeline. Should be used only if detailed inspection of pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed fast - otherwise they will impair pipeline performance. All errors will be logged as warnings without re-raising. Default: None.

None
source_buffer_filling_strategy Optional[BufferFillingStrategy]

Parameter dictating strategy for video stream decoding behaviour. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
source_buffer_consumption_strategy Optional[BufferConsumptionStrategy]

Parameter dictating strategy for video stream frames consumption. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
video_source_properties Optional[dict[str, float]]

Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties cv2.CAP_PROP_*. If not given, defaults for the video source will be used. Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}

None

Other ENV variables involved in low-level configuration: * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

Returns: Instance of InferencePipeline

Throws
  • SourceConnectionError if source cannot be connected at start, however it attempts to reconnect always if connection to stream is lost.
  • ValueError if workflow specification not provided and registered workflow not pointed out
  • NotImplementedError if workflow used against multiple videos which is not supported yet
  • MissingApiKeyError - if API key is not provided in situation when retrieving workflow definition from Roboflow API is needed
Source code in inference/core/interfaces/stream/inference_pipeline.py
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
@classmethod
def init_with_workflow(
    cls,
    video_reference: Union[str, int],
    workflow_specification: Optional[dict] = None,
    workspace_name: Optional[str] = None,
    workflow_id: Optional[str] = None,
    api_key: Optional[str] = None,
    image_input_name: str = "image",
    workflows_parameters: Optional[Dict[str, Any]] = None,
    on_prediction: SinkHandler = None,
    max_fps: Optional[Union[float, int]] = None,
    watchdog: Optional[PipelineWatchDog] = None,
    status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
    source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
    source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
    video_source_properties: Optional[Dict[str, float]] = None,
    workflow_init_parameters: Optional[Dict[str, Any]] = None,
) -> "InferencePipeline":
    """
    This class creates the abstraction for making inferences from given workflow against video stream.
    The way of how `InferencePipeline` works is displayed in `InferencePipeline.init(...)` initializer
    method.

    Args:
        video_reference (Union[str, int]): Reference of source to be used to make predictions against.
            It can be video file path, stream URL and device (like camera) id (we handle whatever cv2 handles).
        workflow_specification (Optional[dict]): Valid specification of workflow. See [workflow docs](https://github.com/roboflow/inference/tree/main/inference/enterprise/workflows).
            It can be provided optionally, but if not given, both `workspace_name` and `workflow_id`
            must be provided.
        workspace_name (Optional[str]): When using registered workflows - Roboflow workspace name needs to be given.
        workflow_id (Optional[str]): When using registered workflows - Roboflow workflow id needs to be given.
        api_key (Optional[str]): Roboflow API key - if not passed - will be looked in env under "ROBOFLOW_API_KEY"
            and "API_KEY" variables. API key, passed in some form is required.
        image_input_name (str): Name of input image defined in `workflow_specification`. `InferencePipeline` will be
            injecting video frames to workflow through that parameter name.
        workflows_parameters (Optional[Dict[str, Any]]): Dictionary with additional parameters that can be
            defined within `workflow_specification`.
        on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
            once prediction is ready - passing both decoded frame, their metadata and dict with workflow output.
        max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
            dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
            on single machine making tradeoff between number of frames and number of streams handled. Disabled
            by default.
        watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
            inference pipeline - if not given null implementation (doing nothing) will be used.
        status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
            status updates of all elements of the pipeline. Should be used only if detailed inspection of
            pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
            fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
            without re-raising. Default: None.
        source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
            video stream decoding behaviour. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
            video stream frames consumption. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        video_source_properties (Optional[dict[str, float]]): Optional source properties to set up the video source,
            corresponding to cv2 VideoCapture properties cv2.CAP_PROP_*. If not given, defaults for the video source
            will be used.
            Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}


    Other ENV variables involved in low-level configuration:
    * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
    * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

    Returns: Instance of InferencePipeline

    Throws:
        * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
            always if connection to stream is lost.
        * ValueError if workflow specification not provided and registered workflow not pointed out
        * NotImplementedError if workflow used against multiple videos which is not supported yet
        * MissingApiKeyError - if API key is not provided in situation when retrieving workflow definition
            from Roboflow API is needed
    """
    if api_key is None:
        api_key = API_KEY
    named_workflow_specified = (workspace_name is not None) and (
        workflow_id is not None
    )
    if not (named_workflow_specified != (workflow_specification is not None)):
        raise ValueError(
            "Parameters (`workspace_name`, `workflow_id`) can be used mutually exclusive with "
            "`workflow_specification`, but at least one must be set."
        )
    if issubclass(type(video_reference), list) and len(list) > 1:
        raise NotImplementedError(
            "Usage of workflows and `InferencePipeline` is experimental feature for now. We do not support "
            "multiple video sources yet."
        )
    try:
        from inference.core.interfaces.stream.model_handlers.workflows import (
            WorkflowRunner,
        )
        from inference.core.roboflow_api import get_workflow_specification
        from inference.core.workflows.core_steps.sinks.active_learning.middleware import (
            WorkflowsActiveLearningMiddleware,
        )
        from inference.core.workflows.execution_engine import ExecutionEngine

        if workflow_specification is None:
            if api_key is None:
                raise MissingApiKeyError(
                    "Roboflow API key needs to be provided either as parameter or via env variable "
                    "ROBOFLOW_API_KEY. If you do not know how to get API key - visit "
                    "https://docs.roboflow.com/api-reference/authentication#retrieve-an-api-key to learn how to "
                    "retrieve one."
                )
            workflow_specification = get_workflow_specification(
                api_key=api_key,
                workspace_id=workspace_name,
                workflow_id=workflow_id,
            )
        workflows_active_learning_middleware = WorkflowsActiveLearningMiddleware(
            cache=cache,
        )
        model_registry = RoboflowModelRegistry(ROBOFLOW_MODEL_TYPES)
        model_manager = BackgroundTaskActiveLearningManager(
            model_registry=model_registry, cache=cache
        )
        model_manager = WithFixedSizeCache(
            model_manager,
            max_size=MAX_ACTIVE_MODELS,
        )
        if api_key is None:
            api_key = API_KEY
        background_tasks = BackgroundTasks()
        if workflow_init_parameters is None:
            workflow_init_parameters = {}
        workflow_init_parameters["workflows_core.model_manager"] = model_manager
        workflow_init_parameters["workflows_core.api_key"] = api_key
        workflow_init_parameters["workflows_core.active_learning_middleware"] = (
            workflows_active_learning_middleware
        )
        workflow_init_parameters["workflows_core.background_tasks"] = (
            background_tasks
        )
        execution_engine = ExecutionEngine.init(
            workflow_definition=workflow_specification,
            init_parameters=workflow_init_parameters,
        )
        workflow_runner = WorkflowRunner()
        on_video_frame = partial(
            workflow_runner.run_workflow,
            workflows_parameters=workflows_parameters,
            execution_engine=execution_engine,
            image_input_name=image_input_name,
        )
    except ImportError as error:
        raise CannotInitialiseModelError(
            f"Could not initialise workflow processing due to lack of dependencies required. "
            f"Please provide an issue report under https://github.com/roboflow/inference/issues"
        ) from error
    return InferencePipeline.init_with_custom_logic(
        video_reference=video_reference,
        on_video_frame=on_video_frame,
        on_prediction=on_prediction,
        on_pipeline_start=None,
        on_pipeline_end=None,
        max_fps=max_fps,
        watchdog=watchdog,
        status_update_handlers=status_update_handlers,
        source_buffer_filling_strategy=source_buffer_filling_strategy,
        source_buffer_consumption_strategy=source_buffer_consumption_strategy,
        video_source_properties=video_source_properties,
    )

init_with_yolo_world(video_reference, classes, model_size='s', on_prediction=None, max_fps=None, watchdog=None, status_update_handlers=None, source_buffer_filling_strategy=None, source_buffer_consumption_strategy=None, class_agnostic_nms=None, confidence=None, iou_threshold=None, max_candidates=None, max_detections=None, video_source_properties=None, batch_collection_timeout=None, sink_mode=SinkMode.ADAPTIVE) classmethod

This class creates the abstraction for making inferences from YoloWorld against video stream. The way of how InferencePipeline works is displayed in InferencePipeline.init(...) initializer method.

Parameters:

Name Type Description Default
video_reference Union[str, int, List[Union[str, int]]]

Reference of source or sources to be used to make predictions against. It can be video file path, stream URL and device (like camera) id (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then it will trigger parallel processing of multiple sources. It has some implication on sinks. See: sink_mode parameter comments.

required
classes List[str]

List of classes to execute zero-shot detection against

required
model_size str

version of model - to be chosen from s, m, l

's'
on_prediction Callable[AnyPrediction, VideoFrame], None]

Function to be called once prediction is ready - passing both decoded frame, their metadata and dict with standard Roboflow Object Detection prediction.

None
max_fps Optional[Union[float, int]]

Specific value passed as this parameter will be used to dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines on single machine making tradeoff between number of frames and number of streams handled. Disabled by default.

None
watchdog Optional[PipelineWatchDog]

Implementation of class that allows profiling of inference pipeline - if not given null implementation (doing nothing) will be used.

None
status_update_handlers Optional[List[Callable[[StatusUpdate], None]]]

List of handlers to intercept status updates of all elements of the pipeline. Should be used only if detailed inspection of pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed fast - otherwise they will impair pipeline performance. All errors will be logged as warnings without re-raising. Default: None.

None
source_buffer_filling_strategy Optional[BufferFillingStrategy]

Parameter dictating strategy for video stream decoding behaviour. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
source_buffer_consumption_strategy Optional[BufferConsumptionStrategy]

Parameter dictating strategy for video stream frames consumption. By default - tweaked to the type of source given. Please find detailed explanation in docs of VideoSource

None
class_agnostic_nms Optional[bool]

Parameter of model post-processing. If not given - value checked in env variable "CLASS_AGNOSTIC_NMS" with default "False"

None
confidence Optional[float]

Parameter of model post-processing. If not given - value checked in env variable "CONFIDENCE" with default "0.5"

None
iou_threshold Optional[float]

Parameter of model post-processing. If not given - value checked in env variable "IOU_THRESHOLD" with default "0.5"

None
max_candidates Optional[int]

Parameter of model post-processing. If not given - value checked in env variable "MAX_CANDIDATES" with default "3000"

None
max_detections Optional[int]

Parameter of model post-processing. If not given - value checked in env variable "MAX_DETECTIONS" with default "300"

None
video_source_properties Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]

Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties cv2.CAP_PROP_*. If not given, defaults for the video source will be used. It is optional and if provided can be provided as single dict (applicable for all sources) or as list of configs. Then the list must be of length of video_reference and may also contain None values to denote that specific source should remain not configured. Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}

None
batch_collection_timeout Optional[float]

Parameter of multiplex_videos(...) dictating how long process to grab frames from multiple sources can wait for batch to be filled before yielding already collected frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows unstable latency. Visit multiplex_videos(...) for more information about multiplexing process.

None
sink_mode SinkMode

Parameter that controls how video frames and predictions will be passed to sink handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink, in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned in the order of video sources - with None values in the place of vide_frames / predictions that were skipped due to batch_collection_timeout. SinkMode.ADAPTIVE is a middle ground (and default mode) - all old sources will work in that mode against a single video input, as the pipeline will behave as if running in SinkMode.SEQUENTIAL. To handle multiple videos - sink needs to accept predictions: List[Optional[dict]] and video_frame: List[Optional[VideoFrame]]. It is also possible to process multiple videos using old sinks - but then SinkMode.SEQUENTIAL is to be used, causing sink to be called on each prediction element.

ADAPTIVE

Other ENV variables involved in low-level configuration: * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

Returns: Instance of InferencePipeline

Throws
  • SourceConnectionError if source cannot be connected at start, however it attempts to reconnect always if connection to stream is lost.
Source code in inference/core/interfaces/stream/inference_pipeline.py
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
@classmethod
def init_with_yolo_world(
    cls,
    video_reference: Union[str, int, List[Union[str, int]]],
    classes: List[str],
    model_size: str = "s",
    on_prediction: SinkHandler = None,
    max_fps: Optional[Union[float, int]] = None,
    watchdog: Optional[PipelineWatchDog] = None,
    status_update_handlers: Optional[List[Callable[[StatusUpdate], None]]] = None,
    source_buffer_filling_strategy: Optional[BufferFillingStrategy] = None,
    source_buffer_consumption_strategy: Optional[BufferConsumptionStrategy] = None,
    class_agnostic_nms: Optional[bool] = None,
    confidence: Optional[float] = None,
    iou_threshold: Optional[float] = None,
    max_candidates: Optional[int] = None,
    max_detections: Optional[int] = None,
    video_source_properties: Optional[Dict[str, float]] = None,
    batch_collection_timeout: Optional[float] = None,
    sink_mode: SinkMode = SinkMode.ADAPTIVE,
) -> "InferencePipeline":
    """
    This class creates the abstraction for making inferences from YoloWorld against video stream.
    The way of how `InferencePipeline` works is displayed in `InferencePipeline.init(...)` initializer
    method.

    Args:
        video_reference (Union[str, int, List[Union[str, int]]]): Reference of source or sources to be used to make
            predictions against. It can be video file path, stream URL and device (like camera) id
            (we handle whatever cv2 handles). It can also be a list of references (since v0.9.18) - and then
            it will trigger parallel processing of multiple sources. It has some implication on sinks. See:
            `sink_mode` parameter comments.
        classes (List[str]): List of classes to execute zero-shot detection against
        model_size (str): version of model - to be chosen from `s`, `m`, `l`
        on_prediction (Callable[AnyPrediction, VideoFrame], None]): Function to be called
            once prediction is ready - passing both decoded frame, their metadata and dict with standard
            Roboflow Object Detection prediction.
        max_fps (Optional[Union[float, int]]): Specific value passed as this parameter will be used to
            dictate max FPS of processing. It can be useful if we wanted to run concurrent inference pipelines
            on single machine making tradeoff between number of frames and number of streams handled. Disabled
            by default.
        watchdog (Optional[PipelineWatchDog]): Implementation of class that allows profiling of
            inference pipeline - if not given null implementation (doing nothing) will be used.
        status_update_handlers (Optional[List[Callable[[StatusUpdate], None]]]): List of handlers to intercept
            status updates of all elements of the pipeline. Should be used only if detailed inspection of
            pipeline behaviour in time is needed. Please point out that handlers should be possible to be executed
            fast - otherwise they will impair pipeline performance. All errors will be logged as warnings
            without re-raising. Default: None.
        source_buffer_filling_strategy (Optional[BufferFillingStrategy]): Parameter dictating strategy for
            video stream decoding behaviour. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        source_buffer_consumption_strategy (Optional[BufferConsumptionStrategy]): Parameter dictating strategy for
            video stream frames consumption. By default - tweaked to the type of source given.
            Please find detailed explanation in docs of [`VideoSource`](../camera/video_source.py)
        class_agnostic_nms (Optional[bool]): Parameter of model post-processing. If not given - value checked in
            env variable "CLASS_AGNOSTIC_NMS" with default "False"
        confidence (Optional[float]): Parameter of model post-processing. If not given - value checked in
            env variable "CONFIDENCE" with default "0.5"
        iou_threshold (Optional[float]): Parameter of model post-processing. If not given - value checked in
            env variable "IOU_THRESHOLD" with default "0.5"
        max_candidates (Optional[int]): Parameter of model post-processing. If not given - value checked in
            env variable "MAX_CANDIDATES" with default "3000"
        max_detections (Optional[int]): Parameter of model post-processing. If not given - value checked in
            env variable "MAX_DETECTIONS" with default "300"
        video_source_properties (Optional[Union[Dict[str, float], List[Optional[Dict[str, float]]]]]):
            Optional source properties to set up the video source, corresponding to cv2 VideoCapture properties
            cv2.CAP_PROP_*. If not given, defaults for the video source will be used.
            It is optional and if provided can be provided as single dict (applicable for all sources) or
            as list of configs. Then the list must be of length of `video_reference` and may also contain None
            values to denote that specific source should remain not configured.
            Example valid properties are: {"frame_width": 1920, "frame_height": 1080, "fps": 30.0}
        batch_collection_timeout (Optional[float]): Parameter of multiplex_videos(...) dictating how long process
            to grab frames from multiple sources can wait for batch to be filled before yielding already collected
            frames. Please set this value in PRODUCTION to avoid performance drops when specific sources shows
            unstable latency. Visit `multiplex_videos(...)` for more information about multiplexing process.
        sink_mode (SinkMode): Parameter that controls how video frames and predictions will be passed to sink
            handler. With SinkMode.SEQUENTIAL - each frame and prediction triggers separate call for sink,
            in case of SinkMode.BATCH - list of frames and predictions will be provided to sink, always aligned
            in the order of video sources - with None values in the place of vide_frames / predictions that
            were skipped due to `batch_collection_timeout`.
            `SinkMode.ADAPTIVE` is a middle ground (and default mode) - all old sources will work in that mode
            against a single video input, as the pipeline will behave as if running in `SinkMode.SEQUENTIAL`.
            To handle multiple videos - sink needs to accept `predictions: List[Optional[dict]]` and
            `video_frame: List[Optional[VideoFrame]]`. It is also possible to process multiple videos using
            old sinks - but then `SinkMode.SEQUENTIAL` is to be used, causing sink to be called on each
            prediction element.


    Other ENV variables involved in low-level configuration:
    * INFERENCE_PIPELINE_PREDICTIONS_QUEUE_SIZE - size of buffer for predictions that are ready for dispatching
    * INFERENCE_PIPELINE_RESTART_ATTEMPT_DELAY - delay for restarts on stream connection drop

    Returns: Instance of InferencePipeline

    Throws:
        * SourceConnectionError if source cannot be connected at start, however it attempts to reconnect
            always if connection to stream is lost.
    """
    inference_config = ModelConfig.init(
        class_agnostic_nms=class_agnostic_nms,
        confidence=confidence,
        iou_threshold=iou_threshold,
        max_candidates=max_candidates,
        max_detections=max_detections,
    )
    try:
        from inference.core.interfaces.stream.model_handlers.yolo_world import (
            build_yolo_world_inference_function,
        )

        on_video_frame = build_yolo_world_inference_function(
            model_id=f"yolo_world/{model_size}",
            classes=classes,
            inference_config=inference_config,
        )
    except ImportError as error:
        raise CannotInitialiseModelError(
            f"Could not initialise yolo_world/{model_size} due to lack of sufficient dependencies. "
            f"Use pip install inference[yolo-world] to install missing dependencies and try again."
        ) from error
    return InferencePipeline.init_with_custom_logic(
        video_reference=video_reference,
        on_video_frame=on_video_frame,
        on_prediction=on_prediction,
        on_pipeline_start=None,
        on_pipeline_end=None,
        max_fps=max_fps,
        watchdog=watchdog,
        status_update_handlers=status_update_handlers,
        source_buffer_filling_strategy=source_buffer_filling_strategy,
        source_buffer_consumption_strategy=source_buffer_consumption_strategy,
        video_source_properties=video_source_properties,
        batch_collection_timeout=batch_collection_timeout,
        sink_mode=sink_mode,
    )