1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

switched to Input/Output Array in Color Processing

This commit is contained in:
Vladislav Vinogradov
2013-04-29 18:01:57 +04:00
parent 6d1ec452fc
commit 9eea9835ab
9 changed files with 674 additions and 423 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ int main(int argc, const char* argv[])
Canny(src, mask, 100, 200, 3);
Mat dst_cpu;
cvtColor(mask, dst_cpu, COLOR_GRAY2BGR);
cv::cvtColor(mask, dst_cpu, COLOR_GRAY2BGR);
Mat dst_gpu = dst_cpu.clone();
vector<Vec4i> lines_cpu;