We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
here AbEvent is an array, so numFrames must be a constant?
The text was updated successfully, but these errors were encountered:
I use VS10 ,there is an error for compile , the note is : numFrames must be a constant.
Sorry, something went wrong.
The c++ standard is somewhat different in CodeBlocks and VS , you can use Mat* AbEvent=new Mat[numFrames] to solve the problem``
Mat* AbEvent=new Mat[numFrames]
No branches or pull requests
here AbEvent is an array, so numFrames must be a constant?
The text was updated successfully, but these errors were encountered: