Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion openbr/core/core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,8 @@ struct AlgorithmCore
queryMetadata = FileList::fromGallery(queryGallery, true);

// Is the target or query set larger? We will use the larger as the rows of our comparison matrix (and transpose the output if necessary)
transposeMode = targetMetadata.size() > queryMetadata.size();
if (!Globals->file.getBool("noTranspose", false))
transposeMode = targetMetadata.size() > queryMetadata.size();

File rowGallery = queryGallery;
File colGallery = targetGallery;
Expand Down