I have been developing an application using holoscan SDK. I have implemented certain operators.
Operator to read frames from a video directly using ffmpeg.
Preprocessing operator to process image using some inbuild function and also allowing user to write his own preprocessing function in python.
Also created an application to test multiple models at once directly using the above operators with some user defined configurations.
How can I add these functionalities in holoscan sdk. What is the standard procedure to contribute to holoscan sdk repo with new operators and sample application?
Hi @aquraini, I read the guidelines. I have written all operators in python for my application. Do I need to write those operators separately in holohub/operators/ or can I use put all those operators directly in my application in holohub/applications/.
My python operators can be imported directly in python application. Do I need to add support for my python operators for cmake to build them?