be more picky about front and back cols

This commit is contained in:
uvos 2021-07-02 00:26:20 +02:00
parent 2e3d0d2938
commit f3d2a19781
6 changed files with 15 additions and 58 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*42, fileName);
createCharucoBoard(config.size*X_BOARD_SIZE, fileName);
Log(Log::INFO)<<"Exported charuco map of size "<<config.size*14<<" to "<<fileName;
return 0;
}