Skip to content

Commit

Permalink
removing extra semicolon
Browse files Browse the repository at this point in the history
Tyler Williamson committed Mar 15, 2019
1 parent 1211045 commit 6a8f780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/libfacedetectcnn-example.cpp
Original file line number Diff line number Diff line change
@@ -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++)
{

0 comments on commit 6a8f780

Please sign in to comment.