<?xml version="1.0" encoding="ISO-8859-1" ?><rss version="2.0">
<channel>
    <title>RoboRealm Forum</title>
    <link>http://www.RoboRealm.com/</link>
    <description>The newest forum threads.</description>
    <lastBuildDate>Tue, 30 Nov 1999 00:11:00 EST</lastBuildDate>
    <language>en-us</language>
    <copyright>Copyright: (C) RoboRealm, http://www.RoboRealm.com/</copyright>
    <docs>http://www.RoboRealm.com/</docs>

    <item>
        <title>No Title</title>
        <description>
        Thank you STeven!!!&lt;br&gt;&lt;br&gt;I have tried this way before, but I made a stupid mistake....&lt;br&gt;&lt;br&gt;I wrote points (with s) = GetArrayVariable(&quot;PROBED_EDGES&quot;) &lt;br&gt;and then &lt;br&gt;&lt;br&gt;x1 = point (without s) (0) .... &lt;br&gt;&lt;br&gt;And then I tought that is a problem of dimensions, etc..&lt;br&gt;&lt;br&gt;OK Thank you for everthing!&lt;br&gt;&lt;br&gt;bye&lt;br&gt;Blaz        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3513</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3513</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Blaz,&lt;br&gt;&lt;br&gt;In your case try&lt;br&gt;&lt;br&gt;points = GetArrayVariable(&quot;PROBED_EDGES&quot;) &lt;br&gt;&lt;br&gt;x1=point(0)&lt;br&gt;y1=point(1)&lt;br&gt;x2=point(2)&lt;br&gt;y2=point(3)&lt;br&gt;&lt;br&gt;SetVariable &quot;Y1&quot;, y1&lt;br&gt;SetVariable &quot;Y2&quot;, y2 &lt;br&gt;&lt;br&gt;or if you plan to use those values in other modules where typically one types in just a number for a shorthand try&lt;br&gt;&lt;br&gt;[PROBED_EDGES:0] for the first element&lt;br&gt;[PROBED_EDGES:1] for the second, etc.&lt;br&gt;&lt;br&gt;instead of the number that you would normally type in. The [] tell the module that it is a variable and an expression to be evalulated before the&lt;br&gt;actual number is used. So you can also use&lt;br&gt;&lt;br&gt;[PROBED_EDGES:0+5]&lt;br&gt;&lt;br&gt;if you&apos;d like.&lt;br&gt;&lt;br&gt;STeven.&lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3513</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3513</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Just a correction:&lt;br&gt;&lt;br&gt;The result is not 0 is nothing (is empty)!&lt;br&gt;&lt;br&gt;Blaz        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3513</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3513</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Thanks STeven!&lt;br&gt;&lt;br&gt;Edge probe is the right thing. But I have an another problem... When you do the Edge Probe an you find two edges points. The position xy (of the points) is writen in an array PROBED_EDGES. I would like to use this values in some equations. &lt;br&gt;&lt;br&gt;I tried this way, but is not the right way because I can not get the variables I need. &lt;br&gt;&lt;br&gt;Dim point &lt;br&gt;ReDim point(2,2)&lt;br&gt;&lt;br&gt;point(2,2) = GetArrayVariable(&quot;PROBED_EDGES&quot;)&lt;br&gt;&lt;br&gt;x1=point(0,0)&lt;br&gt;y1=point(0,1)&lt;br&gt;x2=point(1,0)&lt;br&gt;y2=point(1,1)&lt;br&gt;&lt;br&gt;SetVariable &quot;Y1&quot;, y1&lt;br&gt;SetVariable &quot;Y2&quot;, y2&lt;br&gt;&lt;br&gt;The resoult is 0 for both...&lt;br&gt;&lt;br&gt;Any Ideas?&lt;br&gt;&lt;br&gt;Thank you in advance&lt;br&gt;&lt;br&gt;Blaz        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3513</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3513</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Blaz,&lt;br&gt;&lt;br&gt;Yes, you can use the edge probe to look along the Y line for the edges of the object. See the robofile below for a quick example using a test image.&lt;br&gt;&lt;br&gt;Note that the trick is to use the [variable] expression in the edge probe GUI instead of a static number. This allows for dynamic configuration of GUI interfaces.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3513</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3513</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>border points</title>
        <description>
        Hi!&lt;br&gt;I have a little problem... I am trying to find min_x and max_x value on a speciefied Y (for example COG_Y). I uploaded a picture where is drawn a red line between two points which are the global max_x and global min_x. &lt;br&gt;I would like to know the lokal max_x and lokal min_x.&lt;br&gt;&lt;br&gt;In other words max_x and min_x &lt;br&gt;on y=COG_Y and draw the line between them.&lt;br&gt;&lt;br&gt;Any suggestions?&lt;br&gt;&lt;br&gt;bye &lt;br&gt;Blaz&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;&lt;br&gt;&lt;a target=_blank href=&quot;http://www.roborealm.com/uploads/20246_1.jpg&quot;&gt;&lt;img border=1 src=&quot;http://www.roborealm.com/uploads/20246_thumb_1.jpg&quot;&gt;&lt;/a&gt;&amp;nbsp;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3513</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3513</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
</channel>
</rss>
