Merge pull request #3306 from huangqinjin:fix

pull/3309/head
Alexander Alekhin 3 years ago
commit 07daac3e2f
  1. 4
      modules/ximgproc/src/edge_drawing.cpp

@ -5603,8 +5603,8 @@ int EdgeDrawingImpl::inverse(double** TB, double** InvB, int N)
void EdgeDrawingImpl::DeallocateMatrix(double** m, int noRows)
{
for (int i = 0; i < noRows; i++)
delete m[i];
delete m;
delete[] m[i];
delete[] m;
}
void EdgeDrawingImpl::AperB_T(double** A_, double** B_, double** _res, int _righA, int _colA, int _righB, int _colB)

Loading…
Cancel
Save