You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, Firstly i wanted to thank you for putting so much effort in making such a project and making it open source.
I have a question regarding the components, in case i have my own object detection model like a custom trained yolov5 model or something, how can i use it and is there a way to make custom components for customized object detection, face recognition or any task ?
The text was updated successfully, but these errors were encountered:
Depends on what format your YOLOv5 model is in. If you can convert it to Darknet weights then it can be used.
Otherwise a new component for Ultralytics has to be created (and i currently dont have enough time to do that sadly)
It should be fairly easy to create a custom component. When starting the docker container all you have to do is mount your custom component to the folder /src/viseron/components/your_component_name
The key take away is that if a CONFIG_SCHEMA variable is available Viseron will automatically check it for you.
If the config check passes it calls the setup method for the component where you are free to do whatever you like.
Hello, Firstly i wanted to thank you for putting so much effort in making such a project and making it open source.
I have a question regarding the components, in case i have my own object detection model like a custom trained yolov5 model or something, how can i use it and is there a way to make custom components for customized object detection, face recognition or any task ?
The text was updated successfully, but these errors were encountered: