Skip to content

Commit

Permalink
Fixed #3, #4
Browse files Browse the repository at this point in the history
  • Loading branch information
tanchinluh committed Dec 2, 2023
1 parent 84c2aff commit 4a58c1f
Show file tree
Hide file tree
Showing 315 changed files with 4,991 additions and 3,439 deletions.
30 changes: 20 additions & 10 deletions help/en_US/Analytic Geometry/plot3dot.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,26 @@
<refsection>
<title>Parameters</title>
<variablelist>
<varlistentry><term>x :</term>
<listitem><para> x data</para></listitem></varlistentry>
<varlistentry><term>y :</term>
<listitem><para> y data</para></listitem></varlistentry>
<varlistentry><term>z :</term>
<listitem><para> z data</para></listitem></varlistentry>
<varlistentry><term>mark_foreground :</term>
<listitem><para> marker color</para></listitem></varlistentry>
<varlistentry><term>mark_style :</term>
<listitem><para> marker style</para></listitem></varlistentry>
<varlistentry>
<term>x :</term>
<listitem><para> x data</para></listitem>
</varlistentry>
<varlistentry>
<term>y :</term>
<listitem><para> y data</para></listitem>
</varlistentry>
<varlistentry>
<term>z :</term>
<listitem><para> z data</para></listitem>
</varlistentry>
<varlistentry>
<term>mark_foreground :</term>
<listitem><para> marker color</para></listitem>
</varlistentry>
<varlistentry>
<term>mark_style :</term>
<listitem><para> marker style</para></listitem>
</varlistentry>
</variablelist>
</refsection>

