Commit eaa9b781 authored by Yang Fan's avatar Yang Fan Committed by Dikay900

ENH: explicitly declared outputFilename to surpress error C2668

Conflicts:
	samples/gpu/video_writer.cpp
parent fd4df0f6
......@@ -63,7 +63,8 @@ int main(int argc, const char* argv[])
{
std::cout << "Open GPU Writer" << std::endl;
d_writer.open("output_gpu.avi", frame.size(), FPS);
const cv::String outputFilename = "output_gpu.avi";
d_writer.open(outputFilename, frame.size(), FPS);
}
d_frame.upload(frame);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment