svo_edgelet icon indicating copy to clipboard operation
svo_edgelet copied to clipboard

support opencv3 version

Open Geo-fortune opened this issue 4 years ago • 0 comments

  1. 用cv::cvarrToMat函数完成cvMat * 到Mat的转换
  2. 修改"CSV" 为"cv::Formatter::FMT_CSV"
  3. static CV_IMPLEMENT_QSORT( icvSortDistances, int, CV_LT ) 函数替换为: static void icvSortDistances( int *array, size_t total, int /unused/ ) { std::sort( &array[0], &array[total] ); }

Geo-fortune avatar Mar 20 '20 06:03 Geo-fortune