I want to insert rectangle shape to the real time image
Mostra commenti meno recenti

MATLAB Function3:
function fakeImg = fcn(RealImg)
I = RealImg;
fakeImg = insertShape(I,"line",[10 10 40 40],Color="black",Opacity=1);
Risposte (2)
Image Analyst
il 2 Ago 2023
1 voto
You might find using rectangle to draw into the overlay is faster than using insertShape to burn the rectangle into an RGB image.
Birju Patel
il 10 Ago 2023
0 voti
You can also use the Draw Shapes block in Simulink:
https://www.mathworks.com/help/vision/ref/drawshapes.html
Categorie
Scopri di più su Neighborhood and Block Processing in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!