Please enable JavaScript.
Coggle requires JavaScript to display documents.
Computer Vision (Image Processing (Feature Matching (Point Correspondences…
Computer Vision
Image Processing
-
-
Feature Matching
-
Point Correspondences
RANSAC
- Estimate the model for the random subset
- Count the number of inliers that are within x of their predicted location
- Repeat the random selection process and keep the sample with the largest number of inliers
- Select a random subset of k correspondences
-
-
-
-
Texture Analysis
-
-
Texture discrimination
-
Finding patterns
- Use filters that look like patterns
-
- Consider magnitude of response
-
-
-
-
Image Segmentation
-
Top Down
-
-
-
Chan-Vese
-
Heaviside step function is approximately 1 inside the contour, and 0 outside
-
-
Video Segmentation
Shot Detection
Video Shots
Camera Break, abrupt change between neighbouring frames
-
-
Detection Techniques
-
-
Pixel comparison
Simple, easy to implement
-
-
Block-based approach
-
Cant identify dissolve, fade or fast moving objects
Histogram comparison
-
-
Detects hard-cut, fade, wipe and dissolve
-
-
Edge change ratio
-
-
Better than other methods at detecting fade, wipe, dissolve and hard-cut
-
-
Thresholding
Calculate a time series function of discontinuity feature values for each frame.
Pick cuts positions from the discontinuities function based on some thresholds
-
Adaptive Threshold
A soft cut is detected based on the difference of the current discontinuity values from its local neighbourhood
-
Background subtraction
Method
- Moving average to estimate background image (using the Median)
- Subtract estimate from current frame
- Large absolute values are interesting pixels, defined by a threshold
- Use morphological operations to clean up pixels
-
-
-
-
-
Object Recognition
Bag-Of-Words Model
Method
Quantize features
- Use a distance based classifier (KNN / SVM) to classify new images
-
-
Learn Vocabulary (Train)
- Train classifier by counting occurence of features in labelled images
-
-
Feature extraction
- Generate an unlabelled vocabulary of frequent features
-
-
Vocabulary size
-
Too large - quantization artifacts, overfitting