1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

Update window_gtk.cpp

Update miniflann.cpp

Update test_stereomatching.cpp
This commit is contained in:
Suleyman TURKMEN
2017-09-03 03:37:30 +03:00
parent 62c6656130
commit ee6aacee9c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -553,7 +553,7 @@ static void createIndicesDists(OutputArray _indices, OutputArray _dists,
if( !dists.isContinuous() || dists.type() != dtype ||
dists.rows != rows || dists.cols < minCols || dists.cols > maxCols )
{
if( !indices.isContinuous() )
if( !_dists.isContinuous() )
_dists.release();
_dists.create( rows, minCols, dtype );
dists = _dists.getMat();