Yolov9 object detection
            YOLOv9ObjectDetection
¶
    
              Bases: ObjectDetectionBaseOnnxRoboflowInferenceModel
Roboflow ONNX Object detection model (Implements an object detection specific infer method).
This class is responsible for performing object detection using the YOLOv9 model with ONNX runtime.
Attributes:
| Name | Type | Description | 
|---|---|---|
weights_file | 
            
                  str
             | 
            
               Path to the ONNX weights file.  | 
          
Source code in inference/models/yolov9/yolov9_object_detection.py
                11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49  |  | 
            weights_file
  
      property
  
¶
    Gets the weights file for the YOLOv9 model.
Returns:
| Name | Type | Description | 
|---|---|---|
str |             
                  str
             | 
            
               Path to the ONNX weights file.  | 
          
            predict(img_in, **kwargs)
¶
    Performs object detection on the given image using the ONNX session.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                img_in
             | 
            
                  ndarray
             | 
            
               Input image as a NumPy array.  | 
            required | 
Returns:
| Type | Description | 
|---|---|
                  Tuple[ndarray]
             | 
            
               Tuple[np.ndarray]: NumPy array representing the predictions.  | 
          
Source code in inference/models/yolov9/yolov9_object_detection.py
              30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49  |  |