Peter M. Groen
/
openbr
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
d148cbc8bdbedadcb919efce08e2a90f3f818349
Authored by
Scott Klum
2014-10-15 09:39:42 -0400
1 parent
1cf164ec
Looping over all matrices in Transpose
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
openbr/plugins/misc.cpp
openbr/plugins/misc.cpp
View file @
d148cbc
...
...
@@ -890,7 +890,8 @@ class TransposeTransform : public UntrainableTransform
890
890
891
891
void project(const Template &src, Template &dst) const
892
892
{
893
- dst.m() = src.m().t();
893
+ for (int i=0; i<src.size(); i++)
894
+ dst.append(src[i].t());
894
895
}
895
896
};
896
897
...
...