From 1b64f45fdcd266ce5d706816b51b4e0a7412a7ec Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Sat, 29 Nov 2025 18:30:23 +0100 Subject: [PATCH] RotationIndexer: Seems to return valid lattice for each image --- image_analysis/RotationIndexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image_analysis/RotationIndexer.cpp b/image_analysis/RotationIndexer.cpp index 9d860096..8e1264c7 100644 --- a/image_analysis/RotationIndexer.cpp +++ b/image_analysis/RotationIndexer.cpp @@ -130,7 +130,7 @@ std::optional RotationIndexer::ProcessImage(int64_t image, const } if (indexed_lattice) - return indexed_lattice->Multiply(rot); + return indexed_lattice->Multiply(rot.transpose()); return {}; }