Commit 3ac150bc authored by Muresan Mircea Paul's avatar Muresan Mircea Paul

changed the pragmas to be compatible with build bot

Update README.md
parent 01d8c7b4
......@@ -51,3 +51,5 @@ $ cmake -D OPENCV_EXTRA_MODULES_PATH=<opencv_contrib>/modules -D BUILD_opencv_re
21. **opencv_xobjdetect**: Integral Channel Features Detector Framework.
22. **opencv_xphoto**: Additional photo processing algorithms: Color balance / Denoising / Inpainting.
23. **opencv_stereo**: Stereo Correspondence done with different descriptors: Census / CS-Census / MCT / BRIEF / MV / RT.
......@@ -39,7 +39,6 @@
// the use of this software, even if advised of the possibility of such damage.
//
//M*/
#pragma once
#ifndef __OPENCV_STEREO_PRECOMP_H__
#define __OPENCV_STEREO_PRECOMP_H__
......
......@@ -337,7 +337,6 @@ namespace cv
// initialize sums
int tsum = 0;
#pragma region sume_partiale
{
for (d = 0; d < ndisp; d++)
sad[d] = (int)(hsad0[d - ndisp*dy0] * (wsz2 + 2 - dy0));
......@@ -350,9 +349,7 @@ namespace cv
for (y = -wsz2 - 1; y < wsz2; y++)
tsum += htext[y];
}
#pragma endregion sume_partiale pentru SAD
// finally, start the real processing
#pragma region SAD
{
for (y = 0; y < height; y++)
{
......@@ -403,7 +400,6 @@ namespace cv
}
}
}
#pragma endregion SAD
}
}
......
......@@ -51,6 +51,7 @@
*/
#include "precomp.hpp"
#include "opencv2\core\private.hpp"
#include <limits.h>
namespace cv
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment