Computer Vision Flashcards
(6 cards)
1
Q
What are some uses for computer vision?
A
- 3D Image Reconstruction
- Object Detection
- Image Segmentation
2
Q
How are images represented?
A
Images are represented by 3 matrices, with each of the matrices representing either Red, Green, or Blue.
3
Q
What is a basic approach to computer vision?
A
The image is represented as a vector and each pixel has it’s own input node resulting in a high number of weights for an image.
4
Q
What is a disadvantage of the basic approach?
A
- It doesn’t scale very well as images increase in size.
- It is not robust to small changes in the input.
- It doesn’t take advantage of the correlations between pixels.
5
Q
What was the main development of Computer Vision after 1980?
A
The introduction of Deep Convolutional Neural Networks comes with more layers, new architectures, and new algorithms.
6
Q
What are the limitations of Deep Leanring?
A
- DL is Data Hungry and needs a lot of data
- DL is heavy and often needs GPUs and cloud computing to train it.
- DL is bad at representing uncertainty and its easy to trick a NN into thinking its right.
- It’s hard to optimise
- Its hard to interpret as NN’s are black boxes