<?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>Sun, 27 Aug 2006 09:17:11 PST</lastBuildDate>
    <language>en-us</language>
    <copyright>Copyright: (C) RoboRealm, http://www.RoboRealm.com/</copyright>
    <docs>http://www.RoboRealm.com/</docs>

    <item>
        <title>Listen Module error</title>
        <description>
        Ive been having an error with RoboRealm when trying to access the Listen Module.&amp;nbsp;&amp;nbsp;When I click the Listen Module in RR a box pops up with the error &quot;Listen Module Failed at CreateRecoContext!&quot;.&amp;nbsp;&amp;nbsp;I was just wondering if anyone knows why this error is occuring.&amp;nbsp;&amp;nbsp;Ive tried searching for it but have no idea what it means.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3624</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3624</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Wrapper classes for reading variables from RR_API</title>
        <description>
        I'm attaching three files of C++. These put wrappers around variables to be read from RR using the RR_API. These classes only do reads, so far, since that is all I've needed to date. I'll add writing at some point in the future but though some might find limited routines these useful before I get write opeartions.&lt;br&gt;&lt;br&gt;The first class is RoboRealmVar which wraps individual variables. Its a template class. I've created specific instanctiations for int, float and string. It should be easy to add more if necessary. The only thing you might have to write is a simple conversion from ascii to data type routine. See the string instatiation for how it was done there. &lt;br&gt;&lt;br&gt;To declare a var is done by:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rrIntVar mCogX;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rrIntVar mCogBoxSize;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rrIntVar mImageWidth;&lt;br&gt;&lt;br&gt;Instatiate it with &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogX(&quot;COG_X&quot;, mRoboRealm),&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mImageWidth(&quot;IMAGE_WIDTH&quot;, mRoboRealm),&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogBoxSize(&quot;COG_BOX_SIZE&quot;, mRoboRealm),&lt;br&gt;&lt;br&gt;where mRoboRealm is the instance of RR from RR_API. &lt;br&gt;&lt;br&gt;All the examples are for the COG module and are using class members, hence the 'm' prefix. &lt;br&gt;&lt;br&gt;You can retrieve the values with:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; int cogX =&amp;nbsp;&amp;nbsp;mCogX();&lt;br&gt;&lt;br&gt;which uses an overload of operator();&lt;br&gt;&lt;br&gt;If you want to retrieve mutliple variables with one call use the class RoboRealmVars. You may have noticed the class RoboRealmVarBase which is a base class for RoboRealmVars. It is used to provide an interface to individual vars when working with multiple vars.&lt;br&gt;&lt;br&gt;Do this for multiple variables:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;RoboRealmVars mCogVars;&lt;br&gt;&lt;br&gt;then:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars(mRoboRealm)&lt;br&gt;&lt;br&gt;and then:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars.add(mCogX);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars.add(mImageWidth);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars.add(mCogBoxSize);&lt;br&gt;&lt;br&gt;and finally:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars();&lt;br&gt;&lt;br&gt;which is another operator() overload for reading multiple vars. All the individual vars then have values that can be accessed as shown above in the individual var example. &lt;br&gt;&lt;br&gt;Hope someone finds these useful. I know reading multiple vars took a lot of detail chasing that this new class how hides. &lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;[image2]&lt;br&gt;[image3]&lt;br&gt;         </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3598</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3598</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Wrapper classes for reading variables from RR_API</title>
        <description>
        I'm attaching three files of C++. These put wrappers around variables to be read from RR using the RR_API. These classes only do reads, so far, since that is all I've needed to date. I'll add writing at some point in the future but though some might find limited routines these useful before I get write opeartions.&lt;br&gt;&lt;br&gt;The first class is RoboRealmVar which wraps individual variables. Its a template class. I've created specific instanctiations for int, float and string. It should be easy to add more if necessary. The only thing you might have to write is a simple conversion from ascii to data type routine. See the string instatiation for how it was done there. &lt;br&gt;&lt;br&gt;To declare a var is done by:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rrIntVar mCogX;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rrIntVar mCogBoxSize;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;rrIntVar mImageWidth;&lt;br&gt;&lt;br&gt;Instatiate it with &lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogX(&quot;COG_X&quot;, mRoboRealm),&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mImageWidth(&quot;IMAGE_WIDTH&quot;, mRoboRealm),&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogBoxSize(&quot;COG_BOX_SIZE&quot;, mRoboRealm),&lt;br&gt;&lt;br&gt;where mRoboRealm is the instance of RR from RR_API. &lt;br&gt;&lt;br&gt;All the examples are for the COG module and are using class members, hence the 'm' prefix. &lt;br&gt;&lt;br&gt;You can retrieve the values with:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; int cogX =&amp;nbsp;&amp;nbsp;mCogX();&lt;br&gt;&lt;br&gt;which uses an overload of operator();&lt;br&gt;&lt;br&gt;If you want to retrieve mutliple variables with one call use the class RoboRealmVars. You may have noticed the class RoboRealmVarBase which is a base class for RoboRealmVars. It is used to provide an interface to individual vars when working with multiple vars.&lt;br&gt;&lt;br&gt;Do this for multiple variables:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;RoboRealmVars mCogVars;&lt;br&gt;&lt;br&gt;then:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars(mRoboRealm)&lt;br&gt;&lt;br&gt;and then:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars.add(mCogX);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars.add(mImageWidth);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars.add(mCogBoxSize);&lt;br&gt;&lt;br&gt;and finally:&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;mCogVars();&lt;br&gt;&lt;br&gt;which is another operator() overload for reading multiple vars. All the individual vars then have values that can be accessed as shown above in the individual var example. &lt;br&gt;&lt;br&gt;Hope someone finds these useful. I know reading multiple vars took a lot of detail chasing that this new class how hides. &lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;[image2]&lt;br&gt;[image3]&lt;br&gt;         </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3597</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3597</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Seam tracking</title>
        <description>
        Dear Steven&lt;br&gt;I am enclosing a bmp. I need to find the co-ordinates of the point of intersection between the laser line (green) and the seam. I have tried sobel edge vertical and horizontal, not able to achieve results. Can u please help?        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3594</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3594</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Project.</title>
        <description>
        Hi,&lt;br&gt;I'm starting a project with a group of friends for a class. We built the head where it will enclose all the modules, servos and hopefully the power supply.&lt;br&gt;What we are trying to use camera sensors, which would detect a certain color, and center the color and follow the object. While following the object the neck and the head would rotate accordingly.&amp;nbsp;&amp;nbsp;We are still in the research phase and trying to see what software we would use and see how we would interface two processors, one for the image processing and the other for the neck and face movement. The whole unit would enclose the modules in the head unit. Any suggestions or guidance would be greatly appreciated.&lt;br&gt;&lt;br&gt;Thank you for your time..&lt;br&gt;Major        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3580</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3580</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Project.</title>
        <description>
        Hi,&lt;br&gt;I'm starting a project with a group of friends for a class. We built the head where it will enclose all the modules, servos and hopefully the power supply.&lt;br&gt;What we are trying to use camera sensors, which would detect a certain color, and center the color and follow the object. While following the object the neck and the head would rotate accordingly.&amp;nbsp;&amp;nbsp;We are still in the research phase and trying to see what software we would use and see how we would interface two processors, one for the image processing and the other for the neck and face movement. The whole unit would enclose the modules in the head unit. Any suggestions or guidance would be greatly appreciated.&lt;br&gt;&lt;br&gt;Thank you for your time..&lt;br&gt;Major        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3579</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3579</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Face tracking</title>
        <description>
        Hello,&lt;br&gt;&lt;br&gt;i'm trying desperately tracking a face with RoboRealm.&lt;br&gt;try with color filters (red) to date are very bad. It would surely be better, the eyes and the mouth to recognize and realize then face persecution. Unfortunately I have no idea how am I supposed to make me RR. anyone can help me or provide a demo program?&lt;br&gt;&lt;br&gt;Regards, &lt;br&gt;Ulli&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3557</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3557</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Excuse my late answer but I wasn't allowed to enter the laboratory during the last days.&lt;br&gt;&lt;br&gt;I found out that AMCap gives me an error message to:&lt;br&gt;&lt;br&gt;&quot;LoadVideoFormat: unable to restore resolution, hr=0x80040200&quot;&lt;br&gt;&lt;br&gt;maybe that helps.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3499</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3499</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        I saw that the photo's haven't been uploaded.&lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;&lt;br&gt;[image2]        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3434</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3434</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hello STeven,&lt;br&gt;&lt;br&gt;&lt;br&gt;Here's a picture of the setup. I hope you can make something of it, i can't, becouse the canny module won't find the edges of the circles.&lt;br&gt;&lt;br&gt;Could the software track 3 green laserpoints being formed as a triangle, so that the 3 points show up on the wood and that the roborealm software can pick the middele of the triangle so it still aimes at the middel of the target?&lt;br&gt;&lt;br&gt;Grtz Hein van den Broek&lt;br&gt;&lt;br&gt;The first picture shows the board from de perspective of the shooter, the second wan is more detailed one of the board.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3434</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3434</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        This is the test video I am working on.         </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3425</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3425</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        here is what I am working on.Just a 4 wheel drive rock crawler with a camera.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3408</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3408</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>How to Check if a specific fiducial is pressent?</title>
        <description>
        I all&lt;br&gt;Im trying to overlay some pictures over specific fiducial, its easy if there is only one pressend as i can just &lt;br&gt;[if FIDUCIAL_NAME = Attic Then overlay]&lt;br&gt;but how can i check each fiducial in a array for some specific ones?&lt;br&gt;i pretty sure that vbscript is the way but i cant get it.&lt;br&gt;&lt;br&gt;Can some one help making a *.robo to check if ex.: lobby and garden are present and get the each coordinates so i can overlay a specific pic?        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3380</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3380</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Technology partners</title>
        <description>
        Accusoft Pegasus, the largest supplier of imaging software development kits (SDKs) and viewers, would like to inquire about a technology partnership with RoboRealm.         </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3341</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3341</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>How can I capture a Parallax &quot;sequence&quot; in RoboRealm?</title>
        <description>
        I have a Parallax PSC controller and have captured a sequence of moves using their CPSCI program.&amp;nbsp;&amp;nbsp;I would like to capture the moves in RoboRealm, but the Parallax interface in RoboRealm does not have an &quot;add&quot; button to capture the setting.&amp;nbsp;&amp;nbsp;How can I store the move sequence?&amp;nbsp;&amp;nbsp;Is there a way to use an array instead of having to define a variable for each move? (that would take over 100 variables!).&amp;nbsp;&amp;nbsp;Ideally I would like to have a set of sequences that I can call whenever the camera shows a particular view.&amp;nbsp;&amp;nbsp;thanks!&amp;nbsp;&amp;nbsp;-- pics of my 'bot are attached.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3318</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3318</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        So I have done a little more experimenting and it looks like it might be dumping the buffer into the console about every 200 characters. But getting to that limit&amp;nbsp;&amp;nbsp;or disconnecting and reconnecting by pushing the button in the serial comm module seem to be the only things that make it dump.&lt;br&gt;&lt;br&gt;I have set up a loop that prints every char 0-255 with a 20ms delay between sending chars and it will just happily run through that loop dumping every couple hundred characters. (It will create a new line on a line break char, but it doesn't cause it to dump)&lt;br&gt;&lt;br&gt;There is one peculiarity I noticed though. When I view the chars in decimal in both realterm and in Roborealm it prints out &quot;...7 8 9 13 10 11 12 13 14 15...&quot; The 13 appearing once out of place seems a little odd.&lt;br&gt;&lt;br&gt;I attached the .hex file that I uploaded to my axon to test this.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3305</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3305</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        bs2 program        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3216</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3216</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        when I open rr and put in boe bot mod w/ nothing else, bs2 off - I click ok on the boe mod , or restart rr,&amp;nbsp;&amp;nbsp;no warning no error, no more rr! &lt;br&gt;with the bs2 on it doesn't close. &lt;br&gt;I tried the botcontrolformsrs.bs2 , and changed the serin/ serout to pin 16 (serial cable) blocked the bluetooth (I don't have one) and it didn't work!!!!&lt;br&gt;&lt;br&gt;what is msrs?        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3216</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3216</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        as u can see im having trouble uploading the file.........        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=1471</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=1471</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        here ya go        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=1471</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=1471</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        here ya go!        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=1471</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=1471</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Yeh here ya go!        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=1471</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=1471</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>RR crashes constantly</title>
        <description>
        RR constantly crashes when I press the &quot;New&quot; button for a new program. It does this regardless if I have a program running or not, or if the camera is on or off. I've included the simple robo program I had loaded, as well as the appcompat.txt file created with the application error.&lt;br&gt;&lt;br&gt;RR also crashes occasionally when I am using the Image Match function. I've looked on the forum, but cannot see any complaints of RR crashing this often. Any help is much appreciated. Thanks, Paul.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3220</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3220</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        &lt;br&gt;Last test for jpeg converter&lt;br&gt;&lt;br&gt;[image1]        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3174</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3174</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        &lt;br&gt;This is still a test&lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3174</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3174</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        This is only a test&lt;br&gt;&lt;br&gt;[image1]        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3174</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3174</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hi Steven,&lt;br&gt;&lt;br&gt;I've attached my .robo file. Presently I am trying to read distance and angle information. But I would eventually need information on bump sensors too. It seems that the Java API files are working but the C API files are unable to read the variable values. Any reason why this might be happening?&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Nimit        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3150</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3150</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Trying to post the image again        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3176</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3176</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>COG for large images</title>
        <description>
        The COG module doesn't seem to work for the attached, very large image and the Geometric Statistics module gives negative values for the COG.&amp;nbsp;&amp;nbsp;I'm guessing it's an overflow problem?&amp;nbsp;&amp;nbsp;It would be great if it was possible to use the Circle module on this image as well (after using Canny edge detection of course).&lt;br&gt;&lt;br&gt;Any thoughts?&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Clint        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3176</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3176</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        &lt;br&gt;Image Test 3&lt;br&gt;&lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3174</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3174</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        &lt;br&gt;Test 2&lt;br&gt;&lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3174</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3174</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Just a test for image transfer sizes</title>
        <description>
        &lt;br&gt;This is only a test.&lt;br&gt;&lt;br&gt;&lt;br&gt;[image1]        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3174</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3174</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        &lt;br&gt;Here is the second set:&lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;[image2]&lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3149</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3149</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        &lt;br&gt;Hello STeven,&lt;br&gt;&lt;br&gt;&lt;br&gt;Sorry fore the wait.&amp;nbsp;&amp;nbsp;I was out with the flu.&lt;br&gt;&lt;br&gt;I have two sets of test images.&amp;nbsp;&amp;nbsp;Each set has a reference level image (approx) and an image tilted at an angle. The orient module seems to fail for the first set of images (pages) and work OK for the second set (cover).&amp;nbsp;&amp;nbsp;The images are a bit large so I will make separate postings.&amp;nbsp;&amp;nbsp;&lt;br&gt;&lt;br&gt;BTW – Angle in the geometry module never seemed to be consistent.&amp;nbsp;&amp;nbsp;Maybe it is just my interpretation.&lt;br&gt;&lt;br&gt;&lt;br&gt;[image1]&lt;br&gt;&lt;br&gt;&lt;br&gt;[image2]&lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3149</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3149</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        .robo file!&lt;br&gt;i forgot it! &lt;br&gt;:D        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3162</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3162</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        thanks steven for your answer!&lt;br&gt;i think there is a problem!&lt;br&gt;see this .robo file,reload the vbscript,u will see that it hangs!        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3162</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3162</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Bayer Filter</title>
        <description>
        Hi,&lt;br&gt;&lt;br&gt;I've used your software before to do a live bayer filter feed and it worked well.&amp;nbsp;&amp;nbsp;I am now looking to open a colour raw .Fit image and apply a bayer filter to it to get a colour picture? I understand this isn't really what roborealm is for but you seemed to know what you were doing with the Bayer filter itself and wonder if you have any advice/support that would help my problem.&amp;nbsp;&amp;nbsp;I imagine the Bayer filter on Roborealm would work if it accepted the .Fit file, but at the moment it doesn't recognise the file type.&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;&lt;br&gt;Nick&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3106</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3106</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Parallel port interface with multiple instance of roborealm</title>
        <description>
        My objective is to create a robot........which travels in a black road with white background........and if there is a turn then image on the floor will be displayed&lt;br&gt;in the figure....&lt;br&gt;&lt;br&gt;[image1][image2]&lt;br&gt;&lt;br&gt;In one instance of roborealm, it detects the track....&lt;br&gt;In second instance of roborealm, it detects for the orientation in shape matching module......&lt;br&gt;&lt;br&gt;In the first instance of roborealm, it will send the data to &lt;br&gt;robot...continuously....&lt;br&gt;&lt;br&gt;When the second instance detects the arrow it can communicate with the first instance or even with parallel port......&lt;br&gt;&lt;br&gt;what should i have to do......&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3105</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3105</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Autonomous Aviation</title>
        <description>
        Hi,&lt;br&gt; &lt;br&gt;I have bought Draganflyer V Ti RC Gyro Stabilized Electric Helicopter With Wireless Video Camera Systemthe 4 rotor from rctoys.com with wireless video, an futaba 9CHP Super transmitter, PCtx and joystick (Saitek: Cyber Evo). I am currently trying to interface the joystick control with the pctx. I am interested to use colour vision of the camera mount on the draganflyer VTI RC to maintain hovering by itself by capture its centre of gravity. The draganflyer VTI RC consist of 6 channel from the Draganflyer Flight Control Diagram. An interface pctx with the joystick with the robo releam. I will update you the picture and video of my progress on my research. &lt;br&gt;Draganflyer V Ti RC Gyro Stabilized Electric Helicopter With Wireless Video Camera System&lt;br&gt;&lt;a href=&quot;http://www.rctoys.com/rc-toys-and-parts/DF...OMPARE-ALL.html&quot; target=&quot;_blank&quot;&gt;http://www.rctoys.com/&lt;wbr&gt;rc-&lt;wbr&gt;toys-&lt;wbr&gt;and-&lt;wbr&gt;parts/&lt;wbr&gt;DF...OMPARE-&lt;wbr&gt;ALL.html&lt;/a&gt;&lt;br&gt;Draganflyer Schematics&lt;br&gt;&lt;a href=&quot;http://www.rctoys.com/pdf/df5-schematics0001.pdf&quot; target=&quot;_blank&quot;&gt;http://www.rctoys.com/&lt;wbr&gt;pdf/&lt;wbr&gt;df5-&lt;wbr&gt;schematics0001.pdf&lt;/a&gt;&lt;br&gt;Draganflyer Flight Control Diagram&lt;br&gt;&lt;a href=&quot;http://www.rctoys.com/pdf/df5-flightcontrol.pdf&quot; target=&quot;_blank&quot;&gt;http://www.rctoys.com/&lt;wbr&gt;pdf/&lt;wbr&gt;df5-&lt;wbr&gt;flightcontrol.pdf&lt;/a&gt;&lt;br&gt; &lt;br&gt;Looking forward to your reply.&lt;br&gt;&lt;br&gt;Many Thank&lt;br&gt;Warm Regards,&lt;br&gt;Benjamin&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3077</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3077</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Autonomous Aviation</title>
        <description>
        Hi,&lt;br&gt; &lt;br&gt;I have bought Draganflyer V Ti RC Gyro Stabilized Electric Helicopter With Wireless Video Camera Systemthe 4 rotor from rctoys.com with wireless video, an futaba 9CHP Super transmitter, PCtx and joystick (Saitek: Cyber Evo). I am currently trying to interface the joystick control with the pctx. I am interested to use colour vision of the camera mount on the draganflyer VTI RC to maintain hovering by itself by capture its centre of gravity. The draganflyer VTI RC consist of 6 channel from the Draganflyer Flight Control Diagram. An interface pctx with the joystick with the robo releam. I will update you the picture and video of my progress on my research. &lt;br&gt;Draganflyer V Ti RC Gyro Stabilized Electric Helicopter With Wireless Video Camera System&lt;br&gt;&lt;a href=&quot;http://www.rctoys.com/rc-toys-and-parts/DF...OMPARE-ALL.html&quot; target=&quot;_blank&quot;&gt;http://www.rctoys.com/&lt;wbr&gt;rc-&lt;wbr&gt;toys-&lt;wbr&gt;and-&lt;wbr&gt;parts/&lt;wbr&gt;DF...OMPARE-&lt;wbr&gt;ALL.html&lt;/a&gt;&lt;br&gt;Draganflyer Schematics&lt;br&gt;&lt;a href=&quot;http://www.rctoys.com/pdf/df5-schematics0001.pdf&quot; target=&quot;_blank&quot;&gt;http://www.rctoys.com/&lt;wbr&gt;pdf/&lt;wbr&gt;df5-&lt;wbr&gt;schematics0001.pdf&lt;/a&gt;&lt;br&gt;Draganflyer Flight Control Diagram&lt;br&gt;&lt;a href=&quot;http://www.rctoys.com/pdf/df5-flightcontrol.pdf&quot; target=&quot;_blank&quot;&gt;http://www.rctoys.com/&lt;wbr&gt;pdf/&lt;wbr&gt;df5-&lt;wbr&gt;flightcontrol.pdf&lt;/a&gt;&lt;br&gt; &lt;br&gt;Looking forward to your reply.&lt;br&gt;&lt;br&gt;Many Thank&lt;br&gt;Warm Regards,&lt;br&gt;Benjamin&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3076</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3076</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Yes. I need to perform Perspective Transformation on a bunch of images(as a batch process). I tried to do it manually using Perspective correction module under Transforms module, which worked for single image.&lt;br&gt;The input image is : [image1]&lt;br&gt;The output image is: [image2]&lt;br&gt;I need to automate the process by writing a .robo file (with tagged syntax) so as to perform the correction on all the images. &lt;br&gt;&lt;br&gt;So far I have written the .robo file to load an image. The code is :&lt;br&gt;&lt;br&gt;&amp;lt;head&amp;gt;&amp;lt;version&amp;gt;1.7.2.18&amp;lt;/version&amp;gt;&amp;lt;/head&amp;gt;&lt;br&gt;&amp;lt;Load_Image&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;lt;filename&amp;gt;abc1.bmp&amp;lt;/filename&amp;gt;&lt;br&gt;&amp;lt;/Load_Image&amp;gt;&lt;br&gt;&lt;br&gt;I want to add the code for Perpective Correction after this. &lt;br&gt;&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3071</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3071</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>RR first steps image analyze</title>
        <description>
        Hi, &lt;br&gt;&lt;br&gt;I'm new to the world of vision software.&amp;nbsp;&amp;nbsp;I want to examine pictures with the following result: I want to detect the screw head that is about in the middle of the picture and calculate it's offset to the real center of the picture.&lt;br&gt;I came to some result but not really succesfull.&lt;br&gt;I mostly tried combining Canny edge detection followed by the Circles module.&lt;br&gt;I tried with completely different pictures and there I had better results.&lt;br&gt;&lt;br&gt;Does anyone have any idea what I would be doing wrong?&amp;nbsp;&amp;nbsp;How important is the resolution of the pictures? The light?&lt;br&gt;Am I using the wrong program or should this be no problem for a powerfull program like RR?&lt;br&gt;&lt;br&gt;Thanks &lt;br&gt;kind regards &lt;br&gt;Scelle        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=3068</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=3068</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Matching omnidirectional images</title>
        <description>
        Hello,&lt;br&gt;&lt;br&gt;I am trying to determine the relative position of a robot that uses an omnidirectional imaging system.&amp;nbsp;&amp;nbsp;The idea is that a snapshot is taken at a starting location, then I move the robot away from that position and take a second snapshot.&amp;nbsp;&amp;nbsp;I now want to compare the starting and ending snapshots and compute where the robot is relative to the starting position.&lt;br&gt;&lt;br&gt;I&amp;nbsp;&amp;nbsp;get a really good estimate of the relative &lt;b&gt;orientation&lt;/b&gt; of the robot by doing a cross-correlation on the center horizontal strip of the two images.&amp;nbsp;&amp;nbsp;Now I want to compute the displacement of the robot between the two images.&amp;nbsp;&amp;nbsp;So to make things simpler, assume that the orientation of the robot does not change between the two images.&lt;br&gt;&lt;br&gt;I have attached five sample images.&amp;nbsp;&amp;nbsp;The first is the initial snapshot after feeding it through the Polar and Crop modules.&amp;nbsp;&amp;nbsp;The other four images are taken with the robot displaced roughly 1 foot to the right, behind, left, and in front of the initial location, in that order.&amp;nbsp;&amp;nbsp;The task is to compare each of these images in turn with the initial image and compute the corresponding displacement--even just the direction of the displacement would be good enough.&amp;nbsp;&amp;nbsp;For example, a successful result for the second image would be &quot;90 degrees clockwise at 12 inches&quot; or even just &quot;90 degrees clockwise&quot;.&amp;nbsp;&amp;nbsp;But the degrees of rotation needs to be fairly accurate since I want to use it for homing the robot back to the initial location.&amp;nbsp;&amp;nbsp;Just to be clear, I'm not talking about rotating the robot about its center: I'm talking about picking the robot up and placing it 1 foot to the right, or 1 foot behind, etc. without changing its orientation.&lt;br&gt;&lt;br&gt;Any ideas?&lt;br&gt;&lt;br&gt;Thanks!&lt;br&gt;patrick        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2987</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2987</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Melissa,&lt;br&gt;&lt;br&gt;You need to ensure that the bitmap pattern AND the thing to match it against is a binary black/white image. You will notice in the upper right corner of the blob filter that many more than 1 object is being detected. That can be dealt with by thresholding both images prior to matching them. The shape matching only works with thresholded images to ensure that the shape is very distinct.&lt;br&gt;&lt;br&gt;I've included our trial with the two images being thresholded.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2966</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2966</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Bitmap Blob Filter</title>
        <description>
        Hi,&lt;br&gt;I am having trouble with the bitmap blob filter.&amp;nbsp;&amp;nbsp;I have three images to help:&lt;br&gt;1st - the image i am loading into the bitmap blob filter&lt;br&gt;2nd- the image i am loading into roborealm as a test image&lt;br&gt;3rd - the result of the filter with the count threshold set to 1&lt;br&gt;&lt;br&gt;why am i getting a black screen with the blob being marked as the top left of my image?&amp;nbsp;&amp;nbsp;Shouldn't it be in the middle with the image still shown?&lt;br&gt;&lt;br&gt;My goal is to be able to identify that marker and locate the coordinates of its 4 corners.&amp;nbsp;&amp;nbsp;The marker is distinct to help it be picked from a complex background eventually.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2965</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2965</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>2 rr crash questions</title>
        <description>
        Hi,Steven,&lt;br&gt;I found several problem, the edition of RR is 1.8.18.15.&lt;br&gt;1) It works well in my Winxp, but will crash in win2000, doesn’t it support win2000.&lt;br&gt;2) It’s about my .robo file. I use socket extension to communicate with my program and RR, but as you see, my robo file, when I use “set statement” it can send “fps” “COGX,COGY” and “grabstate” to my program,&amp;nbsp;&amp;nbsp;but when I use vbscript to define variable, the variable can’t send to my program. Does it mean variable defined by vbscript can’t send through socket. I hope you can help me find a solution.&lt;br&gt;3) in fact, I’m going to use blob filter before as it is so useful, however when I use “create array variable”, it will cause my program and RR crashed. The attached image is obtained when I add the blob filter module.&lt;br&gt;Could you help me check the .robo and see if there is something wrong. I use the first a.robo well with my program. &lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2888</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Robot Arm</title>
        <description>
        Hi, &lt;br&gt;I am&amp;nbsp;&amp;nbsp;planning&amp;nbsp;&amp;nbsp;to&amp;nbsp;&amp;nbsp;build&amp;nbsp;&amp;nbsp;a robot arm to gather peaches from the trees. &lt;br&gt;So i am going to use servo center&amp;nbsp;&amp;nbsp;3, a&amp;nbsp;&amp;nbsp; high quality camera 2MP and of course RR. &lt;br&gt;As you can see from the photos i have managed to establish the peach vision. &lt;br&gt;Have you got to&amp;nbsp;&amp;nbsp;propose&amp;nbsp;&amp;nbsp;any better way? (Filters - Modules). &lt;br&gt;As i see it is possible to calculate X and Y axis what about the distance Z axis? &lt;br&gt;In Module Circles, How can we watch and calculate only the bigger circle? &lt;br&gt;If i have 2 cameras, can i calculate the z axi?&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2886</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2886</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>red tracking paintball turret</title>
        <description>
        I was wondering how would you modify the vbs red tracking orbit camera script to be used with a parallax usb servo controller?&lt;br&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2877</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2877</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Camrer image distort</title>
        <description>
        Hi, Steven&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;I just got a&quot;Euresys PICLOL Tymo&quot; camera. I can get right image in &quot;AMCAP&quot; which is in directxsdk. but with RoboRealm, I get a distort image.&amp;nbsp;&amp;nbsp;how could i handle this problem?        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2874</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2874</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
    <item>
        <title>Bug in Path Planning &quot;plan orientation variable&quot;</title>
        <description>
        First of all, the Path Planning is a wonderful module. Unfortunately, there is a bug in it. &lt;br&gt;&lt;br&gt;The &quot;Plan Orientation&quot; variable generated by this module can be wrong some times. To cut the long story short please refer the following snapshots:-&lt;br&gt;&lt;br&gt;Image1: Snapshot of the maze to be solved, using a &quot;Red Triangle&quot; as robot. This red robot has to reach a blue destination.&lt;br&gt;&lt;br&gt;Image2: The path planned by the path planing module. While the path planned is CORRECT, the plan orientation is INCORRECT. &lt;br&gt;&lt;br&gt;Attachment1: The RoboRealm showing the code.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=2859</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=2859</guid>
        <pubDate>Wed, 31 Dec 1969 18:12:59 EST</pubDate>
    </item>
</channel>
</rss>
