Skip to content

Commit a93f7d0

Browse files
committed
Remove uneeded zeroing of matrix
1 parent 67df2a7 commit a93f7d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/tracker/rbt/include/visp3/rbt/vpPointMap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class VISP_EXPORT vpPointMap
8282

8383
void compute3DErrorAndJacobian(const vpArray2D<int> &indices, const vpHomogeneousMatrix &cTw, const vpMatrix &observations, vpMatrix &J, vpColVector &e) const
8484
{
85-
J.resize(indices.getRows() * 3, 6, true, false);
85+
J.resize(indices.getRows() * 3, 6, false, false);
8686
e.resize(indices.getRows() * 3, 1, false);
8787

8888
vpColVector cX(3);

0 commit comments

Comments
 (0)