From 9c2efd6cbdacc416f289561a7efb0633e3d9378f Mon Sep 17 00:00:00 2001 From: Ilya Lysenkov Date: Mon, 30 May 2011 09:02:17 +0000 Subject: [PATCH] Fixed #797. --- samples/cpp/convexhull.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/cpp/convexhull.cpp b/samples/cpp/convexhull.cpp index c588289d73..418750b999 100644 --- a/samples/cpp/convexhull.cpp +++ b/samples/cpp/convexhull.cpp @@ -37,7 +37,7 @@ int main( int /*argc*/, char** /*argv*/ ) } vector hull; - convexHull(Mat(points), hull, CV_CLOCKWISE); + convexHull(Mat(points), hull, true); img = Scalar::all(0); for( i = 0; i < count; i++ )