If you had to detect vehicles using ONLY motion detection, how would you do it? π
Reddit r/computervision1w4 min read
β Iβm working on a computer-vision problem where I need to detect vehicles (cars, trucks, buses, etc.) using only traditional image-processing/computer-vision techniques. The important constraint is: * β No YOLO / deep-learning detector * β No object detection model * β No neural networks * β Motion detection and traditional CV techniques only The camera is fixed, so the general idea is to identify regions that correspond to moving vehicles. Iβm considering approaches such as: * Background subtraction (MOG2 / KNN) * Frame differencing * Optical flow * Contour detection * Morphological operatio
