Robotics & Artificial Intelligence
Computer vision enables computers and machines to perceive, analyse, and extract meaningful information from visual data, such as photos and videos. Name any two applications of computer vision. Also, define each type.
AI Concepts
1 Like
Answer
Two applications of Computer Vision are:
- Medical Imaging — Computer vision is used to analyse medical images such as X-rays, CT scans, and MRIs. It helps doctors in detecting diseases and identifying abnormalities accurately.
- Face Recognition — Face recognition is an application of computer vision that enables a system to identify a person by analysing facial features from images or videos. It is commonly used in security and surveillance systems.
Answered By
2 Likes
Related Questions
Discuss three benefits of integrating technology in medical and healthcare.
Write a program to accept a symbol from the user and draw the following pattern containing that symbol.
Input: Enter the symbol: *
Output:
* * * * * * * * * *Based on the following picture, answer the given questions.

a. Identify the type of joint.
b. Briefly explain this type of joint.
Write a function called ice_water that takes a number as input. Perform the following operations:
- If the number is divisible by 3, then it should return "ice".
- If it is divisible by 5, then it should return "water".
- If it is divisible by both 3 and 5, then it should return "icewater".
- Otherwise, it should return the same number.