Add lines to image
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have an image and i want to add lines with specified length to this image,
how can i add five/ seven / multipllinse to an image ?
0 Commenti
Risposte (1)
Ameer Hamza
il 28 Apr 2020
Modificato: Ameer Hamza
il 28 Apr 2020
See insertShape(): https://www.mathworks.com/help/releases/R2020a/vision/ref/insertshape.html from computer vision toolbox. You can use a for loop to add several lines over an image. Example:
img = insertshape(img, 'Line', [x_start y_start x_end y_end]);
0 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!