Add lines to image
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (1)
Ameer Hamza
el 28 de Abr. de 2020
Editada: Ameer Hamza
el 28 de Abr. de 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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!