Adding new HAL-accelerated MODE_SGBM_3WAY

New mode is approximately 2-3 times faster than MODE_SGBM
with minimal degradation in quality and uses universal
HAL intrinsics. A performance test was added. The accuracy
test was updated to support the new mode.
This commit is contained in:
sbokov
2015-07-07 23:23:51 +03:00
parent ff1687d378
commit aea4157340
5 changed files with 854 additions and 47 deletions

View File

@@ -1555,7 +1555,8 @@ public:
enum
{
MODE_SGBM = 0,
MODE_HH = 1
MODE_HH = 1,
MODE_SGBM_3WAY = 2
};
CV_WRAP virtual int getPreFilterCap() const = 0;