https://github.com/membraneframework/membrane_yolo_plugin
Membrane Plugin for applying YOLO object detection on raw video frames
https://github.com/membraneframework/membrane_yolo_plugin
Last synced: 6 months ago
JSON representation
Membrane Plugin for applying YOLO object detection on raw video frames
- Host: GitHub
- URL: https://github.com/membraneframework/membrane_yolo_plugin
- Owner: membraneframework
- License: apache-2.0
- Created: 2025-11-12T09:34:58.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2025-12-04T16:19:09.000Z (6 months ago)
- Last Synced: 2025-12-07T19:42:55.554Z (6 months ago)
- Language: Elixir
- Size: 6.84 MB
- Stars: 3
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Membrane YOLO Plugin
[](https://hex.pm/packages/membrane_yolo_plugin)
[](https://hexdocs.pm/membrane_yolo_plugin)
[](https://circleci.com/gh/membraneframework/membrane_yolo_plugin)
Contains 2 Membrane Filters:
- `Membrane.YOLO.Detector` - for running object detection on a video stream.
- `Membrane.YOLO.Drawer` - for drawing object detection results generated by `Membrane.YOLO.Detector`.
Uses under the hood [yolo_elixir](https://github.com/poeticoding/yolo_elixir).
It's a part of the [Membrane Framework](https://membrane.stream).
## Installation
The package can be installed by adding `membrane_yolo_plugin` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:membrane_yolo_plugin, "~> 0.1.0"}
]
end
```
## Examples
Open a Livebook `examples/yolo.livemd` or run `$ elixir examples/live_camera_capture.exs`, `$ elixir examples/live_mp4_processing.exs` and `$ elixir examples/offline_mp4_processing.exs`
## Copyright and License
Copyright 2025, [Software Mansion](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_yolo_plugin)
[](https://swmansion.com/?utm_source=git&utm_medium=readme&utm_campaign=membrane_yolo_plugin)
Licensed under the [Apache License, Version 2.0](LICENSE)