Abnormal-Event-Detection
Abnormal-Event-Detection copied to clipboard
Mat AbEvent[numFrames]
here AbEvent is an array, so numFrames must be a constant?
I use VS10 ,there is an error for compile , the note is : numFrames must be a constant.
The c++ standard is somewhat different in CodeBlocks and VS , you can use Mat* AbEvent=new Mat[numFrames] to solve the problem``