Hi mitchms,
Thanks for your compliments! =)
Regarding the “Property Sheet Properties” window, I believe that’s a setting you can change in the touchlib config.xml settings. I don’t know off the top of my head which setting it is.
Regarding “mywindow,” that window is the touchlib window you can use to recapture the background by pressing “b.” It can be disabled by commenting out the lines:
cvNamedWindow( “mywindow”, CV_WINDOW_AUTOSIZE );
and
cvDestroyWindow( “mywindow” );
in the main loop of the source code.
Lastly, regarding the CMD window, that shows up because I’m printing out the usage instructions. You can remove them by commenting out the printf statements in the source.
I hope that helps!