<?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>
        What dll file are you referring to?&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hai Steve&lt;br&gt;&lt;br&gt;I have setup the roborealm for object detection (http://www.youtube.com/watch?v=4p87X2pF928)&lt;br&gt;&lt;br&gt;But I still have the problem to execute the dll file.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        The API can download at&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.roborealm.com/help/API.php&quot; target=&quot;_blank&quot;&gt;http://www.roborealm.com/&lt;wbr&gt;help/&lt;wbr&gt;API.php&lt;/a&gt;&lt;br&gt;&lt;br&gt;other than that, no, there is no source code for you to refer to as what you are doing is quite unique. Same goes for the youtube videos. Like mentioned in the previous post, get your setup ready and post some images here from the camera&apos;s point of view and we can help further.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        STeven, &lt;br&gt;&lt;br&gt;Do you have link for source code, tutorial, or youtube that I may refer?        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        That&apos;s a very good start. Now you can look at the API and download the examples which include one in Java. That&apos;s what you will use to get the result of the image processing from RoboRealm. At the same time, you will have to create a Roborealm configuration that will recognize your cube. At this point, you will need to create a setup that you can use each time. Remember in the original video how the background was different than the blocks ... once you start to create a processing pipeline to extract out where the blocks are you will see why. So try to first replicate their results by creating a nice solid color for the base (you can try using a very large mouse pad) and get some nice high contrast blocks ... or alternatively use a white base with your currently black blocks. the blue you currently have has to go further to encompass the entire block from the cameras point of view. Once you get something you think might work, paste a couple of those images here from what the camera sees and we can help create that roborealm configuration.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        Hai Steven, &lt;br&gt;&lt;br&gt;This is my Java programming and a link below showing my AX-12a arm robot movement. I&apos;m a little bit blur about how to integrate Java with the Roborealm or the PING ultrasonic sensor. What API do i have to use or any other tips from you Stevens? Thanks in advance. &lt;br&gt;&lt;br&gt;&lt;a href=&quot;https://www.youtube.com/watch?v=2Y2Og48rW_o&quot; target=&quot;_blank&quot;&gt;https://www.youtube.com/&lt;wbr&gt;watch?v=2Y2Og48rW_&lt;wbr&gt;o&lt;/a&gt;&lt;br&gt;&lt;br&gt;public class Test {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;public static void main(String args[]) throws InterruptedException&lt;br&gt;{&lt;br&gt;int init = dynamixel_jni.dxl_initialize(); // initiating Dynamixel.&lt;br&gt;if(init == 1)&lt;br&gt;{&lt;br&gt;// dynamixel_jni.dxl_write_word(&amp;lt;servo number&amp;gt; , &amp;lt;addresses&amp;gt; , &amp;lt;value&amp;gt;);&lt;br&gt;dynamixel_jni.dxl_write_word(1, Control_Addresses.MOVING_SPEED, 150); // set servo1 moving speed is 150.&lt;br&gt;//dynamixel_jni.dxl_write_word(1, Control_Addresses.GOAL_POSITION, 0); // moving servo1 to 0 position.&lt;br&gt;Thread.sleep(1000); // wait 1 second. (Note that: 1000 miliseconds is equal to 1 second)&lt;br&gt;dynamixel_jni.dxl_write_word(1, Control_Addresses.GOAL_POSITION, 823); // moving servo1 to 1023 position&lt;br&gt;Thread.sleep(2000); // wait 2 second.&lt;br&gt;dynamixel_jni.dxl_write_word(2, Control_Addresses.MOVING_SPEED, 80); // set servo4 moving speed is 80.&lt;br&gt;dynamixel_jni.dxl_write_word(3, Control_Addresses.MOVING_SPEED, 80); // set servo5 moving speed is 80.&lt;br&gt;dynamixel_jni.dxl_write_word(2, Control_Addresses.GOAL_POSITION, 512); // moving servo4 to 623 position&lt;br&gt;//since servo 4 &amp; 5 is in pair, the balance value from servo4 must be added to servo5 (1023 - 623 = 400).&lt;br&gt;dynamixel_jni.dxl_write_word(3, Control_Addresses.GOAL_POSITION, 511);&lt;br&gt;Thread.sleep(3000); // wait 1 second.&lt;br&gt;// same as above&lt;br&gt;//dynamixel_jni.dxl_write_word(4, Control_Addresses.GOAL_POSITION, 400); // moving servo4 to 623 position&lt;br&gt;//dynamixel_jni.dxl_write_word(5, Control_Addresses.GOAL_POSITION, 623); // balance value to servo5&lt;br&gt;//Thread.sleep(1000); // wait 1 second.&lt;br&gt;//dynamixel_jni.dxl_write_word(1, Control_Addresses.GOAL_POSITION, 512); // moving servo1 to 512 position.&lt;br&gt;//Thread.sleep(500); // wait 0.5 second.&lt;br&gt;dynamixel_jni.dxl_write_word(6, Control_Addresses.GOAL_POSITION, 512); // moving servo6 to 512 position, default speed.&lt;br&gt;//Thread.sleep(500);&lt;br&gt;dynamixel_jni.dxl_write_word(7, Control_Addresses.GOAL_POSITION, 480); // moving servo7 to 512 position, default speed.&lt;br&gt;//Thread.sleep(5000); // wait 2 second.&lt;br&gt;dynamixel_jni.dxl_write_word(7, Control_Addresses.GOAL_POSITION, 670); // moving servo7 to 512 position, default speed.&lt;br&gt;&lt;br&gt;dynamixel_jni.dxl_write_word(2, Control_Addresses.GOAL_POSITION, 200); // moving servo7 to 512 position, default speed.&lt;br&gt;dynamixel_jni.dxl_write_word(3, Control_Addresses.GOAL_POSITION, 823); // moving servo7 to 512 position, default speed.&lt;br&gt;Thread.sleep(2000); /// wait 2 seconds&lt;br&gt;dynamixel_jni.dxl_write_word(1, Control_Addresses.GOAL_POSITION, 200);&lt;br&gt;Thread.sleep(1000);&lt;br&gt;dynamixel_jni.dxl_write_word(2, Control_Addresses.GOAL_POSITION, 512);&lt;br&gt;&lt;br&gt;dynamixel_jni.dxl_write_word(3, Control_Addresses.GOAL_POSITION, 511);&lt;br&gt;Thread.sleep(2000);&lt;br&gt;dynamixel_jni.dxl_write_word(7, Control_Addresses.GOAL_POSITION, 480);&lt;br&gt;//dynamixel_jni.dxl_write_word(1, Control_Addresses.GOAL_POSITION, 200);&lt;br&gt;Thread.sleep (500);&lt;br&gt;dynamixel_jni.dxl_write_word(2, Control_Addresses.GOAL_POSITION, 200);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br&gt;dynamixel_jni.dxl_write_word(3, Control_Addresses.GOAL_POSITION, 823);&lt;br&gt;&lt;br&gt;dynamixel_jni.dxl_terminate(); // close Dynamixel.&lt;br&gt;}&lt;br&gt;}&lt;br&gt;}        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>No Title</title>
        <description>
        First start by getting the control system up and running. Can you program the servos in Java to move the arm? Then work on where you will place the camera and get some initial shots to work with that can be detected. They used yellow balls on a black background for a reason, they are easier to detect. Once you have all those pieces in place you can start looking into the vision processing.&lt;br&gt;&lt;br&gt;STeven.        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
    <item>
        <title>AX-12a ball picker</title>
        <description>
        Hai everybody,&lt;br&gt; &lt;br&gt;How can I do this using Java with roborealm? &lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=uY96ye92m2s&quot; target=&quot;_blank&quot;&gt;http://www.youtube.com/&lt;wbr&gt;watch?v=uY96ye92m2s&lt;/a&gt;        </description>
        <link>http://www.roborealm.com/forum/index.php?thread_id=4888</link>
        <guid>http://www.roborealm.com/forum/index.php?thread_id=4888</guid>
        <pubDate>Tue, 30 Nov 1999 00:11:00 EST</pubDate>
    </item>
</channel>
</rss>
