Add lines to image
12 views (last 30 days)
Show older comments
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 Comments
Answers (1)
Ameer Hamza
on 28 Apr 2020
Edited: Ameer Hamza
on 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 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!