diff --git a/modules/optflow/src/sparse_matching_gpc.cpp b/modules/optflow/src/sparse_matching_gpc.cpp index d7b920d14..46cfede69 100644 --- a/modules/optflow/src/sparse_matching_gpc.cpp +++ b/modules/optflow/src/sparse_matching_gpc.cpp @@ -278,7 +278,7 @@ bool ocl_getAllDCTDescriptorsForImage( const Mat *imgCh, std::vector< GPCPatchDe (int)globSize[0], (int)globSize[1], (int)patchRadius ) .run( 2, globSize, 0, true ) == false ) return false; - Mat cpuOut = out.getMat( 0 ); + Mat cpuOut = out.getMat( ACCESS_READ ); for ( int i = 0; i + 2 * patchRadius < sz.height; ++i ) for ( int j = 0; j + 2 * patchRadius < sz.width; ++j ) descr.push_back( *cpuOut.ptr< GPCPatchDescriptor >( i * globSize[1] + j ) );