Expand Down
2 changes: 1 addition & 1 deletion help/en_US/Camera Handling/camclose.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ camclose(n);
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="camclose">camclose</link></member>
Expand Down
2 changes: 1 addition & 1 deletion help/en_US/Camera Handling/camcloseall.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ camcloseall();
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="camclose">camclose</link></member>
Expand Down
2 changes: 1 addition & 1 deletion help/en_US/Camera Handling/camlistopened.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ camcloseall()
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="camclose">camclose</link></member>
Expand Down
2 changes: 1 addition & 1 deletion help/en_US/Camera Handling/camopen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ camcloseall();
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="camclose">camclose</link></member>
Expand Down
2 changes: 1 addition & 1 deletion help/en_US/Camera Handling/camread.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ camcloseall();
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="camclose">camclose</link></member>
Expand Down
6 changes: 3 additions & 3 deletions help/en_US/Deep Learning/dnn_forward.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@ This function is used to run forward pass to compute output of layer with name l
<refsection>
<title>Examples</title>
<programlisting role="example"><![CDATA[
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
S = imread(fullfile(dnn_path,'3.jpg'));
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
S = imread(dnn_path + '3.jpg');
imshow(S);
out = dnn_forward(net,~S,[28,28]);
[maxV,maxI]=max(out);
Expand Down
7 changes: 4 additions & 3 deletions help/en_US/Deep Learning/dnn_getparam.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@ This function is used to retrieve the layer's parameters (filter coefficients)
<programlisting role="example"><![CDATA[
// Initialize
dnn_unloadallmodels
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
// Read Image
S = imread(fullfile(dnn_path,'3.jpg'));
S = imread(dnn_path + '3.jpg');
// Forward Pass
para1 = dnn_getparam(net,"conv2d/Conv2D");
Expand Down
8 changes: 4 additions & 4 deletions help/en_US/Deep Learning/dnn_readmodel.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</varlistentry>
<varlistentry>
<term>modelinfo :</term>
<listitem><para> MOdel info (Caffe - &gt; .prototxt file. TF -&gt; .pbtxt file).</para></listitem>
<listitem><para> Model info (Caffe - &gt; .prototxt file. TF -&gt; .pbtxt file).</para></listitem>
</varlistentry>
<varlistentry>
<term>modeltype :</term>
Expand All @@ -63,9 +63,9 @@ This function is used for loading DNN model and used in Scilab for inference sys
<refsection>
<title>Examples</title>
<programlisting role="example"><![CDATA[
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
S = imread(fullfile(dnn_path,'3.jpg'));
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
S = imread(dnn_path + '3.jpg');
imshow(S);
out = dnn_forward(net,~S,[28,28]);
[maxV,maxI]=max(out);
Expand Down
7 changes: 4 additions & 3 deletions help/en_US/Deep Learning/dnn_showfeature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ This function is used to visualize the DNN feature maps
<programlisting role="example"><![CDATA[
// Initialize
dnn_unloadallmodels
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
// Read Image
S = imread(fullfile(dnn_path,'3.jpg'));
S = imread(dnn_path + '3.jpg');
// Forward Pass
out1 = dnn_forward(net,~S,[28,28],"conv2d/Conv2D");
Expand Down
7 changes: 4 additions & 3 deletions help/en_US/Deep Learning/dnn_showparam.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ This function is used to visualize the DNN parameters (filter) in spatial domain
<programlisting role="example"><![CDATA[
// Initialize
dnn_unloadallmodels
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
// Read Image
S = imread(fullfile(dnn_path,'3.jpg'));
S = imread(dnn_path + '3.jpg');
// Forward Pass
para1 = dnn_getparam(net,"conv2d/Conv2D");
Expand Down
7 changes: 4 additions & 3 deletions help/en_US/Deep Learning/dnn_showparamf2d.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ This function is used to visualize the DNN parameters (filter) in 2D frequency
<programlisting role="example"><![CDATA[
// Initialize
dnn_unloadallmodels
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
// Read Image
S = imread(fullfile(dnn_path,'3.jpg'));
S = imread(dnn_path + '3.jpg');
// Forward Pass
para1 = dnn_getparam(net,"conv2d/Conv2D");
Expand Down
7 changes: 4 additions & 3 deletions help/en_US/Deep Learning/dnn_showparamf3d.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,12 @@ This function is used to visualize the DNN parameters (filter) in 3D frequency
<programlisting role="example"><![CDATA[
// Initialize
dnn_unloadallmodels
dnn_path = fullfile(getIPCVpath(),'images','dnn');
net = dnn_readmodel(fullfile(dnn_path,'lenet5.pb'),'','tensorflow');
dnn_path = fullpath(getIPCVpath() + '/images/dnn/');
net = dnn_readmodel(dnn_path + 'lenet5.pb','','tensorflow');
// Read Image
S = imread(fullfile(dnn_path,'3.jpg'));
S = imread(dnn_path + '3.jpg');
// Forward Pass
para1 = dnn_getparam(net,"conv2d/Conv2D");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,34 @@
<refsection>
<title>Parameters</title>
<variablelist>
<varlistentry><term>fobj1 :</term>
<listitem><para> First feature object</para></listitem></varlistentry>
<varlistentry><term>fobj2 :</term>
<listitem><para> Second feature object</para></listitem></varlistentry>
<varlistentry><term>m :</term>
<listitem><para> Matching matrix</para></listitem></varlistentry>
<varlistentry><term>n :</term>
<listitem><para> Number of best matches to returned</para></listitem></varlistentry>
<varlistentry><term>fout1 :</term>
<listitem><para> First best feature object</para></listitem></varlistentry>
<varlistentry><term>fout2 :</term>
<listitem><para> Second best feature object</para></listitem></varlistentry>
<varlistentry><term>mout :</term>
<listitem><para> New matching matrix corresponding to the best matches</para></listitem></varlistentry>
<varlistentry>
<term>fobj1 :</term>
<listitem><para> First feature object</para></listitem>
</varlistentry>
<varlistentry>
<term>fobj2 :</term>
<listitem><para> Second feature object</para></listitem>
</varlistentry>
<varlistentry>
<term>m :</term>
<listitem><para> Matching matrix</para></listitem>
</varlistentry>
<varlistentry>
<term>n :</term>
<listitem><para> Number of best matches to returned</para></listitem>
</varlistentry>
<varlistentry>
<term>fout1 :</term>
<listitem><para> First best feature object</para></listitem>
</varlistentry>
<varlistentry>
<term>fout2 :</term>
<listitem><para> Second best feature object</para></listitem>
</varlistentry>
<varlistentry>
<term>mout :</term>
<listitem><para> New matching matrix corresponding to the best matches</para></listitem>
</varlistentry>
</variablelist>
</refsection>

Expand Down Expand Up @@ -82,7 +96,7 @@ imshow(SS);
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="imdrawmatches">imdrawmatches</link></member>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,34 +32,62 @@
<refsection>
<title>Parameters</title>
<variablelist>
<varlistentry><term>im :</term>
<listitem><para> Input image</para></listitem></varlistentry>
<varlistentry><term>thresh :</term>
<listitem><para> FAST/AGAST detection threshold score. Default value is 30.</para></listitem></varlistentry>
<varlistentry><term>octaves :</term>
<listitem><para> detection octaves. Use 0 to do single scale. Default value is 3.</para></listitem></varlistentry>
<varlistentry><term>patternScale :</term>
<listitem><para> apply this scale to the pattern used for sampling the neighbourhood of a keypoint. Default value is 1.0.</para></listitem></varlistentry>
<varlistentry><term>fobj :</term>
<listitem><para> Features object contains following fields -</para></listitem></varlistentry>
<varlistentry><term>type :</term>
<listitem><para> Type of features</para></listitem></varlistentry>
<varlistentry><term>n :</term>
<listitem><para> Numbers of detected features</para></listitem></varlistentry>
<varlistentry><term>x :</term>
<listitem><para> Coordinates of the detected features - X</para></listitem></varlistentry>
<varlistentry><term>y :</term>
<listitem><para> Coordinates of the detected features - Y</para></listitem></varlistentry>
<varlistentry><term>size :</term>
<listitem><para> Size of detected features</para></listitem></varlistentry>
<varlistentry><term>angle :</term>
<listitem><para> keypoint orientation</para></listitem></varlistentry>
<varlistentry><term>response :</term>
<listitem><para> The response by which the most strong keypoints have been selected.</para></listitem></varlistentry>
<varlistentry><term>octave :</term>
<listitem><para> pyramid octave in which the keypoint has been detected</para></listitem></varlistentry>
<varlistentry><term>class_id :</term>
<listitem><para> object id</para></listitem></varlistentry>
<varlistentry>
<term>im :</term>
<listitem><para> Input image</para></listitem>
</varlistentry>
<varlistentry>
<term>thresh :</term>
<listitem><para> FAST/AGAST detection threshold score. Default value is 30.</para></listitem>
</varlistentry>
<varlistentry>
<term>octaves :</term>
<listitem><para> detection octaves. Use 0 to do single scale. Default value is 3.</para></listitem>
</varlistentry>
<varlistentry>
<term>patternScale :</term>
<listitem><para> apply this scale to the pattern used for sampling the neighbourhood of a keypoint. Default value is 1.0.</para></listitem>
</varlistentry>
<varlistentry>
<term>fobj :</term>
<listitem><para> Features object contains following fields -</para></listitem>
</varlistentry>
<varlistentry>
<term>type :</term>
<listitem><para> Type of features</para></listitem>
</varlistentry>
<varlistentry>
<term>n :</term>
<listitem><para> Numbers of detected features</para></listitem>
</varlistentry>
<varlistentry>
<term>x :</term>
<listitem><para> Coordinates of the detected features - X</para></listitem>
</varlistentry>
<varlistentry>
<term>y :</term>
<listitem><para> Coordinates of the detected features - Y</para></listitem>
</varlistentry>
<varlistentry>
<term>size :</term>
<listitem><para> Size of detected features</para></listitem>
</varlistentry>
<varlistentry>
<term>angle :</term>
<listitem><para> keypoint orientation</para></listitem>
</varlistentry>
<varlistentry>
<term>response :</term>
<listitem><para> The response by which the most strong keypoints have been selected.</para></listitem>
</varlistentry>
<varlistentry>
<term>octave :</term>
<listitem><para> pyramid octave in which the keypoint has been detected</para></listitem>
</varlistentry>
<varlistentry>
<term>class_id :</term>
<listitem><para> object id</para></listitem>
</varlistentry>
</variablelist>
</refsection>

Expand All @@ -82,7 +110,7 @@ imshow(S); plotfeature(fobj);
]]></programlisting>
</refsection>

<refsection>
<refsection role="see also">
<title>See also</title>
<simplelist type="inline">
<member><link linkend="imdetect_FAST">imdetect_FAST</link></member>
Expand Down
Loading

0 comments on commit 4a58c1f

Please sign in to comment.