OpenCV 面试题与答案
问题 31. What Do You Meant By Shrinking Of Digital Images?
Shrinking may be viewed as under sampling. If an image is been shrinked by one half, we delete every row and column. To reduce possible aliasing effect, it is a good idea to blue an image slightly before shrinking it.
问题 32. Explain Subjective Brightness And Brightness Adaptation.
Subjective brightness means intensity as preserved by the human visual system . Brightness adaptation means the human visual system can operate only from scotopic to glare limit. It cannot operate over the range simultaneously. It performs large variation by changes in its overall intensity.
问题 33. What Are The Steps Involved In Dip?
They are as follows.
- Image Acquisition
- Preprocessing
- Segmentation
- Representation and Description
问题 34. How can we Increase the Quality of an Image?
– Recognition and Interpretation
Image enhancement process is purely dependent on the application where we need to use the enhanced image and the type of degradation in the image. Few solutions from my basic knowledge
– If image contain so much noises, apply filtering operations such as mean/median etc.
– If the image is looking too dark or too bright apply histogram equalization process to improve the contrast.
– If the image is blurred apply sharpening operations in the image.
问题 35. What Is Meant By Pixel?
A digital image is composed of a finite number of elements each of which has a particular location or value. These elements are referred to as pixels or image elements or picture elements or pixls elements.
用户评价最有帮助的内容:
- what is OpenCV?
- Which method of OpenCV is used to read image?
- In OpenCV which function is used to draw a line?
- List some sample applications of OpenCV?
- How many types of image filters are available in OpenCV?