Fix charuco algo when an image spanns the break between ends of the board

up board size a bit
This commit is contained in:
2021-07-01 23:36:55 +02:00
parent 8b643b03d3
commit 2e3d0d2938
2 changed files with 65 additions and 6 deletions

View File

@ -143,7 +143,7 @@ int perfromOperation(int operation, char** fileNames, const Config& config)
if(operation == CREATE_CHARUCO)
{
std::string fileName = config.output.empty() ? "out.png" : config.output;
createCharucoBoard(config.size*14, fileName);
createCharucoBoard(config.size*42, fileName);
Log(Log::INFO)<<"Exported charuco map of size "<<config.size*14<<" to "<<fileName;
return 0;
}