Release version 1.3 documentation

This commit is contained in:
Bradlee Speice
2012-07-23 13:00:32 -04:00
parent 295c31692c
commit cf50da75fb
71 changed files with 445 additions and 4417 deletions

View File

@ -34,7 +34,7 @@
<td style="padding-left: 0.5em;">
<div id="projectname">libcvautomation
&#160;<span id="projectnumber">1.2</span>
&#160;<span id="projectnumber">1.3</span>
</div>
</td>
@ -105,51 +105,54 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
<a name="l00017"></a>00017 <span class="preprocessor">#ifndef LIBCVAUTOMATION_H</span>
<a name="l00018"></a>00018 <span class="preprocessor"></span><span class="preprocessor">#define LIBCVAUTOMATION_H</span>
<a name="l00019"></a>00019 <span class="preprocessor"></span>
<a name="l00020"></a>00020 <span class="preprocessor">#define LIBCVAUTOMATION_VERSION &quot;1.2&quot;</span>
<a name="l00020"></a>00020 <span class="preprocessor">#define LIBCVAUTOMATION_VERSION &quot;1.3&quot;</span>
<a name="l00021"></a>00021 <span class="preprocessor"></span><span class="preprocessor">#define LIBCVAUTOMATION_BUGREPORT &quot;bspeice@uncc.edu&quot;</span>
<a name="l00022"></a>00022 <span class="preprocessor"></span>
<a name="l00023"></a>00023 <span class="comment">/* C includes */</span>
<a name="l00024"></a>00024 <span class="preprocessor">#include &lt;stdio.h&gt;</span>
<a name="l00025"></a>00025 <span class="preprocessor">#include &lt;string.h&gt;</span>
<a name="l00026"></a>00026
<a name="l00027"></a>00027 <span class="comment">/* OpenCV2 includes - some filenames are different</span>
<a name="l00028"></a>00028 <span class="comment"> * from the OpenCV1 counterparts */</span>
<a name="l00029"></a>00029 <span class="preprocessor">#include &lt;opencv2/core/core_c.h&gt;</span>
<a name="l00030"></a>00030 <span class="preprocessor">#include &lt;opencv2/highgui/highgui_c.h&gt;</span>
<a name="l00031"></a>00031 <span class="preprocessor">#include &lt;opencv2/imgproc/imgproc_c.h&gt;</span>
<a name="l00032"></a>00032
<a name="l00033"></a>00033 <span class="comment">/* X11 includes */</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include &lt;X11/Xlib.h&gt;</span>
<a name="l00035"></a>00035 <span class="preprocessor">#include &lt;X11/Xutil.h&gt;</span>
<a name="l00036"></a>00036 <span class="preprocessor">#include &lt;X11/extensions/XTest.h&gt;</span>
<a name="l00037"></a>00037
<a name="l00038"></a>00038 <span class="comment">/* Define a basic structure to help us with using multiple-picture arguments</span>
<a name="l00039"></a>00039 <span class="comment"> * Yes, it&#39;s a hackish implementation, nobody said you had to use this one. */</span>
<a name="l00040"></a><a class="code" href="structcvautomationList.html">00040</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{
<a name="l00041"></a>00041 <span class="comment">/* Use one or the other of fileName or cvaImage - cvaImage takes priority */</span>
<a name="l00042"></a>00042 IplImage *cvaImage;
<a name="l00043"></a>00043 <span class="keywordtype">char</span> *fileName;
<a name="l00044"></a>00044
<a name="l00045"></a>00045 CvPoint resultPoint;
<a name="l00046"></a>00046 <span class="keywordtype">int</span> searchMethod;
<a name="l00047"></a>00047 <span class="keywordtype">int</span> tolerance;
<a name="l00048"></a>00048
<a name="l00049"></a>00049 } <a class="code" href="structcvautomationList.html" title="Implements a structure to build an array for methods like matchSubImage_a()">cvautomationList</a>;
<a name="l00050"></a>00050
<a name="l00051"></a>00051 <span class="comment">/* Define another basic structure for points */</span>
<a name="l00052"></a><a class="code" href="structcvaPoint.html">00052</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{
<a name="l00053"></a>00053 <span class="keywordtype">int</span> x, y;
<a name="l00054"></a>00054 } <a class="code" href="structcvaPoint.html" title="Very simple structure to standardize how points are used in libcvautomation.">cvaPoint</a>;
<a name="l00055"></a>00055
<a name="l00056"></a>00056 <span class="comment">/* Project component includes */</span>
<a name="l00057"></a>00057 <span class="comment">/* The includes come here to make sure all function prototypes have access</span>
<a name="l00058"></a>00058 <span class="comment"> * to the cvautomationList struct */</span>
<a name="l00059"></a>00059 <span class="preprocessor">#include &lt;<a class="code" href="libcvautomation-opencv_8h.html" title="The source code to access libcv from inside libcvautomation.">libcvautomation/libcvautomation-opencv.h</a>&gt;</span>
<a name="l00060"></a>00060 <span class="preprocessor">#include &lt;<a class="code" href="libcvautomation-xlib_8h.html" title="The source code to access Xlib from inside libcvautomation.">libcvautomation/libcvautomation-xlib.h</a>&gt;</span>
<a name="l00061"></a>00061 <span class="preprocessor">#include &lt;<a class="code" href="libcvautomation-xtest_8h.html" title="The source code to access the XTest extension inside libcvautomation.">libcvautomation/libcvautomation-xtest.h</a>&gt;</span>
<a name="l00062"></a>00062
<a name="l00063"></a>00063 <span class="preprocessor">#endif </span><span class="comment">/* LIBCVAUTOMATION_H */</span>
<a name="l00064"></a>00064 <span class="comment">/* Doxygen information */</span>
<a name="l00026"></a>00026 <span class="preprocessor">#include &lt;unistd.h&gt;</span>
<a name="l00027"></a>00027 <span class="preprocessor">#include &lt;limits.h&gt;</span>
<a name="l00028"></a>00028
<a name="l00029"></a>00029 <span class="comment">/* Autoconf logic to select the correct OpenCV version */</span>
<a name="l00030"></a>00030 <span class="comment">/* OpenCV2 includes - some filenames are different</span>
<a name="l00031"></a>00031 <span class="comment"> * from the OpenCV1 counterparts */</span>
<a name="l00032"></a>00032 <span class="preprocessor">#include &lt;opencv2/core/core_c.h&gt;</span>
<a name="l00033"></a>00033 <span class="preprocessor">#include &lt;opencv2/highgui/highgui_c.h&gt;</span>
<a name="l00034"></a>00034 <span class="preprocessor">#include &lt;opencv2/imgproc/imgproc_c.h&gt;</span>
<a name="l00035"></a>00035
<a name="l00036"></a>00036 <span class="comment">/* X11 includes */</span>
<a name="l00037"></a>00037 <span class="preprocessor">#include &lt;X11/Xlib.h&gt;</span>
<a name="l00038"></a>00038 <span class="preprocessor">#include &lt;X11/Xutil.h&gt;</span>
<a name="l00039"></a>00039 <span class="preprocessor">#include &lt;X11/extensions/XTest.h&gt;</span>
<a name="l00040"></a>00040
<a name="l00041"></a>00041 <span class="comment">/* Define another basic structure for points */</span>
<a name="l00042"></a><a class="code" href="structcvaPoint.html">00042</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{
<a name="l00043"></a>00043 <span class="keywordtype">int</span> x, y;
<a name="l00044"></a>00044 } <a class="code" href="structcvaPoint.html" title="Very simple structure to standardize how points are used in libcvautomation.">cvaPoint</a>;
<a name="l00045"></a>00045
<a name="l00046"></a>00046 <span class="comment">/* Define a basic structure to help us with using multiple-picture arguments</span>
<a name="l00047"></a>00047 <span class="comment"> * Yes, it&#39;s a hackish implementation, nobody said you had to use this one. */</span>
<a name="l00048"></a><a class="code" href="structcvautomationList.html">00048</a> <span class="keyword">typedef</span> <span class="keyword">struct </span>{
<a name="l00049"></a>00049 <span class="comment">/* Use one or the other of fileName or cvaImage - cvaImage takes priority */</span>
<a name="l00050"></a>00050 IplImage *cvaImage;
<a name="l00051"></a>00051 <span class="keywordtype">char</span> *fileName;
<a name="l00052"></a>00052
<a name="l00053"></a>00053 <a class="code" href="structcvaPoint.html" title="Very simple structure to standardize how points are used in libcvautomation.">cvaPoint</a> resultPoint;
<a name="l00054"></a>00054 <span class="keywordtype">int</span> searchMethod;
<a name="l00055"></a>00055 <span class="keywordtype">int</span> tolerance;
<a name="l00056"></a>00056
<a name="l00057"></a>00057 } <a class="code" href="structcvautomationList.html" title="Implements a structure to build an array for methods like matchSubImage_a()">cvautomationList</a>;
<a name="l00058"></a>00058
<a name="l00059"></a>00059 <span class="comment">/* Project component includes */</span>
<a name="l00060"></a>00060 <span class="comment">/* The includes come here to make sure all function prototypes have access</span>
<a name="l00061"></a>00061 <span class="comment"> * to the cvautomationList struct */</span>
<a name="l00062"></a>00062 <span class="preprocessor">#include &lt;<a class="code" href="libcvautomation-opencv_8h.html" title="The source code to access libcv from inside libcvautomation.">libcvautomation/libcvautomation-opencv.h</a>&gt;</span>
<a name="l00063"></a>00063 <span class="preprocessor">#include &lt;<a class="code" href="libcvautomation-xlib_8h.html" title="The source code to access Xlib from inside libcvautomation.">libcvautomation/libcvautomation-xlib.h</a>&gt;</span>
<a name="l00064"></a>00064 <span class="preprocessor">#include &lt;<a class="code" href="libcvautomation-xtest_8h.html" title="The source code to access the XTest extension inside libcvautomation.">libcvautomation/libcvautomation-xtest.h</a>&gt;</span>
<a name="l00065"></a>00065
<a name="l00066"></a>00066 <span class="preprocessor">#endif </span><span class="comment">/* LIBCVAUTOMATION_H */</span>
<a name="l00067"></a>00067 <span class="comment">/* Doxygen information */</span>
</pre></div></div><!-- contents -->
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
@ -168,7 +171,7 @@ var searchBox = new SearchBox("searchBox", "search",false,'Search');
<hr class="footer"/><address class="footer"><small>
Generated on Wed Jul 18 2012 14:10:15 for libcvautomation by &#160;<a href="http://www.doxygen.org/index.html">
Generated on Mon Jul 23 2012 12:58:25 for libcvautomation by &#160;<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.7.6.1
</small></address>