diff --git a/openbr/plugins/opticalflow.cpp b/openbr/plugins/opticalflow.cpp index 4ff4b14..7f085f3 100644 --- a/openbr/plugins/opticalflow.cpp +++ b/openbr/plugins/opticalflow.cpp @@ -38,6 +38,8 @@ class OpticalFlowTransform : public UntrainableTransform Mat flow; calcOpticalFlowFarneback(prevImg, nextImg, flow, pyr_scale, levels, winsize, iterations, poly_n, poly_sigma, flags); dst += flow; + // propagate interest points thru + dst.file = src.file; } };