diff options
Diffstat (limited to '2.3-1/help/en_US')
95 files changed, 7157 insertions, 0 deletions
diff --git a/2.3-1/help/en_US/AVRADCSetup.xml b/2.3-1/help/en_US/AVRADCSetup.xml new file mode 100644 index 00000000..a0abf030 --- /dev/null +++ b/2.3-1/help/en_US/AVRADCSetup.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRADCSetup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRADCSetup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRADCSetup</refname> + <refpurpose>Function to initialise ADC of AVR</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + AVRADCSetup(uint8 prescaler, uint8 adc_ref) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>prescaler:</term> + <listitem><para> prescaler to be used for generating ADC clock (0-7)</para></listitem></varlistentry> + <varlistentry><term>adc_ref :</term> + <listitem><para> reference voltage to be used for ADC conversion</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function initialises ADc of AVR with given parameters. 'prescaler' is needed for deciding ADC clock. ADC clock should be between 50KHz and 200KHz and it given as (MCU clock/2^prescaler). Select appropriate prescaler depending on MCU clock. 'adc_ref' selects one of the available reference voltage sources available. + </para> + <para> +The adc_ref can take the following values- +<itemizedlist> +<listitem><para>0 -> Voltage on VREF pin</para></listitem> +<listitem><para>1 -> Voltage on AVCC pin</para></listitem> +<listitem><para>2 -> Internal 2.56 reference voltage</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRADCSetup(128,0) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRReadADC">AVRReadADC</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRDigitalIn.xml b/2.3-1/help/en_US/AVRDigitalIn.xml new file mode 100644 index 00000000..ef87407c --- /dev/null +++ b/2.3-1/help/en_US/AVRDigitalIn.xml @@ -0,0 +1,79 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRDigitalIn.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRDigitalIn" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRDigitalIn</refname> + <refpurpose>Function to get state (high\low) of a digital input pin on AVR</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + state=AVRDigitalIn(port,pin) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>port :</term> + <listitem><para> port of microcontroller to be used</para></listitem></varlistentry> + <varlistentry><term>pin :</term> + <listitem><para> pin of port (mentioned above) to be used</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each AVR microcontroller has pins which can be configured as digital +inputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port as +digital input. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +pinA0 = AVRDigitalIn(1,0) //To read state on pin 0 of port A + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRDigitalOut">AVRDigitalSetup</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRDigitalOut.xml b/2.3-1/help/en_US/AVRDigitalOut.xml new file mode 100644 index 00000000..0ce8197f --- /dev/null +++ b/2.3-1/help/en_US/AVRDigitalOut.xml @@ -0,0 +1,82 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRDigitalOut.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRDigitalOut" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRDigitalOut</refname> + <refpurpose>Function to change state (high\low) of a digital output pin on AVR</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + AVRDigitalOut(port,pin,state) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>port :</term> + <listitem><para> port of microcontroller to be used</para></listitem></varlistentry> + <varlistentry><term>pin :</term> + <listitem><para> pin of port (mentioned above) to be used</para></listitem></varlistentry> + <varlistentry><term>state :</term> + <listitem><para> state to be outputed on pin (HIGH\LOW)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each AVR microcontroller has pins which can be configured as digital +outputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port as +digital output. Also, desired output state must be specified as +'HIGH' or 'LOW'. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRDigitalOut('A',0,HIGH) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRDigitalIn">AVRDigitalIn</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRDigitalPortSetup.xml b/2.3-1/help/en_US/AVRDigitalPortSetup.xml new file mode 100644 index 00000000..8b7b15dc --- /dev/null +++ b/2.3-1/help/en_US/AVRDigitalPortSetup.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRDigitalPortSetup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRDigitalPortSetup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRDigitalPortSetup</refname> + <refpurpose>Function to decide direction of port on AVR</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + AVRDigitalPortSetup(port,direction) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>port :</term> + <listitem><para> port of microcontroller to be used(1 for PORTA, 2 for PORTB,...)</para></listitem></varlistentry> + <varlistentry><term>direction :</term> + <listitem><para> direction to be set for pin (0 for INPUT, 1 for OUTPUT)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each AVR microcontroller has pins which can be configured as digital +outputs/inputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port to be +used as digital output/input. Also, desired direction must be specified as +'INPUT' or 'OUTPUT'. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRDigitalPortSetup(1,0); //This function will make PortA as input port + + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRDigitalIn">AVRDigitalOut</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRDigitalSetup.xml b/2.3-1/help/en_US/AVRDigitalSetup.xml new file mode 100644 index 00000000..a2285730 --- /dev/null +++ b/2.3-1/help/en_US/AVRDigitalSetup.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRDigitalSetup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRDigitalSetup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRDigitalSetup</refname> + <refpurpose>Function to decide direction of a digital pin on AVR</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + AVRDigitalSetup(port,pin,direction) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>port :</term> + <listitem><para> port of microcontroller to be used</para></listitem></varlistentry> + <varlistentry><term>pin :</term> + <listitem><para> pin of port (mentioned above) to be used</para></listitem></varlistentry> + <varlistentry><term>direction :</term> + <listitem><para> direction to be set for pin (INPUT\OUTPUT)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each AVR microcontroller has pins which can be configured as digital +outputs/inputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port to be +used as digital output/input. Also, desired direction must be specified as +'INPUT' or 'OUTPUT'. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRDigitalSetup('A',0,OUTPUT) + + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRDigitalIn">AVRDigitalOut</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRGetTimerValue.xml b/2.3-1/help/en_US/AVRGetTimerValue.xml new file mode 100644 index 00000000..f639c60d --- /dev/null +++ b/2.3-1/help/en_US/AVRGetTimerValue.xml @@ -0,0 +1,73 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRGetTimerValue.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRGetTimerValue" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRGetTimerValue</refname> + <refpurpose>Function to get timer count</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>timer :</term> + <listitem><para> timer whose current count is to be returned</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function returns the count value of a desired timer.By knowing the count value certain interrupt action can be taken. + </para> + <para> +Timer can take the following values +<itemizedlist> +<listitem><para>0 -> for timer0</para></listitem> +<listitem><para>1 -> for timer1</para></listitem> +<listitem><para>2 -> for timer2</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRGetTimerValue(0); //returns present count of the TCNT0 counter + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRTimerSetup">AVRTimerSetup</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRPWM0SetDuty.xml b/2.3-1/help/en_US/AVRPWM0SetDuty.xml new file mode 100644 index 00000000..a3f26812 --- /dev/null +++ b/2.3-1/help/en_US/AVRPWM0SetDuty.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRPWM0SetDuty.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRPWM0SetDuty" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRPWM0SetDuty</refname> + <refpurpose>Function to Set Duty cycle of PWM Output generated by Timer0 at OC0 pin.</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>duty :</term> + <listitem><para> It holds an integer value from 0 to 100 which sets the percentage of time for which signal is active.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each Micro controller has PWM output pins which can generate varying voltage +from 0V-5V.In this function by varying the duty cycle, varying voltage can be produced. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRPWM0SetDuty(50); //Produces 2.5V at OC0 pin +AVRPWM0SetDuty(0); //Produces 0V at OC0 pin + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRPWM0Setup">AVRPWM0Setup</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRPWM0Setup.xml b/2.3-1/help/en_US/AVRPWM0Setup.xml new file mode 100644 index 00000000..f72f2582 --- /dev/null +++ b/2.3-1/help/en_US/AVRPWM0Setup.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRPWM0Setup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRPWM0Setup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRPWM0Setup</refname> + <refpurpose>Function to Setup OC0 pin for required PWM mode</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>waveform_mode:</term> + <listitem><para> integer, from 0 to 2</para></listitem></varlistentry> + <varlistentry><term>output_mode:</term> + <listitem><para> integer, from 0 to 1 (or 2) depending on the waveform_mode</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Every Micro controller has PWM pins which can generate varying voltages +from 0V-5V.This function helps to use OC0 pin to produce required +output waveform by setting the waveform mode and otput mode. + </para> + <para> +waveform_mode can take values- +<itemizedlist> +<listitem><para>0 -> for Phase correct PWM Mode</para></listitem> +<listitem><para>1 -> for Fast PWM Mode</para></listitem> +<listitem><para>2 -> for CTC Mode</para></listitem> +</itemizedlist> + </para> + <para> +output_mode can take values- +<itemizedlist> +For Phase correct PWM Mode: +<listitem><para>0 for Clear OC0 on compare match when up-counting. Set OC0 on compare match when down-counting.</para></listitem> +<listitem><para>1 for Set OC0 on compare match when up-counting. Clear OC0 on compare match when down-counting.</para></listitem> +For Fast PWM Mode: +<listitem><para>0 for non-inverted output i.e Clear OC0 on compare match, set OC0 at BOTTOM.</para></listitem> +<listitem><para>1 for inverted output i.e Set OC0 on compare match, clear OC0 at BOTTOM.</para></listitem> +For CTC Mode: +<listitem><para>0 to Clear OC0 on compare match</para></listitem> +<listitem><para>1 to Set OC0 on compare match</para></listitem> +<listitem><para>2 to toggle OC0 on compare match</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRPWM0Setup(2,0); //This function will select CTC waveform mode and will clear OC0 on compare match + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRPWM0SetDuty">AVRPWM0SetDuty</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRPWM1SetDuty.xml b/2.3-1/help/en_US/AVRPWM1SetDuty.xml new file mode 100644 index 00000000..83230ea8 --- /dev/null +++ b/2.3-1/help/en_US/AVRPWM1SetDuty.xml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRPWM1SetDuty.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRPWM1SetDuty" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRPWM1SetDuty</refname> + <refpurpose>Function to Set Duty cycle of PWM Output generated by Timer1 at OC1A or OC1B pin.</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>ouput_pin:</term> + <listitem><para> integer, 0 (for OC1A) or 1 (for OC1B)</para></listitem></varlistentry> + <varlistentry><term>duty:</term> + <listitem><para> It holds an integer value from 0 to 100 which sets the percentage of time for which signal is active.</para></listitem></varlistentry> + <varlistentry><term>Top_Value:</term> + <listitem><para> It holds an integer value from 0 to 65535.This value sets the Top value of the counter TCNT1 i.e ICR.(for more info refer datasheet)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each Micro controller has PWM output pins which can generate varying voltage +from 0V-5V.This function Sets the duty cycle of output PWM signal.Also this function +decides the Top Vale of TCNT1 and the output pin to output PWM signal. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +Example +AVRPWM1SetDuty(0,50,40000); //This function will produce PWM signal of 50% duty cycle on OC1A pin and TCNT1 will reset at 40000 instead at 65535. +</para> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRPWM1Setup">AVRPWM1Setup</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRPWM1Setup.xml b/2.3-1/help/en_US/AVRPWM1Setup.xml new file mode 100644 index 00000000..14984130 --- /dev/null +++ b/2.3-1/help/en_US/AVRPWM1Setup.xml @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRPWM1Setup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRPWM1Setup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRPWM1Setup</refname> + <refpurpose>Function to Setup OC1A or OC1B pin for required PWM mode</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>waveform_mode:</term> + <listitem><para> integer, from 0 to 2</para></listitem></varlistentry> + <varlistentry><term>output_mode:</term> + <listitem><para> integer, from 0 to 1 (or 2) depending on the waveform_mode</para></listitem></varlistentry> + <varlistentry><term>output_pin:</term> + <listitem><para> 0 (for OC1A) or 1 for (OC1B)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Every Micro controller has PWM pins which can generate varying voltages +from 0V-5V.This function helps to use OC1A or OC1B pin to produces required +output waveform by setting the waveform mode and otput mode. + </para> + <para> +waveform_mode can take values- +<itemizedlist> +<listitem><para>0 -> for Phase correct PWM Mode</para></listitem> +<listitem><para>1 -> for Fast PWM Mode</para></listitem> +<listitem><para>2 -> for CTC Mode</para></listitem> +</itemizedlist> + </para> + <para> +output_mode can take values- +<itemizedlist> +For Phase correct PWM Mode: +<listitem><para>0 for Clear OC1A or OC1B on compare match when up-counting. Set OC1A or OC1B on compare match when down-counting.</para></listitem> +<listitem><para>1 for Set OC1A or OC1B on compare match when up-counting. Clear OC1A or OC1B on compare match when down-counting.</para></listitem> +For Fast PWM Mode: +<listitem><para>0 for non-inverted output i.e Clear OC1A or OC1B on compare match, set OC1A or OC1B at BOTTOM.</para></listitem> +<listitem><para>1 for inverted output i.e Set OC1A or OC1B on compare match, clear OC1A or OC1B at BOTTOM.</para></listitem> +For CTC Mode: +<listitem><para>0 to Clear OC1A or OC1B on compare match</para></listitem> +<listitem><para>1 to Set OC1A or OC1B on compare match</para></listitem> +<listitem><para>2 to toggle OC1A or OC1B on compare match</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +Example +AVRPWM1Setup(2,0,0); //This function will select CTC mode and will clear OC1A or OC1B +on compare match.Also as defined the output will be produced at +0C1A pin. +</para> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRPWM1SetDuty">AVRPWM1SetDuty</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRPWM2SetDuty.xml b/2.3-1/help/en_US/AVRPWM2SetDuty.xml new file mode 100644 index 00000000..d44f0f71 --- /dev/null +++ b/2.3-1/help/en_US/AVRPWM2SetDuty.xml @@ -0,0 +1,65 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRPWM2SetDuty.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRPWM2SetDuty" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRPWM2SetDuty</refname> + <refpurpose>Function to Set Duty cycle of PWM Output generated by Timer2 at OC2 pin.</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>duty :</term> + <listitem><para> It holds an integer value from 0 to 100 which sets the percentage of time for which signal is active.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Each Micro controller has PWM output pins which can generate varying voltage +from 0V-5V.In this function by varying the duty cycle, varying voltage can be +produced. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +Example +AVRPWM2SetDuty(50); //Produces 2.5V at OC2 pin +AVRPWM2SetDuty(0); //Produces 0V at OC2 pin + </para> + <para> +</para> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRPWM2Setup">AVRPWM2Setup</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRPWM2Setup.xml b/2.3-1/help/en_US/AVRPWM2Setup.xml new file mode 100644 index 00000000..fe802522 --- /dev/null +++ b/2.3-1/help/en_US/AVRPWM2Setup.xml @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRPWM2Setup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRPWM2Setup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRPWM2Setup</refname> + <refpurpose>Function to Setup OC2 pin for required PWM mode</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>waveform_mode:</term> + <listitem><para> integer, from 0 to 2</para></listitem></varlistentry> + <varlistentry><term>output_mode:</term> + <listitem><para> integer, from 0 to 1 (or 2) depending on the waveform_mode</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +Every Micro controller has PWM pins which can generate varying voltages +from 0V-5V.This function helps to use OC2 pin to produces required +output waveform by setting the waveform mode and otput mode. + </para> + <para> +waveform_mode can take values- +<itemizedlist> +<listitem><para>0 -> for Phase correct PWM Mode</para></listitem> +<listitem><para>1 -> for Fast PWM Mode</para></listitem> +<listitem><para>2 -> for CTC Mode</para></listitem> +</itemizedlist> + </para> + <para> +output_mode can take values- +<itemizedlist> +For Phase correct PWM Mode: +<listitem><para>0 for Clear OC2 on compare match when up-counting. Set OC2 on compare match when down-counting.</para></listitem> +<listitem><para>1 for Set OC2 on compare match when up-counting. Clear OC2 on compare match when down-counting.</para></listitem> +For Fast PWM Mode: +<listitem><para>0 for non-inverted output i.e Clear OC2 on compare match, set OC2 at BOTTOM.</para></listitem> +<listitem><para>1 for inverted output i.e Set OC2 on compare match, clear OC2 at BOTTOM.</para></listitem> +For CTC Mode: +<listitem><para>0 to Clear OC2 on compare match</para></listitem> +<listitem><para>1 to Set OC2 on compare match</para></listitem> +<listitem><para>2 to toggle OC2 on compare match</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +Example +AVRPWM2Setup(2,0); //This function will select CTC waveform mode and will clear OC2 on +compare match +</para> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRPWM2SetDuty">AVRPWM2SetDuty</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRReadADC.xml b/2.3-1/help/en_US/AVRReadADC.xml new file mode 100644 index 00000000..abdcad9a --- /dev/null +++ b/2.3-1/help/en_US/AVRReadADC.xml @@ -0,0 +1,71 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRReadADC.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRReadADC" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRReadADC</refname> + <refpurpose>Function to get voltage on analog pin on AVR</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + u8AVRReadADCs(channel) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>channel :</term> + <listitem><para> Select which channel is to be read. Values from 0-7 select one of the pins ADC0-ADC7. For other possible channel values refer datasheet</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function returns digital value for present on adc pins. 'channel' +selects which of the ADC0-ADC7 is to be used for reading analog value. +Apart from reading just ADC0-ADC7 other it can also read differential +voltages between some pins. For channel values for those options, please +refer datasheet. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +adc_result = u8AVRReadADC(0) //Read ADC0 + ]]></programlisting> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRSleep.xml b/2.3-1/help/en_US/AVRSleep.xml new file mode 100644 index 00000000..3ece53b8 --- /dev/null +++ b/2.3-1/help/en_US/AVRSleep.xml @@ -0,0 +1,56 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRSleep.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRSleep" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRSleep</refname> + <refpurpose>Function to pause the execution for the given time.</refpurpose> + </refnamediv> + + +<refsection> + <title>Description</title> + <para> +This function causes the execution to stop for the given amount of time. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRSleep(5000); + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Jorawar Singh</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRTimerSetup.xml b/2.3-1/help/en_US/AVRTimerSetup.xml new file mode 100644 index 00000000..420e6767 --- /dev/null +++ b/2.3-1/help/en_US/AVRTimerSetup.xml @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRTimerSetup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRTimerSetup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRTimerSetup</refname> + <refpurpose>Function to setup Timers in ATmega16</refpurpose> + </refnamediv> + + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRGetTimerValues">AVRGetTimerValues</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRUARTReceive.xml b/2.3-1/help/en_US/AVRUARTReceive.xml new file mode 100644 index 00000000..84f9510e --- /dev/null +++ b/2.3-1/help/en_US/AVRUARTReceive.xml @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRUARTReceive.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRUARTReceive" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRUARTReceive</refname> + <refpurpose>Function to Receive Char value send to ATmega16 using UART or USART.</refpurpose> + </refnamediv> + + +<refsection> + <title>Description</title> + <para> +This function Receives Char as 8 bit value.This value is stored in UDR at receiving +end. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +state = AVRUARTReceive(); //This function will Receive char and return the entire value + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRUARTSetup">AVRUARTSetup</link></member> + <member><link linkend="AVRUARTTransmit">AVRUARTTransmit</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRUARTSetup.xml b/2.3-1/help/en_US/AVRUARTSetup.xml new file mode 100644 index 00000000..043e2652 --- /dev/null +++ b/2.3-1/help/en_US/AVRUARTSetup.xml @@ -0,0 +1,90 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRUARTSetup.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRUARTSetup" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRUARTSetup</refname> + <refpurpose>Function to Setup Serial Communication i.e UART or USART in ATmega16.</refpurpose> + </refnamediv> + + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>mode :</term> + <listitem><para> integer, from 0 to 2</para></listitem></varlistentry> + <varlistentry><term>baudrate :</term> + <listitem><para> Enter one of the following available baudrates (2400 , 4800 , 9600 , 14400 , 19200 , 28800 , 38400 , 57600 , 768000 , 115200 , 230400 , 250000 , 1000000)</para></listitem></varlistentry> + <varlistentry><term>stopbits :</term> + <listitem><para> integer, (0 for one stopbit) or (1 for two stopbits)</para></listitem></varlistentry> + <varlistentry><term>parity :</term> + <listitem><para> integer, from 0 to 2</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function Setup the UART or USART for Serial Communicaion between ATmega16 +and different micro controllers or between ATmega16 and Computer. + </para> + <para> +mode can take values: +<itemizedlist> +<listitem><para>0 for Asynchronous Normal mode</para></listitem> +<listitem><para>1 for Asynchronous Double Speed mode</para></listitem> +<listitem><para>2 for Synchronous mode</para></listitem> +</itemizedlist> + </para> + <para> +parity can take values: +<itemizedlist> +<listitem><para>0 for parity disabled</para></listitem> +<listitem><para>1 for even parity</para></listitem> +<listitem><para>2 for odd parity</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRUARTSetup(0,9600,0,0); //This function will enable UART Communication for ATmega16 +with 9600 as baudrate,one stop bit and parity disabled + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRUARTTransmit">AVRUARTTransmit</link></member> + <member><link linkend="AVRUARTReceive">AVRUARTReceive</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/AVRUARTTransmit.xml b/2.3-1/help/en_US/AVRUARTTransmit.xml new file mode 100644 index 00000000..e30e374b --- /dev/null +++ b/2.3-1/help/en_US/AVRUARTTransmit.xml @@ -0,0 +1,59 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from AVRUARTTransmit.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="AVRUARTTransmit" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>AVRUARTTransmit</refname> + <refpurpose>Function to Transmit data using UART or USART.</refpurpose> + </refnamediv> + + +<refsection> + <title>Description</title> + <para> +This function Tranmits data over UART or USART.The data to be transmitted can +be a Char , String , Unsigned Int, Signed Int. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR. + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +AVRUARTTransmit("This is example"); //This function will transmit the entered string. + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="AVRUARTSetup">AVRUARTSetup</link></member> + <member><link linkend="AVRUARTReceive">AVRUARTReceive</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Ashish Kamble</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_AdaptiveThreshold.xml b/2.3-1/help/en_US/CV_AdaptiveThreshold.xml new file mode 100644 index 00000000..1483442a --- /dev/null +++ b/2.3-1/help/en_US/CV_AdaptiveThreshold.xml @@ -0,0 +1,86 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_AdaptiveThreshold.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_AdaptiveThreshold" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_AdaptiveThreshold</refname> + <refpurpose>function to adaptively threshold input image</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + dst = CV_AdaptiveThreshold(srcimg,max_value,adaptive_method,thresh_type,blk_size,c) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>src :</term> + <listitem><para> Source 8-bit single-channel image.</para></listitem></varlistentry> + <varlistentry><term>max_value :</term> + <listitem><para> Non-zero value assigned to the pixels for which the condition is satisfied. See the details below.</para></listitem></varlistentry> + <varlistentry><term>adaptive_method :</term> + <listitem><para> Adaptive thresholding algorithm to use, ADAPTIVE_THRESH_MEAN_C or ADAPTIVE_THRESH_GAUSSIAN_C .</para></listitem></varlistentry> + <varlistentry><term>thresh_type :</term> + <listitem><para> Thresholding type that must be either THRESH_BINARY or THRESH_BINARY_INV .</para></listitem></varlistentry> + <varlistentry><term>blockSize :</term> + <listitem><para> Size of a pixel neighborhood that is used to calculate a threshold value for the pixel: 3, 5, 7, and so on.</para></listitem></varlistentry> + <varlistentry><term>C :</term> + <listitem><para> Constant subtracted from the mean or weighted mean.Normally, it is positive but may be zero or negative as well.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for adaptively threshold given image + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_AdaptiveThreshold(img,255,"ADAPTIVE_THRESH_MEAN_C", ... +"THRESH_BINARY",5,0) + + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CreateImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_Blur.xml b/2.3-1/help/en_US/CV_Blur.xml new file mode 100644 index 00000000..228b3107 --- /dev/null +++ b/2.3-1/help/en_US/CV_Blur.xml @@ -0,0 +1,92 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_Blur.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_Blur" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_Blur</refname> + <refpurpose>function to blur image using normalised box filter</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + dst = CV_Blur(srcimg,ksize_width,ksize_height,anchor_x,anchor_y,border_type) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg :</term> + <listitem><para> Source image.</para></listitem></varlistentry> + <varlistentry><term>ksize_width, ksize_height :</term> + <listitem><para> blurring kernel size.</para></listitem></varlistentry> + <varlistentry><term>anchor_x, anchor_y :</term> + <listitem><para> x,y coordinates of anchor point</para></listitem></varlistentry> + <varlistentry><term>border_type :</term> + <listitem><para> border mode used to extrapolate pixels outside of the image.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for blurring image using normalised box +filter. Image can be of any depth and have any no of channels. + </para> + <para> +border_type can be : +<itemizedlist> +<listitem>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</listitem> +<listitem>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</listitem> +<listitem>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</listitem> +<listitem>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</listitem> +<listitem>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_Blur(img,3,3,-1,-1,"BORDER_CONSTANT") + + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_Threshold, CV_CvtColor</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_Canny.xml b/2.3-1/help/en_US/CV_Canny.xml new file mode 100644 index 00000000..daf7f55b --- /dev/null +++ b/2.3-1/help/en_US/CV_Canny.xml @@ -0,0 +1,88 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_Canny.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_Canny" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_Canny</refname> + <refpurpose>Finds edges in image using Canny algorithm</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + edges = CV_Canny(srcimg,threhold1,threshold2,aperture_size,L2gradient) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg :</term> + <listitem><para> single-channel 8-bit input image.</para></listitem></varlistentry> + <varlistentry><term>threshold1 :</term> + <listitem><para> first threshold for the hysteresis procedure.</para></listitem></varlistentry> + <varlistentry><term>threshold2 :</term> + <listitem><para> second threshold for the hysteresis procedure.</para></listitem></varlistentry> + <varlistentry><term>aperture_size :</term> + <listitem><para> aperture size for the Sobel() operator.</para></listitem></varlistentry> + <varlistentry><term>L2gradient :</term> + <listitem><para> a flag, indicating whether a more accurate</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for finding edes in single channel 8 bit +image. 'aperture_size' and 'L2gradient' are optionals. By default, +aperture_size is 3 and L2gradient is false. + </para> + <para> +For L2gradient: L_2 norm =sqrt{(dI/dx)^2 + (dI/dy)^2} should be used to calculate the image gradient magnitude (L2gradient=1 ), or whether the default L_1 norm =|dI/dx|+|dI/dy| is enough (L2gradient=0). + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_CvtColor(img,"CV_RGB2GRAY"); +edge = CV_Canny(dst,50,100,3,0); + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CvtColor</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_CornerHarris.xml b/2.3-1/help/en_US/CV_CornerHarris.xml new file mode 100644 index 00000000..e9b94260 --- /dev/null +++ b/2.3-1/help/en_US/CV_CornerHarris.xml @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_CornerHarris.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_CornerHarris" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_CornerHarris</refname> + <refpurpose>Finds edges in image using Harris algorithm</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + edges = CV_CornerHarris(srcimg,blocksize,ksize,k,border_type) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg:</term> + <listitem><para> Input single-channel 8-bit or floating-point image.</para></listitem></varlistentry> + <varlistentry><term>blockSize:</term> + <listitem><para> Neighborhood size</para></listitem></varlistentry> + <varlistentry><term>ksize:</term> + <listitem><para> Aperture parameter for the Sobel() operator.</para></listitem></varlistentry> + <varlistentry><term>k:</term> + <listitem><para> Harris detector free parameter.</para></listitem></varlistentry> + <varlistentry><term>border_type:</term> + <listitem><para> border mode used to extrapolate pixels outside of the image.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +The function runs the Harris edge detector on the image. For each pixel (x, y) it calculates a 2 * 2 gradient covariance matrix M(x,y) over a blockSize * blockSize neighborhood. Then, it computes the following characteristic: dst(x,y) = det(M(x,y)) - k .tr(M(x,y))^2. Corners in the image can be found as the local maxima of this response map. + </para> + <para> +border_type can be : +<itemizedlist> +<listitem>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</listitem> +<listitem>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</listitem> +<listitem>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</listitem> +<listitem>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</listitem> +<listitem>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_CvtColor(img,"CV_RGB2GRAY"); +edge = CV_CornerHarris(dst,5,3,1,"BORDER_REPLICATE"); + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CvtColor</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_CreateImage.xml b/2.3-1/help/en_US/CV_CreateImage.xml new file mode 100644 index 00000000..45fde568 --- /dev/null +++ b/2.3-1/help/en_US/CV_CreateImage.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_CreateImage.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_CreateImage" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_CreateImage</refname> + <refpurpose>function to create an image object of given size and type</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_CreateImage(image_size,bit_depth,no_of_channels) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>image_size:</term> + <listitem><para> width and height of image</para></listitem></varlistentry> + <varlistentry><term>bit_depth:</term> + <listitem><para> Bit depth of image elements</para></listitem></varlistentry> + <varlistentry><term>no_of_channels:</term> + <listitem><para> no of channels per pixels</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used to create opencv image object. For more info about bit depth and channels,please refer to OpenCV documentation + </para> + <para> +This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +CV_CreateImage([320 240], "IPL_DEPTH_8U", 1) //to create image of the size 320*240 pixels with 8 bit unsigned each pixels and gray scale image + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_LoadImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_CvtColor.xml b/2.3-1/help/en_US/CV_CvtColor.xml new file mode 100644 index 00000000..f1f25e0e --- /dev/null +++ b/2.3-1/help/en_US/CV_CvtColor.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_CvtColor.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_CvtColor" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_CvtColor</refname> + <refpurpose>function to convert image from one colorspace to other colorspace</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_CvtColor(srcimg,code) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg:</term> + <listitem><para> source image to be converted</para></listitem></varlistentry> + <varlistentry><term>dstimg:</term> + <listitem><para> destination image in which to store converted image</para></listitem></varlistentry> + <varlistentry><term>code:</term> + <listitem><para> String specifying conversion type. Same as defined in OpenCV. for eg. 'CV_RGB2GRAY' for conversion from RGB image to grayscale image</para></listitem></varlistentry> + <varlistentry><term>dstCn:</term> + <listitem><para> no of channels in destination image (0 by default)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for converting an image to other colorspace. +Refer OpenCV documentation for list of available conversions + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_CvtColor(img,'CV_RGB2GRAY') + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CreateImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_Dilate.xml b/2.3-1/help/en_US/CV_Dilate.xml new file mode 100644 index 00000000..d01b3ab7 --- /dev/null +++ b/2.3-1/help/en_US/CV_Dilate.xml @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_Dilate.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_Dilate" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_Dilate</refname> + <refpurpose>dilates an image by using a specific structuring element.</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + cvtimg = CV_Dilate(srcimg,dilation_type,dilation_size,[iterations,border_type,border_value]) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>src :</term> + <listitem><para> input image; the number of channels can be arbitrary, but the depth should be one of CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.</para></listitem></varlistentry> + <varlistentry><term>dilation_type :</term> + <listitem><para> can be one of MORPH_RECT, MORPH_CROSS,MORPH_ELLIPSE</para></listitem></varlistentry> + <varlistentry><term>dilation_size :</term> + <listitem><para> size of kernel to be used for erosion. Must be odd</para></listitem></varlistentry> + <varlistentry><term>iterations :</term> + <listitem><para> number of times erosion is applied.</para></listitem></varlistentry> + <varlistentry><term>border_type :</term> + <listitem><para> pixel extrapolation method.</para></listitem></varlistentry> + <varlistentry><term>border_value :</term> + <listitem><para> border value in case of a constant border</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for eroding an image. Kernel used for erosion is decided by type and size. Size must always be odd. Anchor pint of kernel is always center of kernel. Input arguements 'iterations(1), border_type(BORDER_CONSTANT) and border_value' are optionals. Whwn not specified, default values as as mentioned in brackets. + </para> + <para> +border_type can be : +<itemizedlist> +<listitem><para> BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh </para></listitem> +<listitem><para> BORDER_REFLECT: fedcba|abcdefgh|hgfedcb </para></listitem> +<listitem><para> BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba </para></listitem> +<listitem><para> BORDER_WRAP: cdefgh|abcdefgh|abcdefg </para></listitem> +<listitem><para> BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii </para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_Erode(img,"MORPH_RECT",3,1,"BORDER_CONSTANT",0); + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_Erode</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_DistanceTransform.xml b/2.3-1/help/en_US/CV_DistanceTransform.xml new file mode 100644 index 00000000..07929993 --- /dev/null +++ b/2.3-1/help/en_US/CV_DistanceTransform.xml @@ -0,0 +1,78 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_DistanceTransform.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_DistanceTransform" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_DistanceTransform</refname> + <refpurpose>function to calculate distance to closest zero pixels for each pixel</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + dst = CV_DistanceTransform(srcimg,distance_type,mask_size) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg :</term> + <listitem><para> Source 8-bit single-channel image.</para></listitem></varlistentry> + <varlistentry><term>distance_type :</term> + <listitem><para> Type of distance. It can be CV_DIST_L1, CV_DIST_L2 , or CV_DIST_C</para></listitem></varlistentry> + <varlistentry><term>mask_size :</term> + <listitem><para> Size of the distance transform mask</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used to calculate distance to closest zero pixel for each pixel of the source image. Output is 32 bit floatingpoint, single channel image of the same size as that of source image. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_DistanceTransform(img,"CV_DIST_L1",3) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CreateImage CV_CvtColor</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_Erode.xml b/2.3-1/help/en_US/CV_Erode.xml new file mode 100644 index 00000000..103d4899 --- /dev/null +++ b/2.3-1/help/en_US/CV_Erode.xml @@ -0,0 +1,93 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_Erode.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_Erode" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_Erode</refname> + <refpurpose>Erodes an image by using a specific structuring element.</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + cvtimg = CV_Erode(srcimg,erosion_type,erosion_size,[iterations,border_type,border_value]) + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>src :</term> + <listitem><para> input image; the number of channels can be arbitrary, but the depth should be one of CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.</para></listitem></varlistentry> + <varlistentry><term>erosion_type :</term> + <listitem><para> can be one of : MORPH_RECT, MORPH_CROSS, MORPH_ELLIPSE</para></listitem></varlistentry> + <varlistentry><term>erosion_size :</term> + <listitem><para> size of kernel to be used for erosion. Must be odd</para></listitem></varlistentry> + <varlistentry><term>iterations :</term> + <listitem><para> number of times erosion is applied.</para></listitem></varlistentry> + <varlistentry><term>border_type :</term> + <listitem><para> pixel extrapolation method.</para></listitem></varlistentry> + <varlistentry><term>border_value :</term> + <listitem><para> border value in case of a constant border</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for eroding an image. Kernel used for erosion is decided by type and size. Size must always be odd. Anchor pint of kernel is always center of kernel. Input arguements 'iterations(1), border_type(BORDER_CONSTANT) and border_value' are optionals. Whwn not specified, default values as as mentioned in brackets. + </para> + <para> +border_type can be : +<itemizedlist> +<listitem>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</listitem> +<listitem>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</listitem> +<listitem>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</listitem> +<listitem>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</listitem> +<listitem>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_Erode(img,"MORPH_RECT",3,1,"BORDER_CONSTANT",0); + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_Dilate</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_GaussianBlur.xml b/2.3-1/help/en_US/CV_GaussianBlur.xml new file mode 100644 index 00000000..88a8f33c --- /dev/null +++ b/2.3-1/help/en_US/CV_GaussianBlur.xml @@ -0,0 +1,95 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_GaussianBlur.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_GaussianBlur" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_GaussianBlur</refname> + <refpurpose>function to blur image using gaussian filter</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + cvtimg = CV_GaussianBlur(srcimg,ksize_width,ksize_height,sigma_x,sigma_y,border_type) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg :</term> + <listitem><para> Source image.</para></listitem></varlistentry> + <varlistentry><term>ksize_width, ksize_height :</term> + <listitem><para> blurring kernel size. must be odd.</para></listitem></varlistentry> + <varlistentry><term>sigmaX :</term> + <listitem><para> Gaussian kernel standard deviation in X direction.</para></listitem></varlistentry> + <varlistentry><term>sigmaY :</term> + <listitem><para> Gaussian kernel standard deviation in Y direction;</para></listitem></varlistentry> + <varlistentry><term>border_type :</term> + <listitem><para> border mode used to extrapolate pixels outside of the image.</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for blurring image using gaussian filter. Image can be of any depth and have any no of channels. + </para> + <para> +For sigmaX and sigmaY : if sigmaY is zero, it is set to be equal to sigmaX, if both sigmas are zeros, they are computed from ksize.width and ksize.height , respectively. + </para> + <para> +border_type can be : +<itemizedlist> +<listitem>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</listitem> +<listitem>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</listitem> +<listitem>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</listitem> +<listitem>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</listitem> +<listitem>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_GaussianBlur(img,3,3,0,0,"BORDER_CONSTANT") + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_Blur, CV_CvtColor</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_GetImgSize.xml b/2.3-1/help/en_US/CV_GetImgSize.xml new file mode 100644 index 00000000..717c8086 --- /dev/null +++ b/2.3-1/help/en_US/CV_GetImgSize.xml @@ -0,0 +1,75 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_GetImgSize.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_GetImgSize" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_GetImgSize</refname> + <refpurpose>function to get size of the image (width*height)</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_GetImgSize(img) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>img:</term> + <listitem><para> image whose size is to be returned</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for retriving size information of the image. +It returs an array with first image element as width and second as height + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +size = CV_GetImgSize(img) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CreateImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_LoadImage.xml b/2.3-1/help/en_US/CV_LoadImage.xml new file mode 100644 index 00000000..70f55c82 --- /dev/null +++ b/2.3-1/help/en_US/CV_LoadImage.xml @@ -0,0 +1,83 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_LoadImage.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_LoadImage" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_LoadImage</refname> + <refpurpose>function to load an image object from given filename</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_LoadImage(filename,loadtype) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>filename:</term> + <listitem><para> name of file to be opened</para></listitem></varlistentry> + <varlistentry><term>loadtype:</term> + <listitem><para> desired load method</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for loading a previously stored image + </para> + <para> +loadtype can take the following values: +<itemizedlist> +<listitem><para> less than 0 -> image is loaded as is (with alpha channel)</para></listitem> +<listitem><para> 0 -> image is loaded as greyscale</para></listitem> +<listitem><para> greater than 0 -> 3 channel color image is loaded</para></listitem> +</itemizedlist> + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +CV_LoadImage('~/test.jpg',0) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_CreateImage">CV_CreateImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_MedianBlur.xml b/2.3-1/help/en_US/CV_MedianBlur.xml new file mode 100644 index 00000000..d10291ca --- /dev/null +++ b/2.3-1/help/en_US/CV_MedianBlur.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_MedianBlur.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_MedianBlur" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_MedianBlur</refname> + <refpurpose>function to blur image using median filter</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + cvtimg = CV_MedianBlur(srcimg,ksize) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg :</term> + <listitem><para> input 1-, 3-, or 4-channel image; when ksize is 3 or 5, the image depth should be CV_8U, CV_16U, or CV_32F, for larger aperture sizes, it can only be CV_8U.</para></listitem></varlistentry> + <varlistentry><term>ksize_width :</term> + <listitem><para> aperture linear size; it must be odd and greater than 1, for example: 3, 5, 7 ...</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for blurring image using median +filter. Image can be of any depth and have any no of channels. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_MedianBlur(img,3) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_GaussianBlur,">CV_Blur, CV_CvtColor</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_SaveImage.xml b/2.3-1/help/en_US/CV_SaveImage.xml new file mode 100644 index 00000000..9e73200f --- /dev/null +++ b/2.3-1/help/en_US/CV_SaveImage.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_SaveImage.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_SaveImage" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_SaveImage</refname> + <refpurpose>function to save an image object as a given filename</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_SaveImage(filename,img) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>filename:</term> + <listitem><para> name of file image to be saved as</para></listitem></varlistentry> + <varlistentry><term>img:</term> + <listitem><para> image to be saved</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for saving image. File format is detected +from file extension + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +CV_SaveImage('test1.png',img) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CreateImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_ShowImage.xml b/2.3-1/help/en_US/CV_ShowImage.xml new file mode 100644 index 00000000..e3f6e674 --- /dev/null +++ b/2.3-1/help/en_US/CV_ShowImage.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_ShowImage.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_ShowImage" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_ShowImage</refname> + <refpurpose>function to show an image</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_ShowImage(img) + CV_ShowImage(winname,img) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>winname:</term> + <listitem><para> name of window in which img is to be shown</para></listitem></varlistentry> + <varlistentry><term>img:</term> + <listitem><para> image to be shown already acquired (from file/camera)</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for showing images + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +CV_ShowImage(img) + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_CreateImage">CV_LoadImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_Threshold.xml b/2.3-1/help/en_US/CV_Threshold.xml new file mode 100644 index 00000000..0de0c145 --- /dev/null +++ b/2.3-1/help/en_US/CV_Threshold.xml @@ -0,0 +1,81 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_Threshold.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_Threshold" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_Threshold</refname> + <refpurpose>function to threshold input image</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + dst = CV_Threshold(srcimg,code,threshold,max_value,thresh_type) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>srcimg:</term> + <listitem><para> source image to be converted</para></listitem></varlistentry> + <varlistentry><term>threshold:</term> + <listitem><para> threshold value</para></listitem></varlistentry> + <varlistentry><term>max_value:</term> + <listitem><para> maximum value to be used with THRESH_BINARY and THRESH_BINARY_INV</para></listitem></varlistentry> + <varlistentry><term>thresh_type:</term> + <listitem><para> Type for threshold. It can one of the following: THRESH_BINARY, THRESH_BINARY_INV, THRESH_TRUNC, THRESH_TOZERO, THRESH_TOZERO_INV</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for converting an image to other colorspace. +Refer OpenCV documentation for list of available conversions + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +dst = CV_Threshold(img,100,255,'THRESH_BINARY') + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_CreateImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/CV_WaitKey.xml b/2.3-1/help/en_US/CV_WaitKey.xml new file mode 100644 index 00000000..9b527077 --- /dev/null +++ b/2.3-1/help/en_US/CV_WaitKey.xml @@ -0,0 +1,76 @@ +<?xml version="1.0" encoding="UTF-8"?> + +<!-- + * + * This help file was generated from CV_WaitKey.sci using help_from_sci(). + * + --> + +<refentry version="5.0-subset Scilab" xml:id="CV_WaitKey" xml:lang="en" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:ns3="http://www.w3.org/1999/xhtml" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:scilab="http://www.scilab.org" + xmlns:db="http://docbook.org/ns/docbook"> + + <refnamediv> + <refname>CV_WaitKey</refname> + <refpurpose>function similar to cvWaitKey</refpurpose> + </refnamediv> + + +<refsynopsisdiv> + <title>Calling Sequence</title> + <synopsis> + CV_WaitKey(delay) + + </synopsis> +</refsynopsisdiv> + +<refsection> + <title>Parameters</title> + <variablelist> + <varlistentry><term>delay:</term> + <listitem><para> waiting delay, if 0 then wait till keypress</para></listitem></varlistentry> + </variablelist> +</refsection> + +<refsection> + <title>Description</title> + <para> +This function can be used for inseting some delay. This function must +follow CV_ShowImage to display image. + </para> + <para> +This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV + </para> + <para> +</para> +</refsection> + +<refsection> + <title>Examples</title> + <programlisting role="example"><![CDATA[ +img = CV_LoadImage('~/test.jpg',0) +CV_ShowImage('',img) +CV_WaitKey(0); + ]]></programlisting> +</refsection> + +<refsection> + <title>See also</title> + <simplelist type="inline"> + <member><link linkend="CV_LoadImage">CV_ShowImage</link></member> + </simplelist> +</refsection> + +<refsection> + <title>Authors</title> + <simplelist type="vert"> + <member>Siddhesh Wani</member> + </simplelist> +</refsection> +</refentry> diff --git a/2.3-1/help/en_US/build_help.sce b/2.3-1/help/en_US/build_help.sce new file mode 100644 index 00000000..70653160 --- /dev/null +++ b/2.3-1/help/en_US/build_help.sce @@ -0,0 +1,3 @@ +// This file is released under the 3-clause BSD license. See COPYING-BSD. + +tbx_build_help(TOOLBOX_TITLE,get_absolute_file_path("build_help.sce")); diff --git a/2.3-1/help/en_US/master_help.xml b/2.3-1/help/en_US/master_help.xml new file mode 100644 index 00000000..00114559 --- /dev/null +++ b/2.3-1/help/en_US/master_help.xml @@ -0,0 +1,91 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE book [ +<!--Begin Entities--> +<!ENTITY a9b187f890a3dc0a131c78f91d88fffcf SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRADCSetup.xml"> +<!ENTITY a8349f4b66c6c427129eb7c646fc05b39 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRDigitalIn.xml"> +<!ENTITY a71620a73cb33bebfeb8d13899a026ec4 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRDigitalOut.xml"> +<!ENTITY a68c3144a45199cf3f8b3aad660160527 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRDigitalPortSetup.xml"> +<!ENTITY a607abb629b298800c47d5c68b6270150 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRDigitalSetup.xml"> +<!ENTITY a3e869ed60f4df86940495945c041bc0e SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRGetTimerValue.xml"> +<!ENTITY ad660ad06d66e41962fc3922b83d3223d SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRPWM0SetDuty.xml"> +<!ENTITY a656e4015b3a18f0f92613360c89a5126 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRPWM0Setup.xml"> +<!ENTITY a465fb895c612a56cdfa6d49a796b3ebc SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRPWM1SetDuty.xml"> +<!ENTITY a3923ebd6e61d3ea327ac0b38eea44729 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRPWM1Setup.xml"> +<!ENTITY ab21063dade8e81cc41c41b203fe770a7 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRPWM2SetDuty.xml"> +<!ENTITY a3d04d0133df424dc634f59cf5e37970f SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRPWM2Setup.xml"> +<!ENTITY ab987a9543f5085f2797390ef2005bb1b SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRReadADC.xml"> +<!ENTITY ae5acf96a8e7e377e4f915fb237495324 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRSleep.xml"> +<!ENTITY a10d52e3ccf17ba4549a5eb8f20fe4b64 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRTimerSetup.xml"> +<!ENTITY adb1b91db8538f4a6dc2059182de8c942 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRUARTReceive.xml"> +<!ENTITY a34cfa9a3b84af4efa7dfa7daa0e10ab4 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRUARTSetup.xml"> +<!ENTITY a9464ef2b6d5841f1edb9a18b22c04490 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/AVRUARTTransmit.xml"> +<!ENTITY a1bd531f91c338e939c157b0d1e06bf06 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_AdaptiveThreshold.xml"> +<!ENTITY a2c2b81ddbe44425373feedac0c24db71 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_Blur.xml"> +<!ENTITY a3ca4fafb273b3c4e61164de4ecf2e313 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_Canny.xml"> +<!ENTITY a4fd365473a6da804dc048b62d3fe681b SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_CornerHarris.xml"> +<!ENTITY a2dfffb4205d1f7d8d99dba84afa2d5b0 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_CreateImage.xml"> +<!ENTITY a255d8b16c2c27d874cb1a0dd1d1cf016 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_CvtColor.xml"> +<!ENTITY a48073a178223648546c3715285fafc64 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_Dilate.xml"> +<!ENTITY ac9861c98ff022c9027cec2004b205cb6 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_DistanceTransform.xml"> +<!ENTITY ab14b133a0d5508a44b4dc249b80d1d9b SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_Erode.xml"> +<!ENTITY afc3078d19fbe9afc1beb887f8e727ae2 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_GaussianBlur.xml"> +<!ENTITY a68b507c9c47bc04d8beedc0d02423953 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_GetImgSize.xml"> +<!ENTITY a6fa161fc578adc8b4b9683fea89cc93a SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_LoadImage.xml"> +<!ENTITY a0d920ecface4c20c8362c316f30f375b SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_MedianBlur.xml"> +<!ENTITY a8e0fd1bb3d635b95bfefb457784dba90 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_SaveImage.xml"> +<!ENTITY aec8420bd19e47fc7d4b1a968956bfe54 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_ShowImage.xml"> +<!ENTITY a89c6b4c01591aa15372e9a3b9ae162f9 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_Threshold.xml"> +<!ENTITY a1a6cdeaaa9224a83de904800de542e77 SYSTEM "/home/panda/.Scilab/scilab-5.5.2/atoms/scilab2c/2.3/help/en_US/CV_WaitKey.xml"> +<!--End Entities--> +]> +<book version="5.0-subset Scilab" xml:lang="en_US" + xmlns="http://docbook.org/ns/docbook" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:xi="http://www.w3.org/2001/XInclude" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:mml="http://www.w3.org/1998/Math/MathML" + xmlns:html="http://www.w3.org/1999/xhtml" + xmlns:db="http://docbook.org/ns/docbook"> + <info xml:id='scilab_2_c_converter_manual'> + <title>Scilab 2 C Converter</title> + </info> + +<part xml:id='section_473a2b9e79723ff76a7f243f85d2b6b8'> +<title>Scilab 2 C Converter</title> +&a9b187f890a3dc0a131c78f91d88fffcf; +&a8349f4b66c6c427129eb7c646fc05b39; +&a71620a73cb33bebfeb8d13899a026ec4; +&a68c3144a45199cf3f8b3aad660160527; +&a607abb629b298800c47d5c68b6270150; +&a3e869ed60f4df86940495945c041bc0e; +&ad660ad06d66e41962fc3922b83d3223d; +&a656e4015b3a18f0f92613360c89a5126; +&a465fb895c612a56cdfa6d49a796b3ebc; +&a3923ebd6e61d3ea327ac0b38eea44729; +&ab21063dade8e81cc41c41b203fe770a7; +&a3d04d0133df424dc634f59cf5e37970f; +&ab987a9543f5085f2797390ef2005bb1b; +&ae5acf96a8e7e377e4f915fb237495324; +&a10d52e3ccf17ba4549a5eb8f20fe4b64; +&adb1b91db8538f4a6dc2059182de8c942; +&a34cfa9a3b84af4efa7dfa7daa0e10ab4; +&a9464ef2b6d5841f1edb9a18b22c04490; +&a1bd531f91c338e939c157b0d1e06bf06; +&a2c2b81ddbe44425373feedac0c24db71; +&a3ca4fafb273b3c4e61164de4ecf2e313; +&a4fd365473a6da804dc048b62d3fe681b; +&a2dfffb4205d1f7d8d99dba84afa2d5b0; +&a255d8b16c2c27d874cb1a0dd1d1cf016; +&a48073a178223648546c3715285fafc64; +&ac9861c98ff022c9027cec2004b205cb6; +&ab14b133a0d5508a44b4dc249b80d1d9b; +&afc3078d19fbe9afc1beb887f8e727ae2; +&a68b507c9c47bc04d8beedc0d02423953; +&a6fa161fc578adc8b4b9683fea89cc93a; +&a0d920ecface4c20c8362c316f30f375b; +&a8e0fd1bb3d635b95bfefb457784dba90; +&aec8420bd19e47fc7d4b1a968956bfe54; +&a89c6b4c01591aa15372e9a3b9ae162f9; +&a1a6cdeaaa9224a83de904800de542e77; +</part> +</book> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRADCSetup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRADCSetup.html new file mode 100644 index 00000000..eb386253 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRADCSetup.html @@ -0,0 +1,88 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRADCSetup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html"><< Scilab 2 C Converter</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalIn.html">AVRDigitalIn >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRADCSetup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRADCSetup</h1> + <p class="refpurpose">Function to initialise ADC of AVR</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">AVRADCSetup</span><span class="default">(</span><span class="default">uint8</span> <span class="default">prescaler</span><span class="default">, </span><span class="default">uint8</span> <span class="default">adc_ref</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">prescaler:</span> + <dd><p class="para">prescaler to be used for generating ADC clock (0-7)</p></dd></dt> + <dt><span class="term">adc_ref :</span> + <dd><p class="para">reference voltage to be used for ADC conversion</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function initialises ADc of AVR with given parameters. 'prescaler' is needed for deciding ADC clock. ADC clock should be between 50KHz and 200KHz and it given as (MCU clock/2^prescaler). Select appropriate prescaler depending on MCU clock. 'adc_ref' selects one of the available reference voltage sources available.</p> + <p class="para">The adc_ref can take the following values- +<ul class="itemizedlist"><li><p class="para">0 -> Voltage on VREF pin</p></li> +<li><p class="para">1 -> Voltage on AVCC pin</p></li> +<li><p class="para">2 -> Internal 2.56 reference voltage</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRADCSetup</span><span class="scilabopenclose">(</span><span class="scilabnumber">128</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRReadADC.html" class="link">AVRReadADC</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li> + <li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html"><< Scilab 2 C Converter</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalIn.html">AVRDigitalIn >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalIn.html b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalIn.html new file mode 100644 index 00000000..3d396fbb --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalIn.html @@ -0,0 +1,88 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRDigitalIn</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRADCSetup.html"><< AVRADCSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalOut.html">AVRDigitalOut >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRDigitalIn</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRDigitalIn</h1> + <p class="refpurpose">Function to get state (high\low) of a digital input pin on AVR</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">state</span><span class="default">=</span><span class="functionid">AVRDigitalIn</span><span class="default">(</span><span class="default">port</span><span class="default">,</span><span class="default">pin</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">port :</span> + <dd><p class="para">port of microcontroller to be used</p></dd></dt> + <dt><span class="term">pin :</span> + <dd><p class="para">pin of port (mentioned above) to be used</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each AVR microcontroller has pins which can be configured as digital +inputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port as +digital input.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">pinA0</span> <span class="scilaboperator">=</span> <span class="scilabid">AVRDigitalIn</span><span class="scilabopenclose">(</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> <span class="scilabcomment">//To read state on pin 0 of port A</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRDigitalOut.html" class="link">AVRDigitalSetup</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li> + <li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRADCSetup.html"><< AVRADCSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalOut.html">AVRDigitalOut >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalOut.html b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalOut.html new file mode 100644 index 00000000..c320cba5 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalOut.html @@ -0,0 +1,91 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRDigitalOut</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalIn.html"><< AVRDigitalIn</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalPortSetup.html">AVRDigitalPortSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRDigitalOut</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRDigitalOut</h1> + <p class="refpurpose">Function to change state (high\low) of a digital output pin on AVR</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">AVRDigitalOut</span><span class="default">(</span><span class="default">port</span><span class="default">,</span><span class="default">pin</span><span class="default">,</span><span class="default">state</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">port :</span> + <dd><p class="para">port of microcontroller to be used</p></dd></dt> + <dt><span class="term">pin :</span> + <dd><p class="para">pin of port (mentioned above) to be used</p></dd></dt> + <dt><span class="term">state :</span> + <dd><p class="para">state to be outputed on pin (HIGH\LOW)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each AVR microcontroller has pins which can be configured as digital +outputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port as +digital output. Also, desired output state must be specified as +'HIGH' or 'LOW'.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRDigitalOut</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">A</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabdefault">,</span><span class="scilabid">HIGH</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRDigitalIn.html" class="link">AVRDigitalIn</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li> + <li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalIn.html"><< AVRDigitalIn</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalPortSetup.html">AVRDigitalPortSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalPortSetup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalPortSetup.html new file mode 100644 index 00000000..84a1749d --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalPortSetup.html @@ -0,0 +1,89 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRDigitalPortSetup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalOut.html"><< AVRDigitalOut</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalSetup.html">AVRDigitalSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRDigitalPortSetup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRDigitalPortSetup</h1> + <p class="refpurpose">Function to decide direction of port on AVR</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">AVRDigitalPortSetup</span><span class="default">(</span><span class="default">port</span><span class="default">,</span><span class="default">direction</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">port :</span> + <dd><p class="para">port of microcontroller to be used(1 for PORTA, 2 for PORTB,...)</p></dd></dt> + <dt><span class="term">direction :</span> + <dd><p class="para">direction to be set for pin (0 for INPUT, 1 for OUTPUT)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each AVR microcontroller has pins which can be configured as digital +outputs/inputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port to be +used as digital output/input. Also, desired direction must be specified as +'INPUT' or 'OUTPUT'.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRDigitalPortSetup</span><span class="scilabopenclose">(</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//This function will make PortA as input port</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRDigitalIn.html" class="link">AVRDigitalOut</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li> + <li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalOut.html"><< AVRDigitalOut</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRDigitalSetup.html">AVRDigitalSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalSetup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalSetup.html new file mode 100644 index 00000000..85f0a5a4 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRDigitalSetup.html @@ -0,0 +1,91 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRDigitalSetup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalPortSetup.html"><< AVRDigitalPortSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRGetTimerValue.html">AVRGetTimerValue >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRDigitalSetup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRDigitalSetup</h1> + <p class="refpurpose">Function to decide direction of a digital pin on AVR</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">AVRDigitalSetup</span><span class="default">(</span><span class="default">port</span><span class="default">,</span><span class="default">pin</span><span class="default">,</span><span class="default">direction</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">port :</span> + <dd><p class="para">port of microcontroller to be used</p></dd></dt> + <dt><span class="term">pin :</span> + <dd><p class="para">pin of port (mentioned above) to be used</p></dd></dt> + <dt><span class="term">direction :</span> + <dd><p class="para">direction to be set for pin (INPUT\OUTPUT)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each AVR microcontroller has pins which can be configured as digital +outputs/inputs. These are normally divided among some 'ports' (group of pins). +User has to select one of these port and which pin of that port to be +used as digital output/input. Also, desired direction must be specified as +'INPUT' or 'OUTPUT'.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRDigitalSetup</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">A</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabdefault">,</span><span class="scilabid">OUTPUT</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRDigitalIn.html" class="link">AVRDigitalOut</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li> + <li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalPortSetup.html"><< AVRDigitalPortSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRGetTimerValue.html">AVRGetTimerValue >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRGetTimerValue.html b/2.3-1/help/en_US/scilab_en_US_help/AVRGetTimerValue.html new file mode 100644 index 00000000..a213dc68 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRGetTimerValue.html @@ -0,0 +1,83 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRGetTimerValue</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalSetup.html"><< AVRDigitalSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM0SetDuty.html">AVRPWM0SetDuty >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRGetTimerValue</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRGetTimerValue</h1> + <p class="refpurpose">Function to get timer count</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">timer :</span> + <dd><p class="para">timer whose current count is to be returned</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function returns the count value of a desired timer.By knowing the count value certain interrupt action can be taken.</p> + <p class="para">Timer can take the following values +<ul class="itemizedlist"><li><p class="para">0 -> for timer0</p></li> +<li><p class="para">1 -> for timer1</p></li> +<li><p class="para">2 -> for timer2</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRGetTimerValue</span><span class="scilabopenclose">(</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//returns present count of the TCNT0 counter</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRTimerSetup.html" class="link">AVRTimerSetup</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRDigitalSetup.html"><< AVRDigitalSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM0SetDuty.html">AVRPWM0SetDuty >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRPWM0SetDuty.html b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM0SetDuty.html new file mode 100644 index 00000000..2a3b9c22 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM0SetDuty.html @@ -0,0 +1,80 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRPWM0SetDuty</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRGetTimerValue.html"><< AVRGetTimerValue</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM0Setup.html">AVRPWM0Setup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRPWM0SetDuty</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRPWM0SetDuty</h1> + <p class="refpurpose">Function to Set Duty cycle of PWM Output generated by Timer0 at OC0 pin.</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">duty :</span> + <dd><p class="para">It holds an integer value from 0 to 100 which sets the percentage of time for which signal is active.</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each Micro controller has PWM output pins which can generate varying voltage +from 0V-5V.In this function by varying the duty cycle, varying voltage can be produced.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRPWM0SetDuty</span><span class="scilabopenclose">(</span><span class="scilabnumber">50</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//Produces 2.5V at OC0 pin</span> +<span class="scilabid">AVRPWM0SetDuty</span><span class="scilabopenclose">(</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//Produces 0V at OC0 pin</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRPWM0Setup.html" class="link">AVRPWM0Setup</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRGetTimerValue.html"><< AVRGetTimerValue</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM0Setup.html">AVRPWM0Setup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRPWM0Setup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM0Setup.html new file mode 100644 index 00000000..d24d9d8d --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM0Setup.html @@ -0,0 +1,98 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRPWM0Setup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM0SetDuty.html"><< AVRPWM0SetDuty</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM1SetDuty.html">AVRPWM1SetDuty >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRPWM0Setup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRPWM0Setup</h1> + <p class="refpurpose">Function to Setup OC0 pin for required PWM mode</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">waveform_mode:</span> + <dd><p class="para">integer, from 0 to 2</p></dd></dt> + <dt><span class="term">output_mode:</span> + <dd><p class="para">integer, from 0 to 1 (or 2) depending on the waveform_mode</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Every Micro controller has PWM pins which can generate varying voltages +from 0V-5V.This function helps to use OC0 pin to produce required +output waveform by setting the waveform mode and otput mode.</p> + <p class="para">waveform_mode can take values- +<ul class="itemizedlist"><li><p class="para">0 -> for Phase correct PWM Mode</p></li> +<li><p class="para">1 -> for Fast PWM Mode</p></li> +<li><p class="para">2 -> for CTC Mode</p></li></ul></p> + <p class="para">output_mode can take values- +<ul class="itemizedlist">For Phase correct PWM Mode: +<li><p class="para">0 for Clear OC0 on compare match when up-counting. Set OC0 on compare match when down-counting.</p></li> +<li><p class="para">1 for Set OC0 on compare match when up-counting. Clear OC0 on compare match when down-counting.</p></li> +For Fast PWM Mode: +<li><p class="para">0 for non-inverted output i.e Clear OC0 on compare match, set OC0 at BOTTOM.</p></li> +<li><p class="para">1 for inverted output i.e Set OC0 on compare match, clear OC0 at BOTTOM.</p></li> +For CTC Mode: +<li><p class="para">0 to Clear OC0 on compare match</p></li> +<li><p class="para">1 to Set OC0 on compare match</p></li> +<li><p class="para">2 to toggle OC0 on compare match</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRPWM0Setup</span><span class="scilabopenclose">(</span><span class="scilabnumber">2</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//This function will select CTC waveform mode and will clear OC0 on compare match</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRPWM0SetDuty.html" class="link">AVRPWM0SetDuty</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM0SetDuty.html"><< AVRPWM0SetDuty</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM1SetDuty.html">AVRPWM1SetDuty >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRPWM1SetDuty.html b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM1SetDuty.html new file mode 100644 index 00000000..03403a84 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM1SetDuty.html @@ -0,0 +1,83 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRPWM1SetDuty</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM0Setup.html"><< AVRPWM0Setup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM1Setup.html">AVRPWM1Setup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRPWM1SetDuty</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRPWM1SetDuty</h1> + <p class="refpurpose">Function to Set Duty cycle of PWM Output generated by Timer1 at OC1A or OC1B pin.</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">ouput_pin:</span> + <dd><p class="para">integer, 0 (for OC1A) or 1 (for OC1B)</p></dd></dt> + <dt><span class="term">duty:</span> + <dd><p class="para">It holds an integer value from 0 to 100 which sets the percentage of time for which signal is active.</p></dd></dt> + <dt><span class="term">Top_Value:</span> + <dd><p class="para">It holds an integer value from 0 to 65535.This value sets the Top value of the counter TCNT1 i.e ICR.(for more info refer datasheet)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each Micro controller has PWM output pins which can generate varying voltage +from 0V-5V.This function Sets the duty cycle of output PWM signal.Also this function +decides the Top Vale of TCNT1 and the output pin to output PWM signal.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para">Example +AVRPWM1SetDuty(0,50,40000); //This function will produce PWM signal of 50% duty cycle on OC1A pin and TCNT1 will reset at 40000 instead at 65535.</p></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRPWM1Setup.html" class="link">AVRPWM1Setup</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM0Setup.html"><< AVRPWM0Setup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM1Setup.html">AVRPWM1Setup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRPWM1Setup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM1Setup.html new file mode 100644 index 00000000..5411af4d --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM1Setup.html @@ -0,0 +1,100 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRPWM1Setup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM1SetDuty.html"><< AVRPWM1SetDuty</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM2SetDuty.html">AVRPWM2SetDuty >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRPWM1Setup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRPWM1Setup</h1> + <p class="refpurpose">Function to Setup OC1A or OC1B pin for required PWM mode</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">waveform_mode:</span> + <dd><p class="para">integer, from 0 to 2</p></dd></dt> + <dt><span class="term">output_mode:</span> + <dd><p class="para">integer, from 0 to 1 (or 2) depending on the waveform_mode</p></dd></dt> + <dt><span class="term">output_pin:</span> + <dd><p class="para">0 (for OC1A) or 1 for (OC1B)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Every Micro controller has PWM pins which can generate varying voltages +from 0V-5V.This function helps to use OC1A or OC1B pin to produces required +output waveform by setting the waveform mode and otput mode.</p> + <p class="para">waveform_mode can take values- +<ul class="itemizedlist"><li><p class="para">0 -> for Phase correct PWM Mode</p></li> +<li><p class="para">1 -> for Fast PWM Mode</p></li> +<li><p class="para">2 -> for CTC Mode</p></li></ul></p> + <p class="para">output_mode can take values- +<ul class="itemizedlist">For Phase correct PWM Mode: +<li><p class="para">0 for Clear OC1A or OC1B on compare match when up-counting. Set OC1A or OC1B on compare match when down-counting.</p></li> +<li><p class="para">1 for Set OC1A or OC1B on compare match when up-counting. Clear OC1A or OC1B on compare match when down-counting.</p></li> +For Fast PWM Mode: +<li><p class="para">0 for non-inverted output i.e Clear OC1A or OC1B on compare match, set OC1A or OC1B at BOTTOM.</p></li> +<li><p class="para">1 for inverted output i.e Set OC1A or OC1B on compare match, clear OC1A or OC1B at BOTTOM.</p></li> +For CTC Mode: +<li><p class="para">0 to Clear OC1A or OC1B on compare match</p></li> +<li><p class="para">1 to Set OC1A or OC1B on compare match</p></li> +<li><p class="para">2 to toggle OC1A or OC1B on compare match</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para">Example +AVRPWM1Setup(2,0,0); //This function will select CTC mode and will clear OC1A or OC1B +on compare match.Also as defined the output will be produced at +0C1A pin.</p></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRPWM1SetDuty.html" class="link">AVRPWM1SetDuty</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM1SetDuty.html"><< AVRPWM1SetDuty</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM2SetDuty.html">AVRPWM2SetDuty >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRPWM2SetDuty.html b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM2SetDuty.html new file mode 100644 index 00000000..c92275e0 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM2SetDuty.html @@ -0,0 +1,81 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRPWM2SetDuty</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM1Setup.html"><< AVRPWM1Setup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM2Setup.html">AVRPWM2Setup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRPWM2SetDuty</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRPWM2SetDuty</h1> + <p class="refpurpose">Function to Set Duty cycle of PWM Output generated by Timer2 at OC2 pin.</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">duty :</span> + <dd><p class="para">It holds an integer value from 0 to 100 which sets the percentage of time for which signal is active.</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Each Micro controller has PWM output pins which can generate varying voltage +from 0V-5V.In this function by varying the duty cycle, varying voltage can be +produced.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para">Example +AVRPWM2SetDuty(50); //Produces 2.5V at OC2 pin +AVRPWM2SetDuty(0); //Produces 0V at OC2 pin</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRPWM2Setup.html" class="link">AVRPWM2Setup</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM1Setup.html"><< AVRPWM1Setup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRPWM2Setup.html">AVRPWM2Setup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRPWM2Setup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM2Setup.html new file mode 100644 index 00000000..aebf5c0c --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRPWM2Setup.html @@ -0,0 +1,97 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRPWM2Setup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM2SetDuty.html"><< AVRPWM2SetDuty</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRReadADC.html">AVRReadADC >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRPWM2Setup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRPWM2Setup</h1> + <p class="refpurpose">Function to Setup OC2 pin for required PWM mode</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">waveform_mode:</span> + <dd><p class="para">integer, from 0 to 2</p></dd></dt> + <dt><span class="term">output_mode:</span> + <dd><p class="para">integer, from 0 to 1 (or 2) depending on the waveform_mode</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">Every Micro controller has PWM pins which can generate varying voltages +from 0V-5V.This function helps to use OC2 pin to produces required +output waveform by setting the waveform mode and otput mode.</p> + <p class="para">waveform_mode can take values- +<ul class="itemizedlist"><li><p class="para">0 -> for Phase correct PWM Mode</p></li> +<li><p class="para">1 -> for Fast PWM Mode</p></li> +<li><p class="para">2 -> for CTC Mode</p></li></ul></p> + <p class="para">output_mode can take values- +<ul class="itemizedlist">For Phase correct PWM Mode: +<li><p class="para">0 for Clear OC2 on compare match when up-counting. Set OC2 on compare match when down-counting.</p></li> +<li><p class="para">1 for Set OC2 on compare match when up-counting. Clear OC2 on compare match when down-counting.</p></li> +For Fast PWM Mode: +<li><p class="para">0 for non-inverted output i.e Clear OC2 on compare match, set OC2 at BOTTOM.</p></li> +<li><p class="para">1 for inverted output i.e Set OC2 on compare match, clear OC2 at BOTTOM.</p></li> +For CTC Mode: +<li><p class="para">0 to Clear OC2 on compare match</p></li> +<li><p class="para">1 to Set OC2 on compare match</p></li> +<li><p class="para">2 to toggle OC2 on compare match</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para">Example +AVRPWM2Setup(2,0); //This function will select CTC waveform mode and will clear OC2 on +compare match</p></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRPWM2SetDuty.html" class="link">AVRPWM2SetDuty</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM2SetDuty.html"><< AVRPWM2SetDuty</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRReadADC.html">AVRReadADC >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRReadADC.html b/2.3-1/help/en_US/scilab_en_US_help/AVRReadADC.html new file mode 100644 index 00000000..43dba972 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRReadADC.html @@ -0,0 +1,84 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRReadADC</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM2Setup.html"><< AVRPWM2Setup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRSleep.html">AVRSleep >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRReadADC</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRReadADC</h1> + <p class="refpurpose">Function to get voltage on analog pin on AVR</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">u8AVRReadADCs</span><span class="default">(</span><span class="default">channel</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">channel :</span> + <dd><p class="para">Select which channel is to be read. Values from 0-7 select one of the pins ADC0-ADC7. For other possible channel values refer datasheet</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function returns digital value for present on adc pins. 'channel' +selects which of the ADC0-ADC7 is to be used for reading analog value. +Apart from reading just ADC0-ADC7 other it can also read differential +voltages between some pins. For channel values for those options, please +refer datasheet.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">adc_result</span> <span class="scilaboperator">=</span> <span class="scilabid">u8AVRReadADC</span><span class="scilabopenclose">(</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> <span class="scilabcomment">//Read ADC0</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li> + <li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRPWM2Setup.html"><< AVRPWM2Setup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRSleep.html">AVRSleep >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRSleep.html b/2.3-1/help/en_US/scilab_en_US_help/AVRSleep.html new file mode 100644 index 00000000..19c316df --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRSleep.html @@ -0,0 +1,75 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRSleep</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRReadADC.html"><< AVRReadADC</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRTimerSetup.html">AVRTimerSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRSleep</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRSleep</h1> + <p class="refpurpose">Function to pause the execution for the given time.</p></div> + + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function causes the execution to stop for the given amount of time.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRSleep</span><span class="scilabopenclose">(</span><span class="scilabnumber">5000</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Jorawar Singh</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRReadADC.html"><< AVRReadADC</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRTimerSetup.html">AVRTimerSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRTimerSetup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRTimerSetup.html new file mode 100644 index 00000000..4935afed --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRTimerSetup.html @@ -0,0 +1,66 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRTimerSetup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRSleep.html"><< AVRSleep</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRUARTReceive.html">AVRUARTReceive >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRTimerSetup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRTimerSetup</h1> + <p class="refpurpose">Function to setup Timers in ATmega16</p></div> + + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="scilab://AVRGetTimerValues" class="link">AVRGetTimerValues</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRSleep.html"><< AVRSleep</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRUARTReceive.html">AVRUARTReceive >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRUARTReceive.html b/2.3-1/help/en_US/scilab_en_US_help/AVRUARTReceive.html new file mode 100644 index 00000000..87e98905 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRUARTReceive.html @@ -0,0 +1,77 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRUARTReceive</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRTimerSetup.html"><< AVRTimerSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRUARTSetup.html">AVRUARTSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRUARTReceive</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRUARTReceive</h1> + <p class="refpurpose">Function to Receive Char value send to ATmega16 using UART or USART.</p></div> + + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function Receives Char as 8 bit value.This value is stored in UDR at receiving +end.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">state</span> <span class="scilaboperator">=</span> <span class="scilabid">AVRUARTReceive</span><span class="scilabopenclose">(</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//This function will Receive char and return the entire value</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRUARTSetup.html" class="link">AVRUARTSetup</a></li> + <li class="member"><a href="AVRUARTTransmit.html" class="link">AVRUARTTransmit</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRTimerSetup.html"><< AVRTimerSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRUARTSetup.html">AVRUARTSetup >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRUARTSetup.html b/2.3-1/help/en_US/scilab_en_US_help/AVRUARTSetup.html new file mode 100644 index 00000000..77855949 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRUARTSetup.html @@ -0,0 +1,96 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRUARTSetup</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRUARTReceive.html"><< AVRUARTReceive</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRUARTTransmit.html">AVRUARTTransmit >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRUARTSetup</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRUARTSetup</h1> + <p class="refpurpose">Function to Setup Serial Communication i.e UART or USART in ATmega16.</p></div> + + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">mode :</span> + <dd><p class="para">integer, from 0 to 2</p></dd></dt> + <dt><span class="term">baudrate :</span> + <dd><p class="para">Enter one of the following available baudrates (2400 , 4800 , 9600 , 14400 , 19200 , 28800 , 38400 , 57600 , 768000 , 115200 , 230400 , 250000 , 1000000)</p></dd></dt> + <dt><span class="term">stopbits :</span> + <dd><p class="para">integer, (0 for one stopbit) or (1 for two stopbits)</p></dd></dt> + <dt><span class="term">parity :</span> + <dd><p class="para">integer, from 0 to 2</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function Setup the UART or USART for Serial Communicaion between ATmega16 +and different micro controllers or between ATmega16 and Computer.</p> + <p class="para">mode can take values: +<ul class="itemizedlist"><li><p class="para">0 for Asynchronous Normal mode</p></li> +<li><p class="para">1 for Asynchronous Double Speed mode</p></li> +<li><p class="para">2 for Synchronous mode</p></li></ul></p> + <p class="para">parity can take values: +<ul class="itemizedlist"><li><p class="para">0 for parity disabled</p></li> +<li><p class="para">1 for even parity</p></li> +<li><p class="para">2 for odd parity</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRUARTSetup</span><span class="scilabopenclose">(</span><span class="scilabnumber">0</span><span class="scilabdefault">,</span><span class="scilabnumber">9600</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//This function will enable UART Communication for ATmega16</span> +<span class="scilabid">with</span> <span class="scilabnumber">9600</span> <span class="scilabid">as</span> <span class="scilabid">baudrate</span><span class="scilabdefault">,</span><span class="scilabid">one</span> <span class="scilabid">stop</span> <span class="scilabid">bit</span> <a class="scilabcommand" href="scilab://and">and</a> <span class="scilabstring">parity</span> <span class="scilabstring">disabled</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRUARTTransmit.html" class="link">AVRUARTTransmit</a></li> + <li class="member"><a href="AVRUARTReceive.html" class="link">AVRUARTReceive</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRUARTReceive.html"><< AVRUARTReceive</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="AVRUARTTransmit.html">AVRUARTTransmit >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/AVRUARTTransmit.html b/2.3-1/help/en_US/scilab_en_US_help/AVRUARTTransmit.html new file mode 100644 index 00000000..624d6a06 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/AVRUARTTransmit.html @@ -0,0 +1,77 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>AVRUARTTransmit</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRUARTSetup.html"><< AVRUARTSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_AdaptiveThreshold.html">CV_AdaptiveThreshold >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > AVRUARTTransmit</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">AVRUARTTransmit</h1> + <p class="refpurpose">Function to Transmit data using UART or USART.</p></div> + + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function Tranmits data over UART or USART.The data to be transmitted can +be a Char , String , Unsigned Int, Signed Int.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for AVR.</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">AVRUARTTransmit</span><span class="scilabopenclose">(</span><span class="scilabstring">"</span><span class="scilabstring">This is example</span><span class="scilabstring">"</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> <span class="scilabcomment">//This function will transmit the entered string.</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="AVRUARTSetup.html" class="link">AVRUARTSetup</a></li> + <li class="member"><a href="AVRUARTReceive.html" class="link">AVRUARTReceive</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Ashish Kamble</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRUARTSetup.html"><< AVRUARTSetup</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_AdaptiveThreshold.html">CV_AdaptiveThreshold >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_AdaptiveThreshold.html b/2.3-1/help/en_US/scilab_en_US_help/CV_AdaptiveThreshold.html new file mode 100644 index 00000000..14cd3f58 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_AdaptiveThreshold.html @@ -0,0 +1,94 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_AdaptiveThreshold</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="AVRUARTTransmit.html"><< AVRUARTTransmit</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Blur.html">CV_Blur >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_AdaptiveThreshold</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_AdaptiveThreshold</h1> + <p class="refpurpose">function to adaptively threshold input image</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">dst</span><span class="default"> = </span><span class="functionid">CV_AdaptiveThreshold</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">max_value</span><span class="default">,</span><span class="default">adaptive_method</span><span class="default">,</span><span class="default">thresh_type</span><span class="default">,</span><span class="default">blk_size</span><span class="default">,</span><span class="default">c</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">src :</span> + <dd><p class="para">Source 8-bit single-channel image.</p></dd></dt> + <dt><span class="term">max_value :</span> + <dd><p class="para">Non-zero value assigned to the pixels for which the condition is satisfied. See the details below.</p></dd></dt> + <dt><span class="term">adaptive_method :</span> + <dd><p class="para">Adaptive thresholding algorithm to use, ADAPTIVE_THRESH_MEAN_C or ADAPTIVE_THRESH_GAUSSIAN_C .</p></dd></dt> + <dt><span class="term">thresh_type :</span> + <dd><p class="para">Thresholding type that must be either THRESH_BINARY or THRESH_BINARY_INV .</p></dd></dt> + <dt><span class="term">blockSize :</span> + <dd><p class="para">Size of a pixel neighborhood that is used to calculate a threshold value for the pixel: 3, 5, 7, and so on.</p></dd></dt> + <dt><span class="term">C :</span> + <dd><p class="para">Constant subtracted from the mean or weighted mean.Normally, it is positive but may be zero or negative as well.</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for adaptively threshold given image</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_AdaptiveThreshold(img</span><span class="scilabdefault">,</span><span class="scilabnumber">255</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">ADAPTIVE_THRESH_MEAN_C</span><span class="scilabstring">"</span><span class="scilabdefault">,</span> <span class="scilabspecial">...</span> +<span class="scilabstring">"</span><span class="scilabstring">THRESH_BINARY</span><span class="scilabstring">"</span><span class="scilabdefault">,</span><span class="scilabnumber">5</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CreateImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="AVRUARTTransmit.html"><< AVRUARTTransmit</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Blur.html">CV_Blur >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_Blur.html b/2.3-1/help/en_US/scilab_en_US_help/CV_Blur.html new file mode 100644 index 00000000..a9f2008e --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_Blur.html @@ -0,0 +1,96 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_Blur</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_AdaptiveThreshold.html"><< CV_AdaptiveThreshold</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Canny.html">CV_Canny >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_Blur</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_Blur</h1> + <p class="refpurpose">function to blur image using normalised box filter</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">dst</span><span class="default"> = </span><span class="functionid">CV_Blur</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">ksize_width</span><span class="default">,</span><span class="default">ksize_height</span><span class="default">,</span><span class="default">anchor_x</span><span class="default">,</span><span class="default">anchor_y</span><span class="default">,</span><span class="default">border_type</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg :</span> + <dd><p class="para">Source image.</p></dd></dt> + <dt><span class="term">ksize_width, ksize_height :</span> + <dd><p class="para">blurring kernel size.</p></dd></dt> + <dt><span class="term">anchor_x, anchor_y :</span> + <dd><p class="para">x,y coordinates of anchor point</p></dd></dt> + <dt><span class="term">border_type :</span> + <dd><p class="para">border mode used to extrapolate pixels outside of the image.</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for blurring image using normalised box +filter. Image can be of any depth and have any no of channels.</p> + <p class="para">border_type can be : +<ul class="itemizedlist"><li>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</li> +<li>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</li> +<li>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</li> +<li>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</li> +<li>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_Blur(img</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilaboperator">-</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilaboperator">-</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">BORDER_CONSTANT</span><span class="scilabstring">"</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_Threshold, CV_CvtColor</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_AdaptiveThreshold.html"><< CV_AdaptiveThreshold</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Canny.html">CV_Canny >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_Canny.html b/2.3-1/help/en_US/scilab_en_US_help/CV_Canny.html new file mode 100644 index 00000000..5fe68118 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_Canny.html @@ -0,0 +1,95 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_Canny</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_Blur.html"><< CV_Blur</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_CornerHarris.html">CV_CornerHarris >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_Canny</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_Canny</h1> + <p class="refpurpose">Finds edges in image using Canny algorithm</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">edges</span><span class="default"> = </span><span class="functionid">CV_Canny</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">threhold1</span><span class="default">,</span><span class="default">threshold2</span><span class="default">,</span><span class="default">aperture_size</span><span class="default">,</span><span class="default">L2gradient</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg :</span> + <dd><p class="para">single-channel 8-bit input image.</p></dd></dt> + <dt><span class="term">threshold1 :</span> + <dd><p class="para">first threshold for the hysteresis procedure.</p></dd></dt> + <dt><span class="term">threshold2 :</span> + <dd><p class="para">second threshold for the hysteresis procedure.</p></dd></dt> + <dt><span class="term">aperture_size :</span> + <dd><p class="para">aperture size for the Sobel() operator.</p></dd></dt> + <dt><span class="term">L2gradient :</span> + <dd><p class="para">a flag, indicating whether a more accurate</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for finding edes in single channel 8 bit +image. 'aperture_size' and 'L2gradient' are optionals. By default, +aperture_size is 3 and L2gradient is false.</p> + <p class="para">For L2gradient: L_2 norm =sqrt{(dI/dx)^2 + (dI/dy)^2} should be used to calculate the image gradient magnitude (L2gradient=1 ), or whether the default L_1 norm =|dI/dx|+|dI/dy| is enough (L2gradient=0).</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_CvtColor(img</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">CV_RGB2GRAY</span><span class="scilabstring">"</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> +<span class="scilabid">edge</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_Canny</span><span class="scilabopenclose">(</span><a class="scilabcommand" href="scilab://dst">dst</a><span class="scilabdefault">,</span><span class="scilabnumber">50</span><span class="scilabdefault">,</span><span class="scilabnumber">100</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CvtColor</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_Blur.html"><< CV_Blur</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_CornerHarris.html">CV_CornerHarris >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_CornerHarris.html b/2.3-1/help/en_US/scilab_en_US_help/CV_CornerHarris.html new file mode 100644 index 00000000..f5ad9bb9 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_CornerHarris.html @@ -0,0 +1,98 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_CornerHarris</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_Canny.html"><< CV_Canny</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_CreateImage.html">CV_CreateImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_CornerHarris</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_CornerHarris</h1> + <p class="refpurpose">Finds edges in image using Harris algorithm</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">edges</span><span class="default"> = </span><span class="functionid">CV_CornerHarris</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">blocksize</span><span class="default">,</span><span class="default">ksize</span><span class="default">,</span><span class="default">k</span><span class="default">,</span><span class="default">border_type</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg:</span> + <dd><p class="para">Input single-channel 8-bit or floating-point image.</p></dd></dt> + <dt><span class="term">blockSize:</span> + <dd><p class="para">Neighborhood size</p></dd></dt> + <dt><span class="term">ksize:</span> + <dd><p class="para">Aperture parameter for the Sobel() operator.</p></dd></dt> + <dt><span class="term">k:</span> + <dd><p class="para">Harris detector free parameter.</p></dd></dt> + <dt><span class="term">border_type:</span> + <dd><p class="para">border mode used to extrapolate pixels outside of the image.</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">The function runs the Harris edge detector on the image. For each pixel (x, y) it calculates a 2 * 2 gradient covariance matrix M(x,y) over a blockSize * blockSize neighborhood. Then, it computes the following characteristic: dst(x,y) = det(M(x,y)) - k .tr(M(x,y))^2. Corners in the image can be found as the local maxima of this response map.</p> + <p class="para">border_type can be : +<ul class="itemizedlist"><li>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</li> +<li>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</li> +<li>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</li> +<li>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</li> +<li>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_CvtColor(img</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">CV_RGB2GRAY</span><span class="scilabstring">"</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span> +<span class="scilabid">edge</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_CornerHarris</span><span class="scilabopenclose">(</span><a class="scilabcommand" href="scilab://dst">dst</a><span class="scilabdefault">,</span><span class="scilabnumber">5</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">BORDER_REPLICATE</span><span class="scilabstring">"</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CvtColor</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_Canny.html"><< CV_Canny</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_CreateImage.html">CV_CreateImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_CreateImage.html b/2.3-1/help/en_US/scilab_en_US_help/CV_CreateImage.html new file mode 100644 index 00000000..5a3e034b --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_CreateImage.html @@ -0,0 +1,85 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_CreateImage</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_CornerHarris.html"><< CV_CornerHarris</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_CvtColor.html">CV_CvtColor >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_CreateImage</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_CreateImage</h1> + <p class="refpurpose">function to create an image object of given size and type</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_CreateImage</span><span class="default">(</span><span class="default">image_size</span><span class="default">,</span><span class="default">bit_depth</span><span class="default">,</span><span class="default">no_of_channels</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">image_size:</span> + <dd><p class="para">width and height of image</p></dd></dt> + <dt><span class="term">bit_depth:</span> + <dd><p class="para">Bit depth of image elements</p></dd></dt> + <dt><span class="term">no_of_channels:</span> + <dd><p class="para">no of channels per pixels</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used to create opencv image object. For more info about bit depth and channels,please refer to OpenCV documentation</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">CV_CreateImage</span><span class="scilabopenclose">(</span><span class="scilabopenclose">[</span><span class="scilabnumber">320</span> <span class="scilabnumber">240</span><span class="scilabopenclose">]</span><span class="scilabdefault">,</span> <span class="scilabstring">"</span><span class="scilabstring">IPL_DEPTH_8U</span><span class="scilabstring">"</span><span class="scilabdefault">,</span> <span class="scilabnumber">1</span><span class="scilabopenclose">)</span> <span class="scilabcomment">//to create image of the size 320*240 pixels with 8 bit unsigned each pixels and gray scale image</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_LoadImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_CornerHarris.html"><< CV_CornerHarris</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_CvtColor.html">CV_CvtColor >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_CvtColor.html b/2.3-1/help/en_US/scilab_en_US_help/CV_CvtColor.html new file mode 100644 index 00000000..ffa3cef1 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_CvtColor.html @@ -0,0 +1,90 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_CvtColor</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_CreateImage.html"><< CV_CreateImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Dilate.html">CV_Dilate >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_CvtColor</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_CvtColor</h1> + <p class="refpurpose">function to convert image from one colorspace to other colorspace</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_CvtColor</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">code</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg:</span> + <dd><p class="para">source image to be converted</p></dd></dt> + <dt><span class="term">dstimg:</span> + <dd><p class="para">destination image in which to store converted image</p></dd></dt> + <dt><span class="term">code:</span> + <dd><p class="para">String specifying conversion type. Same as defined in OpenCV. for eg. 'CV_RGB2GRAY' for conversion from RGB image to grayscale image</p></dd></dt> + <dt><span class="term">dstCn:</span> + <dd><p class="para">no of channels in destination image (0 by default)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for converting an image to other colorspace. +Refer OpenCV documentation for list of available conversions</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_CvtColor(img</span><span class="scilabdefault">,</span><span class="scilabstring">'</span><span class="scilabstring">CV_RGB2GRAY</span><span class="scilabstring">'</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CreateImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_CreateImage.html"><< CV_CreateImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Dilate.html">CV_Dilate >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_Dilate.html b/2.3-1/help/en_US/scilab_en_US_help/CV_Dilate.html new file mode 100644 index 00000000..0c898402 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_Dilate.html @@ -0,0 +1,99 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_Dilate</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_CvtColor.html"><< CV_CvtColor</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_DistanceTransform.html">CV_DistanceTransform >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_Dilate</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_Dilate</h1> + <p class="refpurpose">dilates an image by using a specific structuring element.</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">cvtimg</span><span class="default"> = </span><span class="functionid">CV_Dilate</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">dilation_type</span><span class="default">,</span><span class="default">dilation_size</span><span class="default">,[</span><span class="default">iterations</span><span class="default">,</span><span class="default">border_type</span><span class="default">,</span><span class="default">border_value</span><span class="default">])</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">src :</span> + <dd><p class="para">input image; the number of channels can be arbitrary, but the depth should be one of CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.</p></dd></dt> + <dt><span class="term">dilation_type :</span> + <dd><p class="para">can be one of MORPH_RECT, MORPH_CROSS,MORPH_ELLIPSE</p></dd></dt> + <dt><span class="term">dilation_size :</span> + <dd><p class="para">size of kernel to be used for erosion. Must be odd</p></dd></dt> + <dt><span class="term">iterations :</span> + <dd><p class="para">number of times erosion is applied.</p></dd></dt> + <dt><span class="term">border_type :</span> + <dd><p class="para">pixel extrapolation method.</p></dd></dt> + <dt><span class="term">border_value :</span> + <dd><p class="para">border value in case of a constant border</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for eroding an image. Kernel used for erosion is decided by type and size. Size must always be odd. Anchor pint of kernel is always center of kernel. Input arguements 'iterations(1), border_type(BORDER_CONSTANT) and border_value' are optionals. Whwn not specified, default values as as mentioned in brackets.</p> + <p class="para">border_type can be : +<ul class="itemizedlist"><li><p class="para">BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</p></li> +<li><p class="para">BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</p></li> +<li><p class="para">BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</p></li> +<li><p class="para">BORDER_WRAP: cdefgh|abcdefgh|abcdefg</p></li> +<li><p class="para">BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_Erode(img</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">MORPH_RECT</span><span class="scilabstring">"</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">BORDER_CONSTANT</span><span class="scilabstring">"</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_Erode</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_CvtColor.html"><< CV_CvtColor</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_DistanceTransform.html">CV_DistanceTransform >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_DistanceTransform.html b/2.3-1/help/en_US/scilab_en_US_help/CV_DistanceTransform.html new file mode 100644 index 00000000..5d432924 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_DistanceTransform.html @@ -0,0 +1,87 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_DistanceTransform</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_Dilate.html"><< CV_Dilate</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Erode.html">CV_Erode >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_DistanceTransform</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_DistanceTransform</h1> + <p class="refpurpose">function to calculate distance to closest zero pixels for each pixel</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">dst</span><span class="default"> = </span><span class="functionid">CV_DistanceTransform</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">distance_type</span><span class="default">,</span><span class="default">mask_size</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg :</span> + <dd><p class="para">Source 8-bit single-channel image.</p></dd></dt> + <dt><span class="term">distance_type :</span> + <dd><p class="para">Type of distance. It can be CV_DIST_L1, CV_DIST_L2 , or CV_DIST_C</p></dd></dt> + <dt><span class="term">mask_size :</span> + <dd><p class="para">Size of the distance transform mask</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used to calculate distance to closest zero pixel for each pixel of the source image. Output is 32 bit floatingpoint, single channel image of the same size as that of source image.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_DistanceTransform(img</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">CV_DIST_L1</span><span class="scilabstring">"</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CreateImage CV_CvtColor</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_Dilate.html"><< CV_Dilate</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Erode.html">CV_Erode >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_Erode.html b/2.3-1/help/en_US/scilab_en_US_help/CV_Erode.html new file mode 100644 index 00000000..102058d0 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_Erode.html @@ -0,0 +1,99 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_Erode</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_DistanceTransform.html"><< CV_DistanceTransform</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_GaussianBlur.html">CV_GaussianBlur >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_Erode</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_Erode</h1> + <p class="refpurpose">Erodes an image by using a specific structuring element.</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">cvtimg</span><span class="default"> = </span><span class="functionid">CV_Erode</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">erosion_type</span><span class="default">,</span><span class="default">erosion_size</span><span class="default">,[</span><span class="default">iterations</span><span class="default">,</span><span class="default">border_type</span><span class="default">,</span><span class="default">border_value</span><span class="default">])</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">src :</span> + <dd><p class="para">input image; the number of channels can be arbitrary, but the depth should be one of CV_8U, CV_16U, CV_16S, CV_32F or CV_64F.</p></dd></dt> + <dt><span class="term">erosion_type :</span> + <dd><p class="para">can be one of : MORPH_RECT, MORPH_CROSS, MORPH_ELLIPSE</p></dd></dt> + <dt><span class="term">erosion_size :</span> + <dd><p class="para">size of kernel to be used for erosion. Must be odd</p></dd></dt> + <dt><span class="term">iterations :</span> + <dd><p class="para">number of times erosion is applied.</p></dd></dt> + <dt><span class="term">border_type :</span> + <dd><p class="para">pixel extrapolation method.</p></dd></dt> + <dt><span class="term">border_value :</span> + <dd><p class="para">border value in case of a constant border</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for eroding an image. Kernel used for erosion is decided by type and size. Size must always be odd. Anchor pint of kernel is always center of kernel. Input arguements 'iterations(1), border_type(BORDER_CONSTANT) and border_value' are optionals. Whwn not specified, default values as as mentioned in brackets.</p> + <p class="para">border_type can be : +<ul class="itemizedlist"><li>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</li> +<li>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</li> +<li>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</li> +<li>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</li> +<li>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_Erode(img</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">MORPH_RECT</span><span class="scilabstring">"</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">1</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">BORDER_CONSTANT</span><span class="scilabstring">"</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_Dilate</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_DistanceTransform.html"><< CV_DistanceTransform</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_GaussianBlur.html">CV_GaussianBlur >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_GaussianBlur.html b/2.3-1/help/en_US/scilab_en_US_help/CV_GaussianBlur.html new file mode 100644 index 00000000..470cf56c --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_GaussianBlur.html @@ -0,0 +1,98 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_GaussianBlur</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_Erode.html"><< CV_Erode</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_GetImgSize.html">CV_GetImgSize >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_GaussianBlur</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_GaussianBlur</h1> + <p class="refpurpose">function to blur image using gaussian filter</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">cvtimg</span><span class="default"> = </span><span class="functionid">CV_GaussianBlur</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">ksize_width</span><span class="default">,</span><span class="default">ksize_height</span><span class="default">,</span><span class="default">sigma_x</span><span class="default">,</span><span class="default">sigma_y</span><span class="default">,</span><span class="default">border_type</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg :</span> + <dd><p class="para">Source image.</p></dd></dt> + <dt><span class="term">ksize_width, ksize_height :</span> + <dd><p class="para">blurring kernel size. must be odd.</p></dd></dt> + <dt><span class="term">sigmaX :</span> + <dd><p class="para">Gaussian kernel standard deviation in X direction.</p></dd></dt> + <dt><span class="term">sigmaY :</span> + <dd><p class="para">Gaussian kernel standard deviation in Y direction;</p></dd></dt> + <dt><span class="term">border_type :</span> + <dd><p class="para">border mode used to extrapolate pixels outside of the image.</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for blurring image using gaussian filter. Image can be of any depth and have any no of channels.</p> + <p class="para">For sigmaX and sigmaY : if sigmaY is zero, it is set to be equal to sigmaX, if both sigmas are zeros, they are computed from ksize.width and ksize.height , respectively.</p> + <p class="para">border_type can be : +<ul class="itemizedlist"><li>BORDER_REPLICATE: aaaaaa|abcdefgh|hhhhhhh</li> +<li>BORDER_REFLECT: fedcba|abcdefgh|hgfedcb</li> +<li>BORDER_REFLECT_101: gfedcb|abcdefgh|gfedcba</li> +<li>BORDER_WRAP: cdefgh|abcdefgh|abcdefg</li> +<li>BORDER_CONSTANT: iiiiii|abcdefgh|iiiiiii</li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_GaussianBlur(img</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabdefault">,</span><span class="scilabstring">"</span><span class="scilabstring">BORDER_CONSTANT</span><span class="scilabstring">"</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_Blur, CV_CvtColor</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_Erode.html"><< CV_Erode</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_GetImgSize.html">CV_GetImgSize >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_GetImgSize.html b/2.3-1/help/en_US/scilab_en_US_help/CV_GetImgSize.html new file mode 100644 index 00000000..e7884967 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_GetImgSize.html @@ -0,0 +1,84 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_GetImgSize</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_GaussianBlur.html"><< CV_GaussianBlur</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_LoadImage.html">CV_LoadImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_GetImgSize</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_GetImgSize</h1> + <p class="refpurpose">function to get size of the image (width*height)</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_GetImgSize</span><span class="default">(</span><span class="default">img</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">img:</span> + <dd><p class="para">image whose size is to be returned</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for retriving size information of the image. +It returs an array with first image element as width and second as height</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://size">size</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_GetImgSize(img)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CreateImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_GaussianBlur.html"><< CV_GaussianBlur</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_LoadImage.html">CV_LoadImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_LoadImage.html b/2.3-1/help/en_US/scilab_en_US_help/CV_LoadImage.html new file mode 100644 index 00000000..473e4a5d --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_LoadImage.html @@ -0,0 +1,88 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_LoadImage</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_GetImgSize.html"><< CV_GetImgSize</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_MedianBlur.html">CV_MedianBlur >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_LoadImage</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_LoadImage</h1> + <p class="refpurpose">function to load an image object from given filename</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_LoadImage</span><span class="default">(</span><span class="default">filename</span><span class="default">,</span><span class="default">loadtype</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">filename:</span> + <dd><p class="para">name of file to be opened</p></dd></dt> + <dt><span class="term">loadtype:</span> + <dd><p class="para">desired load method</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for loading a previously stored image</p> + <p class="para">loadtype can take the following values: +<ul class="itemizedlist"><li><p class="para">less than 0 -> image is loaded as is (with alpha channel)</p></li> +<li><p class="para">0 -> image is loaded as greyscale</p></li> +<li><p class="para">greater than 0 -> 3 channel color image is loaded</p></li></ul></p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_CreateImage.html" class="link">CV_CreateImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_GetImgSize.html"><< CV_GetImgSize</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_MedianBlur.html">CV_MedianBlur >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_MedianBlur.html b/2.3-1/help/en_US/scilab_en_US_help/CV_MedianBlur.html new file mode 100644 index 00000000..a75064e9 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_MedianBlur.html @@ -0,0 +1,86 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_MedianBlur</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_LoadImage.html"><< CV_LoadImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_SaveImage.html">CV_SaveImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_MedianBlur</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_MedianBlur</h1> + <p class="refpurpose">function to blur image using median filter</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">cvtimg</span><span class="default"> = </span><span class="functionid">CV_MedianBlur</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">ksize</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg :</span> + <dd><p class="para">input 1-, 3-, or 4-channel image; when ksize is 3 or 5, the image depth should be CV_8U, CV_16U, or CV_32F, for larger aperture sizes, it can only be CV_8U.</p></dd></dt> + <dt><span class="term">ksize_width :</span> + <dd><p class="para">aperture linear size; it must be odd and greater than 1, for example: 3, 5, 7 ...</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for blurring image using median +filter. Image can be of any depth and have any no of channels.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_MedianBlur(img</span><span class="scilabdefault">,</span><span class="scilabnumber">3</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="scilab://CV_GaussianBlur," class="link">CV_Blur, CV_CvtColor</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_LoadImage.html"><< CV_LoadImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_SaveImage.html">CV_SaveImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_SaveImage.html b/2.3-1/help/en_US/scilab_en_US_help/CV_SaveImage.html new file mode 100644 index 00000000..fe309032 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_SaveImage.html @@ -0,0 +1,86 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_SaveImage</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_MedianBlur.html"><< CV_MedianBlur</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_ShowImage.html">CV_ShowImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_SaveImage</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_SaveImage</h1> + <p class="refpurpose">function to save an image object as a given filename</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_SaveImage</span><span class="default">(</span><span class="default">filename</span><span class="default">,</span><span class="default">img</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">filename:</span> + <dd><p class="para">name of file image to be saved as</p></dd></dt> + <dt><span class="term">img:</span> + <dd><p class="para">image to be saved</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for saving image. File format is detected +from file extension</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<span class="scilabid">CV_SaveImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">test1.png</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabid">img</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CreateImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_MedianBlur.html"><< CV_MedianBlur</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_ShowImage.html">CV_ShowImage >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_ShowImage.html b/2.3-1/help/en_US/scilab_en_US_help/CV_ShowImage.html new file mode 100644 index 00000000..abc8cace --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_ShowImage.html @@ -0,0 +1,86 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_ShowImage</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_SaveImage.html"><< CV_SaveImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Threshold.html">CV_Threshold >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_ShowImage</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_ShowImage</h1> + <p class="refpurpose">function to show an image</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_ShowImage</span><span class="default">(</span><span class="default">img</span><span class="default">)</span> +<span class="functionid">CV_ShowImage</span><span class="default">(</span><span class="default">winname</span><span class="default">,</span><span class="default">img</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">winname:</span> + <dd><p class="para">name of window in which img is to be shown</p></dd></dt> + <dt><span class="term">img:</span> + <dd><p class="para">image to be shown already acquired (from file/camera)</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for showing images</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<span class="scilabid">CV_ShowImage</span><span class="scilabopenclose">(</span><span class="scilabid">img</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_CreateImage.html" class="link">CV_LoadImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_SaveImage.html"><< CV_SaveImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_Threshold.html">CV_Threshold >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_Threshold.html b/2.3-1/help/en_US/scilab_en_US_help/CV_Threshold.html new file mode 100644 index 00000000..fa465fce --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_Threshold.html @@ -0,0 +1,90 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_Threshold</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_ShowImage.html"><< CV_ShowImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_WaitKey.html">CV_WaitKey >></a></span> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_Threshold</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_Threshold</h1> + <p class="refpurpose">function to threshold input image</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="default">dst</span><span class="default"> = </span><span class="functionid">CV_Threshold</span><span class="default">(</span><span class="default">srcimg</span><span class="default">,</span><span class="default">code</span><span class="default">,</span><span class="default">threshold</span><span class="default">,</span><span class="default">max_value</span><span class="default">,</span><span class="default">thresh_type</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">srcimg:</span> + <dd><p class="para">source image to be converted</p></dd></dt> + <dt><span class="term">threshold:</span> + <dd><p class="para">threshold value</p></dd></dt> + <dt><span class="term">max_value:</span> + <dd><p class="para">maximum value to be used with THRESH_BINARY and THRESH_BINARY_INV</p></dd></dt> + <dt><span class="term">thresh_type:</span> + <dd><p class="para">Type for threshold. It can one of the following: THRESH_BINARY, THRESH_BINARY_INV, THRESH_TRUNC, THRESH_TOZERO, THRESH_TOZERO_INV</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for converting an image to other colorspace. +Refer OpenCV documentation for list of available conversions</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<a class="scilabcommand" href="scilab://dst">dst</a> <span class="scilabstring">=</span> <span class="scilabstring">CV_Threshold(img</span><span class="scilabdefault">,</span><span class="scilabnumber">100</span><span class="scilabdefault">,</span><span class="scilabnumber">255</span><span class="scilabdefault">,</span><span class="scilabstring">'</span><span class="scilabstring">THRESH_BINARY</span><span class="scilabstring">'</span><span class="scilabopenclose">)</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_CreateImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_ShowImage.html"><< CV_ShowImage</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + <span class="next"><a href="CV_WaitKey.html">CV_WaitKey >></a></span> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/CV_WaitKey.html b/2.3-1/help/en_US/scilab_en_US_help/CV_WaitKey.html new file mode 100644 index 00000000..281d1690 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/CV_WaitKey.html @@ -0,0 +1,83 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title>CV_WaitKey</title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + <span class="previous"><a href="CV_Threshold.html"><< CV_Threshold</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> <a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a> > CV_WaitKey</span> + + <br /><br /> + <div class="refnamediv"><h1 class="refname">CV_WaitKey</h1> + <p class="refpurpose">function similar to cvWaitKey</p></div> + + +<div class="refsynopsisdiv"><h3 class="title">Calling Sequence</h3> + <div class="synopsis"><pre><span class="functionid">CV_WaitKey</span><span class="default">(</span><span class="default">delay</span><span class="default">)</span></pre></div></div> + +<div class="refsection"><h3 class="title">Parameters</h3> + <dl><dt><span class="term">delay:</span> + <dd><p class="para">waiting delay, if 0 then wait till keypress</p></dd></dt></dl></div> + +<div class="refsection"><h3 class="title">Description</h3> + <p class="para">This function can be used for inseting some delay. This function must +follow CV_ShowImage to display image.</p> + <p class="para">This is curretly dummy function. It provides no functionality but is required +for providing support for generating C code for OpenCV</p> + <p class="para"></p></div> + +<div class="refsection"><h3 class="title">Examples</h3> + <div class="programlisting"><table border="0" width="100%"><tr><td width="98%"><pre class="scilabcode"><span class="scilabid">img</span> <span class="scilaboperator">=</span> <span class="scilabid">CV_LoadImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">~/test.jpg</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span> +<span class="scilabid">CV_ShowImage</span><span class="scilabopenclose">(</span><span class="scilabstring">'</span><span class="scilabstring">'</span><span class="scilabdefault">,</span><span class="scilabid">img</span><span class="scilabopenclose">)</span> +<span class="scilabid">CV_WaitKey</span><span class="scilabopenclose">(</span><span class="scilabnumber">0</span><span class="scilabopenclose">)</span><span class="scilabdefault">;</span></pre></td><td valign="top"><a href="scilab://scilab.execexample/"><img src="ScilabExecute.png" border="0"/></a></td><td valign="top"><a href="scilab://scilab.editexample/"><img src="ScilabEdit.png" border="0"/></a></td><td></td></tr></table></div></div> + +<div class="refsection"><h3 class="title">See also</h3> + <ul class="itemizedlist"><li class="member"><a href="CV_LoadImage.html" class="link">CV_ShowImage</a></li></ul></div> + +<div class="refsection"><h3 class="title">Authors</h3> + <ul class="itemizedlist"><li class="member">Siddhesh Wani</li></ul></div> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + <span class="previous"><a href="CV_Threshold.html"><< CV_Threshold</a></span> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS Binary files differnew file mode 100644 index 00000000..a6bca91c --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS diff --git a/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB new file mode 100644 index 00000000..14cf1a67 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/DOCS.TAB @@ -0,0 +1,3 @@ +eÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿuÿÿÿÿÿÿÿÿÿÝÿÿÿÿÿÝÿÿÿÿ÷_uÿÿÿÿÿÿÝÿÿÿÿÿÿÿÿÿÿÿÿÿuÿÿÿÿÿÿÿÿuÿÿuÿ÷]×ÿÿÿÿÿ÷_ÿ}ÿÿý×ÿÿ÷×ÿÿuÿÿÿÿÿÿý×ÿÝÌ'ÿÿÿÿÿÿÿÝ}×ÿÿÝÿÿ÷×Ýÿÿÿÿÿ4Ÿÿuÿÿÿÿÿÿu÷_ÿÿuuÿuôüPoÇ +e¡aŠoªÝvQFM†ñe±‘_¤áÁF^d†~šK±¡e¯«áA±Q†ÐgÙ?úÛ¤Ë6†…>á¡Y–†ÿW‡†ÿ†Ä¡¿ÿÿŒ+†ÿÅâè`H¿Œ*RÍ‹4³Ó,ý1’º™JÄÍu*£ +Ž*6*£ŽW*«ão+0¯£h¬È®¯ªª£ÿÿÿ&_ººªªª©Š9:¢Ì‹ªª¨Øº3ʨÆBꪪꪪ0»¨Ò뾪»ÿÿüÒÿ0¿ÿÿüÂÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÌ/ÿÿÿÿÿÿÿÿÿÿóÿÿÌ¢ÿÿÿÿÿüÂÿÿÿÿÿÿÿÿö
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS new file mode 100644 index 00000000..171c6512 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/OFFSETS @@ -0,0 +1 @@ +„f¥s™½{‘2©{ª<¯Žßê¢$k±Žnâ«É®’„ €q/0<Ì8~Šû®2öºÇ0+c©ÄõšÆfµeÁ.í¾Hûö‹ó%ïóÜw¿®Ðƒ×o5ìÛ¸ìÍóöÀ`½}˜@›FZ.šõqÜŧÐ
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS Binary files differnew file mode 100644 index 00000000..d93e5bce --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/POSITIONS diff --git a/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA new file mode 100644 index 00000000..6a59db84 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/SCHEMA @@ -0,0 +1,2 @@ +JavaSearch 1.0 +TMAP bs=2048 rt=1 fl=-1 id1=728 id2=1 diff --git a/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP Binary files differnew file mode 100644 index 00000000..5be4429a --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/JavaHelpSearch/TMAP diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabCaution.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabCaution.png Binary files differnew file mode 100644 index 00000000..231159a5 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabCaution.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabEdit.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabEdit.png Binary files differnew file mode 100644 index 00000000..ff0cca72 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabEdit.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabExecute.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabExecute.png Binary files differnew file mode 100644 index 00000000..4acd4b93 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabExecute.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabImportant.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabImportant.png Binary files differnew file mode 100644 index 00000000..73931b2c --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabImportant.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabNote.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabNote.png Binary files differnew file mode 100644 index 00000000..6607ece6 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabNote.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabTip.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabTip.png Binary files differnew file mode 100644 index 00000000..6607ece6 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabTip.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/ScilabWarning.png b/2.3-1/help/en_US/scilab_en_US_help/ScilabWarning.png Binary files differnew file mode 100644 index 00000000..231159a5 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/ScilabWarning.png diff --git a/2.3-1/help/en_US/scilab_en_US_help/c_code.css b/2.3-1/help/en_US/scilab_en_US_help/c_code.css new file mode 100644 index 00000000..948d2eea --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/c_code.css @@ -0,0 +1,54 @@ +.ccomment { + font-style: italic; + color: #b22222 +} + +.cdefault { + font-style: normal; + color: #000000 +} + +.copenclose { + font-style: normal; + color: #000000 +} + +.coperator { + font-style: normal; + color: #000000 +} + +.cstring { + font-style: normal; + color: #a6557a +} + +.ctype { + font-style: normal; + color: #55a655 +} + +.cpreprocessor { + font-style: normal; + color: #9965a6 +} + +.cid { + font-style: normal; + color: #000000 +} + +.ckeyword { + font-style: normal; + color: #ad3ff2 +} + +.cmodifier { + font-style: normal; + color: #ad3ff2 +} + +.cnumber { + font-style: normal; + color: #008b8b +} diff --git a/2.3-1/help/en_US/scilab_en_US_help/index.html b/2.3-1/help/en_US/scilab_en_US_help/index.html new file mode 100644 index 00000000..8b95d48d --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/index.html @@ -0,0 +1,259 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title></title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + + </td> + <td width="40%" class="center"> + + </td> + <td width="30%" class="next"> + + </td> + </tr></table> + <hr /> + </div> + + + + + <br /><br /> + <h3 class="book-title">Scilab 2 C Converter</h3> +<ul class="list-part"><a name="scilab_2_c_converter_manual"></a><div class="info"></div> + +<li><a href="section_473a2b9e79723ff76a7f243f85d2b6b8.html" class="part">Scilab 2 C Converter</a> +<ul class="list-chapter"><li><a href="AVRADCSetup.html" class="refentry">AVRADCSetup</a> — <span class="refentry-description">Function to initialise ADC of AVR</span></li> + + + + + +<li><a href="AVRDigitalIn.html" class="refentry">AVRDigitalIn</a> — <span class="refentry-description">Function to get state (high\low) of a digital input pin on AVR</span></li> + + + + + +<li><a href="AVRDigitalOut.html" class="refentry">AVRDigitalOut</a> — <span class="refentry-description">Function to change state (high\low) of a digital output pin on AVR</span></li> + + + + + +<li><a href="AVRDigitalPortSetup.html" class="refentry">AVRDigitalPortSetup</a> — <span class="refentry-description">Function to decide direction of port on AVR</span></li> + + + + + +<li><a href="AVRDigitalSetup.html" class="refentry">AVRDigitalSetup</a> — <span class="refentry-description">Function to decide direction of a digital pin on AVR</span></li> + + + + + +<li><a href="AVRGetTimerValue.html" class="refentry">AVRGetTimerValue</a> — <span class="refentry-description">Function to get timer count</span></li> + + + + + +<li><a href="AVRPWM0SetDuty.html" class="refentry">AVRPWM0SetDuty</a> — <span class="refentry-description">Function to Set Duty cycle of PWM Output generated by Timer0 at OC0 pin.</span></li> + + + + + +<li><a href="AVRPWM0Setup.html" class="refentry">AVRPWM0Setup</a> — <span class="refentry-description">Function to Setup OC0 pin for required PWM mode</span></li> + + + + + +<li><a href="AVRPWM1SetDuty.html" class="refentry">AVRPWM1SetDuty</a> — <span class="refentry-description">Function to Set Duty cycle of PWM Output generated by Timer1 at OC1A or OC1B pin.</span></li> + + + + + +<li><a href="AVRPWM1Setup.html" class="refentry">AVRPWM1Setup</a> — <span class="refentry-description">Function to Setup OC1A or OC1B pin for required PWM mode</span></li> + + + + + +<li><a href="AVRPWM2SetDuty.html" class="refentry">AVRPWM2SetDuty</a> — <span class="refentry-description">Function to Set Duty cycle of PWM Output generated by Timer2 at OC2 pin.</span></li> + + + + + +<li><a href="AVRPWM2Setup.html" class="refentry">AVRPWM2Setup</a> — <span class="refentry-description">Function to Setup OC2 pin for required PWM mode</span></li> + + + + + +<li><a href="AVRReadADC.html" class="refentry">AVRReadADC</a> — <span class="refentry-description">Function to get voltage on analog pin on AVR</span></li> + + + + + +<li><a href="AVRSleep.html" class="refentry">AVRSleep</a> — <span class="refentry-description">Function to pause the execution for the given time.</span></li> + + + + + +<li><a href="AVRTimerSetup.html" class="refentry">AVRTimerSetup</a> — <span class="refentry-description">Function to setup Timers in ATmega16</span></li> + + + + + +<li><a href="AVRUARTReceive.html" class="refentry">AVRUARTReceive</a> — <span class="refentry-description">Function to Receive Char value send to ATmega16 using UART or USART.</span></li> + + + + + +<li><a href="AVRUARTSetup.html" class="refentry">AVRUARTSetup</a> — <span class="refentry-description">Function to Setup Serial Communication i.e UART or USART in ATmega16.</span></li> + + + + + +<li><a href="AVRUARTTransmit.html" class="refentry">AVRUARTTransmit</a> — <span class="refentry-description">Function to Transmit data using UART or USART.</span></li> + + + + + +<li><a href="CV_AdaptiveThreshold.html" class="refentry">CV_AdaptiveThreshold</a> — <span class="refentry-description">function to adaptively threshold input image</span></li> + + + + + +<li><a href="CV_Blur.html" class="refentry">CV_Blur</a> — <span class="refentry-description">function to blur image using normalised box filter</span></li> + + + + + +<li><a href="CV_Canny.html" class="refentry">CV_Canny</a> — <span class="refentry-description">Finds edges in image using Canny algorithm</span></li> + + + + + +<li><a href="CV_CornerHarris.html" class="refentry">CV_CornerHarris</a> — <span class="refentry-description">Finds edges in image using Harris algorithm</span></li> + + + + + +<li><a href="CV_CreateImage.html" class="refentry">CV_CreateImage</a> — <span class="refentry-description">function to create an image object of given size and type</span></li> + + + + + +<li><a href="CV_CvtColor.html" class="refentry">CV_CvtColor</a> — <span class="refentry-description">function to convert image from one colorspace to other colorspace</span></li> + + + + + +<li><a href="CV_Dilate.html" class="refentry">CV_Dilate</a> — <span class="refentry-description">dilates an image by using a specific structuring element.</span></li> + + + + + +<li><a href="CV_DistanceTransform.html" class="refentry">CV_DistanceTransform</a> — <span class="refentry-description">function to calculate distance to closest zero pixels for each pixel</span></li> + + + + + +<li><a href="CV_Erode.html" class="refentry">CV_Erode</a> — <span class="refentry-description">Erodes an image by using a specific structuring element.</span></li> + + + + + +<li><a href="CV_GaussianBlur.html" class="refentry">CV_GaussianBlur</a> — <span class="refentry-description">function to blur image using gaussian filter</span></li> + + + + + +<li><a href="CV_GetImgSize.html" class="refentry">CV_GetImgSize</a> — <span class="refentry-description">function to get size of the image (width*height)</span></li> + + + + + +<li><a href="CV_LoadImage.html" class="refentry">CV_LoadImage</a> — <span class="refentry-description">function to load an image object from given filename</span></li> + + + + + +<li><a href="CV_MedianBlur.html" class="refentry">CV_MedianBlur</a> — <span class="refentry-description">function to blur image using median filter</span></li> + + + + + +<li><a href="CV_SaveImage.html" class="refentry">CV_SaveImage</a> — <span class="refentry-description">function to save an image object as a given filename</span></li> + + + + + +<li><a href="CV_ShowImage.html" class="refentry">CV_ShowImage</a> — <span class="refentry-description">function to show an image</span></li> + + + + + +<li><a href="CV_Threshold.html" class="refentry">CV_Threshold</a> — <span class="refentry-description">function to threshold input image</span></li> + + + + + +<li><a href="CV_WaitKey.html" class="refentry">CV_WaitKey</a> — <span class="refentry-description">function similar to cvWaitKey</span></li></ul></li></ul> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + + </td> + <td width="40%" class="center"> + + </td> + <td width="30%" class="next"> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/jhelpidx.xml b/2.3-1/help/en_US/scilab_en_US_help/jhelpidx.xml new file mode 100644 index 00000000..aa5a66e2 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/jhelpidx.xml @@ -0,0 +1,3 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<!DOCTYPE index PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Index Version 1.0//EN" "http://java.sun.com/products/javahelp/index_1_0.dtd"> +<index version="1.0"/>
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/jhelpmap.jhm b/2.3-1/help/en_US/scilab_en_US_help/jhelpmap.jhm new file mode 100644 index 00000000..aebfeb07 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/jhelpmap.jhm @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<!DOCTYPE map PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp Map Version 1.0//EN" "http://java.sun.com/products/javahelp/map_1_0.dtd"> +<map version="1.0"> +<mapID target="index" url="index.html"/> +<mapID target="section_473a2b9e79723ff76a7f243f85d2b6b8" url="section_473a2b9e79723ff76a7f243f85d2b6b8.html"/> +<mapID target="AVRADCSetup" url="AVRADCSetup.html"/> +<mapID target="AVRDigitalIn" url="AVRDigitalIn.html"/> +<mapID target="AVRDigitalOut" url="AVRDigitalOut.html"/> +<mapID target="AVRDigitalPortSetup" url="AVRDigitalPortSetup.html"/> +<mapID target="AVRDigitalSetup" url="AVRDigitalSetup.html"/> +<mapID target="AVRGetTimerValue" url="AVRGetTimerValue.html"/> +<mapID target="AVRPWM0SetDuty" url="AVRPWM0SetDuty.html"/> +<mapID target="AVRPWM0Setup" url="AVRPWM0Setup.html"/> +<mapID target="AVRPWM1SetDuty" url="AVRPWM1SetDuty.html"/> +<mapID target="AVRPWM1Setup" url="AVRPWM1Setup.html"/> +<mapID target="AVRPWM2SetDuty" url="AVRPWM2SetDuty.html"/> +<mapID target="AVRPWM2Setup" url="AVRPWM2Setup.html"/> +<mapID target="AVRReadADC" url="AVRReadADC.html"/> +<mapID target="AVRSleep" url="AVRSleep.html"/> +<mapID target="AVRTimerSetup" url="AVRTimerSetup.html"/> +<mapID target="AVRUARTReceive" url="AVRUARTReceive.html"/> +<mapID target="AVRUARTSetup" url="AVRUARTSetup.html"/> +<mapID target="AVRUARTTransmit" url="AVRUARTTransmit.html"/> +<mapID target="CV_AdaptiveThreshold" url="CV_AdaptiveThreshold.html"/> +<mapID target="CV_Blur" url="CV_Blur.html"/> +<mapID target="CV_Canny" url="CV_Canny.html"/> +<mapID target="CV_CornerHarris" url="CV_CornerHarris.html"/> +<mapID target="CV_CreateImage" url="CV_CreateImage.html"/> +<mapID target="CV_CvtColor" url="CV_CvtColor.html"/> +<mapID target="CV_Dilate" url="CV_Dilate.html"/> +<mapID target="CV_DistanceTransform" url="CV_DistanceTransform.html"/> +<mapID target="CV_Erode" url="CV_Erode.html"/> +<mapID target="CV_GaussianBlur" url="CV_GaussianBlur.html"/> +<mapID target="CV_GetImgSize" url="CV_GetImgSize.html"/> +<mapID target="CV_LoadImage" url="CV_LoadImage.html"/> +<mapID target="CV_MedianBlur" url="CV_MedianBlur.html"/> +<mapID target="CV_SaveImage" url="CV_SaveImage.html"/> +<mapID target="CV_ShowImage" url="CV_ShowImage.html"/> +<mapID target="CV_Threshold" url="CV_Threshold.html"/> +<mapID target="CV_WaitKey" url="CV_WaitKey.html"/> +</map>
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/jhelpset.hs b/2.3-1/help/en_US/scilab_en_US_help/jhelpset.hs new file mode 100644 index 00000000..04f9fef5 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/jhelpset.hs @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<!DOCTYPE helpset + PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp HelpSet Version 1.0//EN" "http://java.sun.com/products/javahelp/helpset_1_0.dtd"> +<helpset version="1.0"> +<title>Scilab 2 C Converter</title> +<maps> +<homeID>top</homeID> +<mapref location="jhelpmap.jhm"/> +</maps> +<view> +<name>TOC</name> +<label>Table Of Contents</label> +<type>javax.help.TOCView</type> +<data>jhelptoc.xml</data> +</view> +<view> +<name>Index</name> +<label>Index</label> +<type>javax.help.IndexView</type> +<data>jhelpidx.xml</data> +</view> +<view> +<name>Search</name> +<label>Search</label> +<type>javax.help.SearchView</type> +<data engine="com.sun.java.help.search.DefaultSearchEngine">JavaHelpSearch</data> +</view> +</helpset>
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/jhelptoc.xml b/2.3-1/help/en_US/scilab_en_US_help/jhelptoc.xml new file mode 100644 index 00000000..176ca2a8 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/jhelptoc.xml @@ -0,0 +1,43 @@ +<?xml version="1.0" encoding="utf-8" standalone="no"?> +<!DOCTYPE toc PUBLIC "-//Sun Microsystems Inc.//DTD JavaHelp TOC Version 1.0//EN" "http://java.sun.com/products/javahelp/toc_1_0.dtd"> +<toc version="1.0"> +<tocitem target="index" text="Scilab 2 C Converter"> +<tocitem target="section_473a2b9e79723ff76a7f243f85d2b6b8" text="Scilab 2 C Converter"> +<tocitem target="AVRADCSetup" text="AVRADCSetup"/> +<tocitem target="AVRDigitalIn" text="AVRDigitalIn"/> +<tocitem target="AVRDigitalOut" text="AVRDigitalOut"/> +<tocitem target="AVRDigitalPortSetup" text="AVRDigitalPortSetup"/> +<tocitem target="AVRDigitalSetup" text="AVRDigitalSetup"/> +<tocitem target="AVRGetTimerValue" text="AVRGetTimerValue"/> +<tocitem target="AVRPWM0SetDuty" text="AVRPWM0SetDuty"/> +<tocitem target="AVRPWM0Setup" text="AVRPWM0Setup"/> +<tocitem target="AVRPWM1SetDuty" text="AVRPWM1SetDuty"/> +<tocitem target="AVRPWM1Setup" text="AVRPWM1Setup"/> +<tocitem target="AVRPWM2SetDuty" text="AVRPWM2SetDuty"/> +<tocitem target="AVRPWM2Setup" text="AVRPWM2Setup"/> +<tocitem target="AVRReadADC" text="AVRReadADC"/> +<tocitem target="AVRSleep" text="AVRSleep"/> +<tocitem target="AVRTimerSetup" text="AVRTimerSetup"/> +<tocitem target="AVRUARTReceive" text="AVRUARTReceive"/> +<tocitem target="AVRUARTSetup" text="AVRUARTSetup"/> +<tocitem target="AVRUARTTransmit" text="AVRUARTTransmit"/> +<tocitem target="CV_AdaptiveThreshold" text="CV_AdaptiveThreshold"/> +<tocitem target="CV_Blur" text="CV_Blur"/> +<tocitem target="CV_Canny" text="CV_Canny"/> +<tocitem target="CV_CornerHarris" text="CV_CornerHarris"/> +<tocitem target="CV_CreateImage" text="CV_CreateImage"/> +<tocitem target="CV_CvtColor" text="CV_CvtColor"/> +<tocitem target="CV_Dilate" text="CV_Dilate"/> +<tocitem target="CV_DistanceTransform" text="CV_DistanceTransform"/> +<tocitem target="CV_Erode" text="CV_Erode"/> +<tocitem target="CV_GaussianBlur" text="CV_GaussianBlur"/> +<tocitem target="CV_GetImgSize" text="CV_GetImgSize"/> +<tocitem target="CV_LoadImage" text="CV_LoadImage"/> +<tocitem target="CV_MedianBlur" text="CV_MedianBlur"/> +<tocitem target="CV_SaveImage" text="CV_SaveImage"/> +<tocitem target="CV_ShowImage" text="CV_ShowImage"/> +<tocitem target="CV_Threshold" text="CV_Threshold"/> +<tocitem target="CV_WaitKey" text="CV_WaitKey"/> +</tocitem> +</tocitem> +</toc>
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/scilab_code.css b/2.3-1/help/en_US/scilab_en_US_help/scilab_code.css new file mode 100644 index 00000000..658f42e0 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/scilab_code.css @@ -0,0 +1,96 @@ +.scilabcomment { + font-style: italic; + color: #01a801 +} + +.scilabdefault { + font-style: normal; + color: #000000 +} + +.scilabspecial { + font-style: normal; + color: #ffaa00 +} + +.scilabconstants { + font-style: normal; + color: #da70d6 +} + +.scilaboperator { + font-style: normal; + color: #5c5c5c +} + +.scilabnumber { + font-style: normal; + color: #bc8f8f +} + +.scilabfkeyword { + font-style: normal; + color: #b01813 +} + +.scilabskeyword { + font-style: normal; + color: #a020f0 +} + +.scilabckeyword { + font-style: normal; + color: #5f9ea0 +} + +.scilabcommand { + font-style: normal; + color: #32b9b9 +} + +.scilabmacro { + font-style: normal; + color: #ae5cb0 +} + +a.scilabcommand { + font-style: normal; + text-decoration: underline; + color: #32b9b9 +} + +a.scilabmacro { + font-style: normal; + text-decoration: underline; + color: #ae5cb0 +} + +.scilabstring { + font-style: normal; + color: #bc8f8f +} + +.scilabid { + font-style: normal; + color: #000000 +} + +.scilabinputoutputargs { + font-weight: bold; + color: #834310 +} + +.scilabfunctionid { + font-weight: bold; + color: #000000 +} + +.scilabfield { + font-style: normal; + color: #aaaaaa +} + +.scilabopenclose { + font-style: normal; + color: #4a55db +} diff --git a/2.3-1/help/en_US/scilab_en_US_help/section_473a2b9e79723ff76a7f243f85d2b6b8.html b/2.3-1/help/en_US/scilab_en_US_help/section_473a2b9e79723ff76a7f243f85d2b6b8.html new file mode 100644 index 00000000..647ce7ce --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/section_473a2b9e79723ff76a7f243f85d2b6b8.html @@ -0,0 +1,259 @@ +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> + <title></title> + <style type="text/css" media="all"> + @import url("scilab_code.css"); + @import url("xml_code.css"); + @import url("c_code.css"); + @import url("style.css"); + </style> + </head> + <body> + <div class="manualnavbar"> + <table width="100%"><tr> + <td width="30%"> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="index.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + + </td> + </tr></table> + <hr /> + </div> + + + + <span class="path"><a href="index.html">Scilab 2 C Converter</a> >> Scilab 2 C Converter</span> + + <br /><br /> + <h3 class="title-part">Scilab 2 C Converter</h3> +<ul class="list-chapter"><li><a href="AVRADCSetup.html" class="refentry">AVRADCSetup</a> — <span class="refentry-description">Function to initialise ADC of AVR</span></li> + + + + + +<li><a href="AVRDigitalIn.html" class="refentry">AVRDigitalIn</a> — <span class="refentry-description">Function to get state (high\low) of a digital input pin on AVR</span></li> + + + + + +<li><a href="AVRDigitalOut.html" class="refentry">AVRDigitalOut</a> — <span class="refentry-description">Function to change state (high\low) of a digital output pin on AVR</span></li> + + + + + +<li><a href="AVRDigitalPortSetup.html" class="refentry">AVRDigitalPortSetup</a> — <span class="refentry-description">Function to decide direction of port on AVR</span></li> + + + + + +<li><a href="AVRDigitalSetup.html" class="refentry">AVRDigitalSetup</a> — <span class="refentry-description">Function to decide direction of a digital pin on AVR</span></li> + + + + + +<li><a href="AVRGetTimerValue.html" class="refentry">AVRGetTimerValue</a> — <span class="refentry-description">Function to get timer count</span></li> + + + + + +<li><a href="AVRPWM0SetDuty.html" class="refentry">AVRPWM0SetDuty</a> — <span class="refentry-description">Function to Set Duty cycle of PWM Output generated by Timer0 at OC0 pin.</span></li> + + + + + +<li><a href="AVRPWM0Setup.html" class="refentry">AVRPWM0Setup</a> — <span class="refentry-description">Function to Setup OC0 pin for required PWM mode</span></li> + + + + + +<li><a href="AVRPWM1SetDuty.html" class="refentry">AVRPWM1SetDuty</a> — <span class="refentry-description">Function to Set Duty cycle of PWM Output generated by Timer1 at OC1A or OC1B pin.</span></li> + + + + + +<li><a href="AVRPWM1Setup.html" class="refentry">AVRPWM1Setup</a> — <span class="refentry-description">Function to Setup OC1A or OC1B pin for required PWM mode</span></li> + + + + + +<li><a href="AVRPWM2SetDuty.html" class="refentry">AVRPWM2SetDuty</a> — <span class="refentry-description">Function to Set Duty cycle of PWM Output generated by Timer2 at OC2 pin.</span></li> + + + + + +<li><a href="AVRPWM2Setup.html" class="refentry">AVRPWM2Setup</a> — <span class="refentry-description">Function to Setup OC2 pin for required PWM mode</span></li> + + + + + +<li><a href="AVRReadADC.html" class="refentry">AVRReadADC</a> — <span class="refentry-description">Function to get voltage on analog pin on AVR</span></li> + + + + + +<li><a href="AVRSleep.html" class="refentry">AVRSleep</a> — <span class="refentry-description">Function to pause the execution for the given time.</span></li> + + + + + +<li><a href="AVRTimerSetup.html" class="refentry">AVRTimerSetup</a> — <span class="refentry-description">Function to setup Timers in ATmega16</span></li> + + + + + +<li><a href="AVRUARTReceive.html" class="refentry">AVRUARTReceive</a> — <span class="refentry-description">Function to Receive Char value send to ATmega16 using UART or USART.</span></li> + + + + + +<li><a href="AVRUARTSetup.html" class="refentry">AVRUARTSetup</a> — <span class="refentry-description">Function to Setup Serial Communication i.e UART or USART in ATmega16.</span></li> + + + + + +<li><a href="AVRUARTTransmit.html" class="refentry">AVRUARTTransmit</a> — <span class="refentry-description">Function to Transmit data using UART or USART.</span></li> + + + + + +<li><a href="CV_AdaptiveThreshold.html" class="refentry">CV_AdaptiveThreshold</a> — <span class="refentry-description">function to adaptively threshold input image</span></li> + + + + + +<li><a href="CV_Blur.html" class="refentry">CV_Blur</a> — <span class="refentry-description">function to blur image using normalised box filter</span></li> + + + + + +<li><a href="CV_Canny.html" class="refentry">CV_Canny</a> — <span class="refentry-description">Finds edges in image using Canny algorithm</span></li> + + + + + +<li><a href="CV_CornerHarris.html" class="refentry">CV_CornerHarris</a> — <span class="refentry-description">Finds edges in image using Harris algorithm</span></li> + + + + + +<li><a href="CV_CreateImage.html" class="refentry">CV_CreateImage</a> — <span class="refentry-description">function to create an image object of given size and type</span></li> + + + + + +<li><a href="CV_CvtColor.html" class="refentry">CV_CvtColor</a> — <span class="refentry-description">function to convert image from one colorspace to other colorspace</span></li> + + + + + +<li><a href="CV_Dilate.html" class="refentry">CV_Dilate</a> — <span class="refentry-description">dilates an image by using a specific structuring element.</span></li> + + + + + +<li><a href="CV_DistanceTransform.html" class="refentry">CV_DistanceTransform</a> — <span class="refentry-description">function to calculate distance to closest zero pixels for each pixel</span></li> + + + + + +<li><a href="CV_Erode.html" class="refentry">CV_Erode</a> — <span class="refentry-description">Erodes an image by using a specific structuring element.</span></li> + + + + + +<li><a href="CV_GaussianBlur.html" class="refentry">CV_GaussianBlur</a> — <span class="refentry-description">function to blur image using gaussian filter</span></li> + + + + + +<li><a href="CV_GetImgSize.html" class="refentry">CV_GetImgSize</a> — <span class="refentry-description">function to get size of the image (width*height)</span></li> + + + + + +<li><a href="CV_LoadImage.html" class="refentry">CV_LoadImage</a> — <span class="refentry-description">function to load an image object from given filename</span></li> + + + + + +<li><a href="CV_MedianBlur.html" class="refentry">CV_MedianBlur</a> — <span class="refentry-description">function to blur image using median filter</span></li> + + + + + +<li><a href="CV_SaveImage.html" class="refentry">CV_SaveImage</a> — <span class="refentry-description">function to save an image object as a given filename</span></li> + + + + + +<li><a href="CV_ShowImage.html" class="refentry">CV_ShowImage</a> — <span class="refentry-description">function to show an image</span></li> + + + + + +<li><a href="CV_Threshold.html" class="refentry">CV_Threshold</a> — <span class="refentry-description">function to threshold input image</span></li> + + + + + +<li><a href="CV_WaitKey.html" class="refentry">CV_WaitKey</a> — <span class="refentry-description">function similar to cvWaitKey</span></li></ul> + <br /> + + <div class="manualnavbar"> + <table width="100%"> + <tr><td colspan="3" class="next"><a href="http://bugzilla.scilab.org/enter_bug.cgi?product=Scilab%20software&component=Documentation%20pages" class="ulink">Report an issue</a></td></tr> +<tr> + <td width="30%"> + + </td> + <td width="40%" class="center"> + <span class="top"><a href="index.html">Scilab 2 C Converter</a></span> + + </td> + <td width="30%" class="next"> + + </td> + </tr></table> + <hr /> + </div> + </body> +</html> diff --git a/2.3-1/help/en_US/scilab_en_US_help/style.css b/2.3-1/help/en_US/scilab_en_US_help/style.css new file mode 100644 index 00000000..0fe8923d --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/style.css @@ -0,0 +1,350 @@ +body { + color:#000000; + background-color:#ffffff; + font-family:sans-serif; + font-size:100%; + margin:5px; + padding:0; + background : url("/img/body.png"); + background-repeat : repeat-x; +} + +.para { + padding-left: 10px; +} + +.refname { + color: #ff6c0a; +} +.refpurpose { + font-size: 110%; +} + +.synopsis { + border: 1px solid black; + width:80%; + padding: 0.5em; +} + +.editbar { + text-align: right; +} + +.term { + color:#800000; + font-size:100%; +} + +h3 { + color: #000063; + font-weight: bold; + font-size:130%; + margin-bottom: 10px; +} + +.programlisting { + font-family: monospace; + font-size: 100%; + background-color:#EEEEFF; + border-color:#CCCCCC; + border-style:solid; + border-width:2px medium; + width:80%; + color:#333333; + line-height:120%; + padding:10px; +} + +.literal { + font-family: monospace; + font-size: 100%; +} + +.option { + font-family: monospace; + font-style: italic; + font-size: 100%; +} + +.command { + font-family: monospace; + font-size: 100%; + color: #32b9b9; +} + +.function { + font-family: monospace; + font-size: 100%; + color: #32b9b9; +} + +.varname { + font-family: monospace; + font-weight: bold; + font-size: 100%; +} + +.constant { + font-family: monospace; + font-size: 100%; + color: #da70d6; +} + +a { + color: blue; + text-decoration:none; +} + +a:hover { + text-decoration:underline; +} + +.itemizedlist { + list-style-type: disk; +} + +.inline-list li { + display: inline; + list-style-type: disk; +} + +.vert-list { + list-style-type: disk; +} + +pre { + margin-bottom: 0px; + margin-top: 0px; +} + +.leftpart { + position:absolute; + float:left; + width: 186px; + padding: 5px; + font-size: smaller; +} + +.content { + margin-top: 100px; + margin-left: 196px +} + +.container { + margin: 0 auto; + width:1024px; +} + +ul.toc li.list-active { + list-style-type:disc; + font-weight:bold; +} + +ul.toc li.parent { + font-size: 115%; + padding: 5px 0px 5px 11px; + border-bottom: 1px solid #cccccc; + margin-bottom: 5px; +} + +ul.toc li.root { + font-size: 135%; + padding: 5px 0px 5px 11px; + border-bottom: 1px solid #cccccc; + margin-bottom: 5px; +} + +ul.toc li { + font-size: 85%; + margin: 1px 0 1px 1px; + padding: 1px 0 1px 11px; + background-repeat: no-repeat; + background-position: center left; + list-style-type: circle; +} + +.next { + float:right; + text-align: right; +} + +.center { + text-align: center; +} + +.screen { + font-family: monospace; + font-size: 100%; + background-color:#FFFFFF; + border-color:#CCCCCC; + border-style:solid; + border-width:2px medium; + width:80%; + color:#333333; + line-height:120%; + padding:10px; +} + +/* Top and bottom navigation controls on manual pages --------------------- */ +div.manualnavbar { + background-color: #E0E0E0; + color: inherit; + padding: 4px; + margin-bottom: 10px; +} +div.manualnavbar .prev { + padding-right: 4px; +} +div.manualnavbar .next { + text-align: right; + padding-left: 4px; +} + +div.manualnavbar .top { + text-align: center; + display: block; +} + +div.manualnavbar hr { + color: #cccccc; + background-color: #cccccc; +} + +/* Footer navigation area ------------------------------------------------- */ + +#pagefooter { + position: relative; + font-size: 75%; + color: inherit; + background-color: #e5e5e5; + width: 100%; +} + +#pagefooterleft { + top: 0px; + left: 0px; + padding: 6px; + margin-right: 30%; +} + +#pagefooterright { + text-align: right; + margin-left: 50%; + padding: 6px; +} +#footnav { + color: inherit; + background-color: #9999cc; + border-width: 1px 0px; + border-color: #333366; + border-style: solid; + text-align: right; + padding-right: 6px; +} + + + + + #global{ +/* width: 90%; */ + max-width: 90em; +/* min-width: 850px; */ + margin-left: auto; + margin-right: auto; + } + + #myHeader{ + background-color:#000000; + color:white; + margin-bottom : 10px; + position : relative; + text-align: center; +/* width : 1024px;*/ + height : 100px; + padding-left : 20px; + background : url("http://atoms.scilab.org/images/homepage/cadre_head.png"); + background-repeat : no-repeat; + background-position : 0px 0px; + + } + + #myFooter{ + background-color:#E5E5E5; + font-color:black; +/* width: 90%;*/ + max-width: 90em; +/* min-width: 850px; + margin-left: 5%; + margin-right: 5%;*/ + margin-top:10px; + padding:10px; + } + + #mainArea{ + width: 100%; + overflow: hidden; + } + + #myLeftArea{ + color:white; + float: left; + width: 180px; + padding:5px; + } + + #myMiddleArea{ + color:black; + margin-left: 200px; + padding: 10px 20px; + } + + #myRightArea{ + color:white; + float: right; + width: 200px; + padding: 12px 20px; + } + + +div#cadre_head +{ + position : relative; + text-align: center; +/* width : 1024px;*/ + height : 100px; + padding-left : 20px; + background : url("/img/cadre_head.png"); + background-repeat : no-repeat; + background-position : 0px 0px; +} + + +div#slogan{ + position: absolute; + top : 50px; + left:251px; + color:#0000AA; + font: 120%, Georgia,Serif; +} +div#cadre_help +{ + position: absolute; + top:45px; + right:0px; + font-size:0.8em; + color:#0000AA; +} + +table.revhistory +{ + width:80%; + border-color:#CCCCCC; + border-style:solid; + border-width:2px medium; + margin-bottom: 10px; +} + +table.revhistory tr.title td +{ + background-color: #9999CC; +}
\ No newline at end of file diff --git a/2.3-1/help/en_US/scilab_en_US_help/xml_code.css b/2.3-1/help/en_US/scilab_en_US_help/xml_code.css new file mode 100644 index 00000000..9e4c27f9 --- /dev/null +++ b/2.3-1/help/en_US/scilab_en_US_help/xml_code.css @@ -0,0 +1,94 @@ +.xmlcomment { + font-style: italic; + color: #01a801 +} + +.xmldefault { + font-style: normal; + color: #000000 +} + +.xmlentity { + font-style: normal; + color: #ffaa00 +} + +.xmlopeninstr { + font-style: normal; + color: #000000 +} + +.xmlcloseinstr { + font-style: normal; + color: #000000 +} + +.xmlinstrname { + font-style: normal; + color: #9965a6 +} + +.xmllowtag { + font-style: normal; + color: #000000 +} + +.xmltagname { + font-style: normal; + color: #0303ff +} + +.xmllowclose { + font-style: normal; + color: #000000 +} + +.xmlopencomment { + font-style: italic; + color: #01a801 +} + +.xmlcommentend { + font-style: italic; + color: #01a801 +} + +.xmlcomment { + font-style: italic; + color: #01a801 +} + +.xmlopencdata { + font-style: normal; + color: #c45555 +} + +.xmlcdataend { + font-style: normal; + color: #c45555 +} + +.xmlcdata { + font-style: normal; + color: #000000 +} + +.xmlattributename { + font-style: normal; + color: #9965a6 +} + +.xmlequal { + font-style: normal; + color: #000000 +} + +.xmlattributevalue { + font-style: normal; + color: #973964 +} + +.xmlautoclose { + font-style: normal; + color: #000000 +} |