Skip to content
Snippets Groups Projects
Commit 8a49bd43 authored by Andrews Cordolino Sobral's avatar Andrews Cordolino Sobral
Browse files

Fixed typos

parent 2936ea72
Branches
Tags
No related merge requests found
......@@ -19,7 +19,7 @@ int main(int argc, char** argv)
if (argc > 1)
{
std::cout << "Openning: " << argv[1] << std::endl;
std::cout << "Opening: " << argv[1] << std::endl;
capture.open(argv[1]);
}
else
......@@ -39,6 +39,7 @@ int main(int argc, char** argv)
for (const std::string& algorithmName : algorithmsName)
{
// if (algorithmName.rfind("FrameDifference", 0) != 0) continue;
std::cout << "Running " << algorithmName << std::endl;
auto bgs = BGS_Factory::Instance()->Create(algorithmName);
......
......@@ -17,7 +17,7 @@ int main(int argc, char** argv)
std::string baseDir = "./dataset/frames";
if (argc > 1)
baseDir = argv[1];
std::cout << "Openning: " << baseDir << std::endl;
std::cout << "Opening: " << baseDir << std::endl;
/* Background Subtraction Methods */
auto algorithmsName = BGS_Factory::Instance()->GetRegisteredAlgorithmsName();
......@@ -27,6 +27,7 @@ int main(int argc, char** argv)
for (const std::string& algorithmName : algorithmsName)
{
// if (algorithmName.rfind("FrameDifference", 0) != 0) continue;
std::cout << "Running " << algorithmName << std::endl;
auto bgs = BGS_Factory::Instance()->Create(algorithmName);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment