From 6a8f7808b80ca16cd54288475da08fb6b13ff34e Mon Sep 17 00:00:00 2001 From: Tyler Williamson Date: Fri, 15 Mar 2019 14:37:27 -0500 Subject: [PATCH] removing extra semicolon --- example/libfacedetectcnn-example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/libfacedetectcnn-example.cpp b/example/libfacedetectcnn-example.cpp index a3f7705..bd19340 100644 --- a/example/libfacedetectcnn-example.cpp +++ b/example/libfacedetectcnn-example.cpp @@ -80,7 +80,7 @@ int main(int argc, char* argv[]) pResults = facedetect_cnn(pBuffer, (unsigned char*)(image.ptr(0)), image.cols, image.rows, (int)image.step); printf("%d faces detected.\n", (pResults ? *pResults : 0)); - Mat result_cnn = image.clone();; + Mat result_cnn = image.clone(); //print the detection results for(int i = 0; i < (pResults ? *pResults : 0); i++) {