I am using webcam to take image and recognizing faces after processing I want to preview the live image with the person's name. How I should write on the specific point on the preview window?
2 views (last 30 days)
Show older comments
cam=webcam;
while true snap=snapshot(cam); imshow(snap) end
I should perform the processing with the snap and add the person's name at specific point and show the processed version.
0 Comments
Answers (1)
Vidip
on 12 Apr 2024
To process the snapshot from your webcam feed, add a person's name at a specific point on the image, and display the processed version, you can use ‘insertText’ function as it inserts a text into the truecolor or grayscale image.
For more information, you can refer to the documentation link below:
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!