@@ -435,13 +435,13 @@ CV_EXPORTS void LUT(const GpuMat& src, const Mat& lut, GpuMat& dst, Stream& stre
435
435
CV_EXPORTS void merge (const GpuMat* src, size_t n, GpuMat& dst, Stream& stream = Stream::Null());
436
436
437
437
// ! makes multi-channel array out of several single-channel arrays
438
- CV_EXPORTS void merge (const vector<GpuMat>& src, GpuMat& dst, Stream& stream = Stream::Null());
438
+ CV_EXPORTS void merge (const std:: vector<GpuMat>& src, GpuMat& dst, Stream& stream = Stream::Null());
439
439
440
440
// ! copies each plane of a multi-channel array to a dedicated array
441
441
CV_EXPORTS void split (const GpuMat& src, GpuMat* dst, Stream& stream = Stream::Null());
442
442
443
443
// ! copies each plane of a multi-channel array to a dedicated array
444
- CV_EXPORTS void split (const GpuMat& src, vector<GpuMat>& dst, Stream& stream = Stream::Null());
444
+ CV_EXPORTS void split (const GpuMat& src, std:: vector<GpuMat>& dst, Stream& stream = Stream::Null());
445
445
446
446
// ! computes magnitude of complex (x(i).re, x(i).im) vector
447
447
// ! supports only CV_32FC2 type
@@ -1268,9 +1268,9 @@ class CV_EXPORTS DisparityBilateralFilter
1268
1268
struct CV_EXPORTS HOGConfidence
1269
1269
{
1270
1270
double scale;
1271
- vector<Point> locations;
1272
- vector<double > confidences;
1273
- vector<double > part_scores[4 ];
1271
+ std:: vector<Point> locations;
1272
+ std:: vector<double > confidences;
1273
+ std:: vector<double > part_scores[4 ];
1274
1274
};
1275
1275
1276
1276
struct CV_EXPORTS HOGDescriptor
@@ -1288,27 +1288,27 @@ struct CV_EXPORTS HOGDescriptor
1288
1288
size_t getDescriptorSize () const ;
1289
1289
size_t getBlockHistogramSize () const ;
1290
1290
1291
- void setSVMDetector (const vector<float >& detector);
1291
+ void setSVMDetector (const std:: vector<float >& detector);
1292
1292
1293
- static vector<float > getDefaultPeopleDetector ();
1294
- static vector<float > getPeopleDetector48x96 ();
1295
- static vector<float > getPeopleDetector64x128 ();
1293
+ static std:: vector<float > getDefaultPeopleDetector ();
1294
+ static std:: vector<float > getPeopleDetector48x96 ();
1295
+ static std:: vector<float > getPeopleDetector64x128 ();
1296
1296
1297
- void detect (const GpuMat& img, vector<Point>& found_locations,
1297
+ void detect (const GpuMat& img, std:: vector<Point>& found_locations,
1298
1298
double hit_threshold=0 , Size win_stride=Size(),
1299
1299
Size padding=Size());
1300
1300
1301
- void detectMultiScale (const GpuMat& img, vector<Rect>& found_locations,
1301
+ void detectMultiScale (const GpuMat& img, std:: vector<Rect>& found_locations,
1302
1302
double hit_threshold=0 , Size win_stride=Size(),
1303
1303
Size padding=Size(), double scale0=1.05,
1304
1304
int group_threshold=2);
1305
1305
1306
- void computeConfidence (const GpuMat& img, vector<Point>& hits, double hit_threshold,
1307
- Size win_stride, Size padding, vector<Point>& locations, vector<double >& confidences);
1306
+ void computeConfidence (const GpuMat& img, std:: vector<Point>& hits, double hit_threshold,
1307
+ Size win_stride, Size padding, std:: vector<Point>& locations, std:: vector<double >& confidences);
1308
1308
1309
- void computeConfidenceMultiScale (const GpuMat& img, vector<Rect>& found_locations,
1309
+ void computeConfidenceMultiScale (const GpuMat& img, std:: vector<Rect>& found_locations,
1310
1310
double hit_threshold, Size win_stride, Size padding,
1311
- vector<HOGConfidence> &conf_out, int group_threshold);
1311
+ std:: vector<HOGConfidence> &conf_out, int group_threshold);
1312
1312
1313
1313
void getDescriptors (const GpuMat& img, Size win_stride,
1314
1314
GpuMat& descriptors,
@@ -1838,11 +1838,11 @@ class CV_EXPORTS PyrLKOpticalFlow
1838
1838
1839
1839
private:
1840
1840
GpuMat uPyr_[2 ];
1841
- vector<GpuMat> prevPyr_;
1842
- vector<GpuMat> nextPyr_;
1841
+ std:: vector<GpuMat> prevPyr_;
1842
+ std:: vector<GpuMat> nextPyr_;
1843
1843
GpuMat vPyr_[2 ];
1844
- vector<GpuMat> buf_;
1845
- vector<GpuMat> unused;
1844
+ std:: vector<GpuMat> buf_;
1845
+ std:: vector<GpuMat> unused;
1846
1846
bool isDeviceArch11_;
1847
1847
};
1848
1848
0 commit comments