I want to insert rectangle shape to the real time image
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1447867/image.png)
MATLAB Function3:
function fakeImg = fcn(RealImg)
I = RealImg;
fakeImg = insertShape(I,"line",[10 10 40 40],Color="black",Opacity=1);
0 commentaires
Réponses (2)
Image Analyst
le 2 Août 2023
You might find using rectangle to draw into the overlay is faster than using insertShape to burn the rectangle into an RGB image.
0 commentaires
Birju Patel
le 10 Août 2023
You can also use the Draw Shapes block in Simulink:
https://www.mathworks.com/help/vision/ref/drawshapes.html
0 commentaires
Voir également
Catégories
En savoir plus sur Computer Vision with Simulink dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!