Hello Gueni Hamza,
I understand that you are trying to create an object detector in Simulink using ‘MATLAB Function’ Block and want to know how to pass the detector object of type ‘yolov2ObjectDetector’ to the ‘MATLAB Function’ block as an input argument.
You can use the ‘From File’ block to read data from the ‘.mat’ file that contains the detector object and pass it as an input to your ‘MATLAB Function’ block
I would suggest you to use the ‘Deep Learning Object Detector’ Block, which is specifically designed for this purpose of predicting bounding boxes, class labels, and scores for an input image by using the trained object detector specified through the block parameter. You can then use a ‘MATLAB Function’ block to superimpose the bounding box on the image using the ‘insertObjectAnnotation’ function.
You can refer to the following documentation to understand more about ‘From File’ block.
You can refer to the following documentation to understand more about the ‘Deep Learning Object Detector’ Block.
Hope this helps!