write resulting image to SVMTest.png

This commit is contained in:
neingeist 2014-01-20 12:05:56 +01:00
parent 79ab60fab6
commit 58867f0ebf

View file

@ -67,7 +67,7 @@ int main()
circle( image, Point( (int) v[0], (int) v[1]), 6, Scalar(0, 0, 128), thickness, lineType); circle( image, Point( (int) v[0], (int) v[1]), 6, Scalar(0, 0, 128), thickness, lineType);
} }
imwrite("result.png", image); // save the image imwrite("SVMTest.png", image); // save the image
imshow("SVM Non-Linear Example", image); // show it to the user imshow("SVM Non-Linear Example", image); // show it to the user
waitKey(0); waitKey(0);