<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: ARToolKit を Flash に移植したよ。</title>
	<atom:link href="http://saqoosha.net/2008/05/16/665/feed/" rel="self" type="application/rss+xml" />
	<link>http://saqoosha.net/2008/05/16/665/</link>
	<description>Saqoosha.net</description>
	<lastBuildDate>Sun, 14 Mar 2010 23:29:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Srikanth</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-69244</link>
		<dc:creator>Srikanth</dc:creator>
		<pubDate>Mon, 15 Mar 2010 12:40:17 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-69244</guid>
		<description>Hi.. i want to work with NyARToolkit..
Could you please give me some guidelines.

Thanks 

Srikanth</description>
		<content:encoded><![CDATA[<p>Hi.. i want to work with NyARToolkit..<br />
Could you please give me some guidelines.</p>
<p>Thanks </p>
<p>Srikanth</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saqoosha</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-68924</link>
		<dc:creator>Saqoosha</dc:creator>
		<pubDate>Mon, 15 Mar 2010 02:07:55 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-68924</guid>
		<description>Hi Tom,
It&#039;s impossible to use other than the square for the marker in FLARToolKit. But you can design inside of square. Please refer http://saqoosha.net/en/2008/06/05/676/  (currently in Japanese only, sorry.)</description>
		<content:encoded><![CDATA[<p>Hi Tom,<br />
It&#8217;s impossible to use other than the square for the marker in FLARToolKit. But you can design inside of square. Please refer <a href="http://saqoosha.net/2008/06/05/676/" rel="nofollow">http://saqoosha.net/2008/06/05/676/</a>  (currently in Japanese only, sorry.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-68923</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 15 Mar 2010 16:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-68923</guid>
		<description>Hi, I&#039;ve just looked into this and it stuff is sweet. 
I&#039;ve got a question thou. Is it possible to use a different marker rather than a square? I was thinking using a circle with a dash across it like the London underground logo:
http://subtitlestocinema.files.wordpress.com/2008/11/london_underground_logo.jpg 
Any ideas how to achieve that?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;ve just looked into this and it stuff is sweet.<br />
I&#8217;ve got a question thou. Is it possible to use a different marker rather than a square? I was thinking using a circle with a dash across it like the London underground logo:<br />
<a href="http://subtitlestocinema.files.wordpress.com/2008/11/london_underground_logo.jpg" rel="nofollow">http://subtitlestocinema.files.wordpress.com/2008/11/london_underground_logo.jpg</a><br />
Any ideas how to achieve that?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-68240</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Mon, 15 Mar 2010 18:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-68240</guid>
		<description>in response to psilos.

i&#039;ve had mixed results using the multimarker class. Basically what it does is take an array of markers and loops through them looking for the ar marker.
but it doesnt work as well as the simple marker and I still havent figure out why. maybe something wrong with my code.

heres what i&#039;ve done:

1. load 2 or more markers

var codes:Array = new Array();
var widths:Array = new Array();

_code = new FLARCode(16, 16);
_code.loadFromURL(&quot;../Data/marker1.pat&quot;);
codes.push(_code);

_code = new FLARCode(16, 16);
_code.loadFromURL(&quot;../Data/marker2.pat&quot;);
codes.push(_code);

widths.push(MARKER_SIZE);
widths.push(MARKER_SIZE);

this._ctx.mdetector = new FLARMultiMarkerDetector(this._param, codes, widths);

2. then create a nodes array and push the Flar nodes into it:
nodes.push(this._scene.addChild(new FLARBaseNode()));

3. create papervision objects and add them as childs of the nodes created:
nodes[0].addChild(new Plane(wmat, MARKER_SIZE, MARKER_SIZE));
nodes[1].addChild(new Plane(wmat, MARKER_SIZE, MARKER_SIZE));

4. in your application loop check which markers are being detected:

var i:int = nodes.length;
while (i-- &gt; 0)
{
nodes[i].visible = false;
if (this._ctx.mdetector.detectMarkerLite(this._ctx.raster, 100) &amp;&amp; this._ctx.mdetector.getConfidence(i) &gt; 0.5) 
{
trace(i + &quot; &quot; + this._ctx.mdetector.getConfidence(i));
					this._ctx.mdetector.getTranslationMatrix(i,this._ctx.resultMat);
					nodes[i].visible = true;
					nodes[i].setTranslationMatrix(this._ctx.resultMat);
}
}</description>
		<content:encoded><![CDATA[<p>in response to psilos.</p>
<p>i&#8217;ve had mixed results using the multimarker class. Basically what it does is take an array of markers and loops through them looking for the ar marker.<br />
but it doesnt work as well as the simple marker and I still havent figure out why. maybe something wrong with my code.</p>
<p>heres what i&#8217;ve done:</p>
<p>1. load 2 or more markers</p>
<p>var codes:Array = new Array();<br />
var widths:Array = new Array();</p>
<p>_code = new FLARCode(16, 16);<br />
_code.loadFromURL(&#8220;../Data/marker1.pat&#8221;);<br />
codes.push(_code);</p>
<p>_code = new FLARCode(16, 16);<br />
_code.loadFromURL(&#8220;../Data/marker2.pat&#8221;);<br />
codes.push(_code);</p>
<p>widths.push(MARKER_SIZE);<br />
widths.push(MARKER_SIZE);</p>
<p>this._ctx.mdetector = new FLARMultiMarkerDetector(this._param, codes, widths);</p>
<p>2. then create a nodes array and push the Flar nodes into it:<br />
nodes.push(this._scene.addChild(new FLARBaseNode()));</p>
<p>3. create papervision objects and add them as childs of the nodes created:<br />
nodes[0].addChild(new Plane(wmat, MARKER_SIZE, MARKER_SIZE));<br />
nodes[1].addChild(new Plane(wmat, MARKER_SIZE, MARKER_SIZE));</p>
<p>4. in your application loop check which markers are being detected:</p>
<p>var i:int = nodes.length;<br />
while (i&#8211; &gt; 0)<br />
{<br />
nodes[i].visible = false;<br />
if (this._ctx.mdetector.detectMarkerLite(this._ctx.raster, 100) &amp;&amp; this._ctx.mdetector.getConfidence(i) &gt; 0.5)<br />
{<br />
trace(i + &#8221; &#8221; + this._ctx.mdetector.getConfidence(i));<br />
					this._ctx.mdetector.getTranslationMatrix(i,this._ctx.resultMat);<br />
					nodes[i].visible = true;<br />
					nodes[i].setTranslationMatrix(this._ctx.resultMat);<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saqoosha</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-67680</link>
		<dc:creator>Saqoosha</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:48:44 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-67680</guid>
		<description>to psilos.
The class org.libspark.flartoolkit.detector.FLARDetectMarker is for multi marker detection. but I have not used this class.
If you succeed, please report!</description>
		<content:encoded><![CDATA[<p>to psilos.<br />
The class org.libspark.flartoolkit.detector.FLARDetectMarker is for multi marker detection. but I have not used this class.<br />
If you succeed, please report!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: psilos</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-67676</link>
		<dc:creator>psilos</dc:creator>
		<pubDate>Mon, 15 Mar 2010 10:07:04 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-67676</guid>
		<description>Hey Tom, I had the same problem. The proper svn address would be http://www.libspark.org/svn/as3/FLARToolKit/trunk.

Good luck</description>
		<content:encoded><![CDATA[<p>Hey Tom, I had the same problem. The proper svn address would be <a href="http://www.libspark.org/svn/as3/FLARToolKit/trunk" rel="nofollow">http://www.libspark.org/svn/as3/FLARToolKit/trunk</a>.</p>
<p>Good luck</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: psilos</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-67675</link>
		<dc:creator>psilos</dc:creator>
		<pubDate>Mon, 15 Mar 2010 10:05:03 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-67675</guid>
		<description>Is it possible to detect more than one markers at the moment? I have seen the samples and its using SingleMarkerDetector. Is there any example with more than one markers?

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Is it possible to detect more than one markers at the moment? I have seen the samples and its using SingleMarkerDetector. Is there any example with more than one markers?</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-67661</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 15 Mar 2010 13:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-67661</guid>
		<description>Hi!

That&#039;s really great work!
Unfortunately I only can watch the demo. I tried to checkout (with subversion) the files but I always get an error &quot;XML data was not well-formed&quot;. Did I do a mistake or isn&#039;t the code located at http://www.libspark.org/browser/as3/FLARToolKit/trunk/ anymore?
I&#039;d really be glad to have a look at it too!
Thanks a lot!

Tom</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>That&#8217;s really great work!<br />
Unfortunately I only can watch the demo. I tried to checkout (with subversion) the files but I always get an error &#8220;XML data was not well-formed&#8221;. Did I do a mistake or isn&#8217;t the code located at <a href="http://www.libspark.org/browser/as3/FLARToolKit/trunk/" rel="nofollow">http://www.libspark.org/browser/as3/FLARToolKit/trunk/</a> anymore?<br />
I&#8217;d really be glad to have a look at it too!<br />
Thanks a lot!</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Timbo</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-67384</link>
		<dc:creator>Timbo</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:43:08 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-67384</guid>
		<description>hi Taniss, I have the same problem.  
can you contact me : tim_timmers @@@ hotmail dot com ?

Thanks!

Sweet work Saqoosha!</description>
		<content:encoded><![CDATA[<p>hi Taniss, I have the same problem.<br />
can you contact me : tim_timmers @@@ hotmail dot com ?</p>
<p>Thanks!</p>
<p>Sweet work Saqoosha!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: taniss</title>
		<link>http://saqoosha.net/2008/05/16/665/comment-page-1/#comment-67128</link>
		<dc:creator>taniss</dc:creator>
		<pubDate>Mon, 15 Mar 2010 15:09:22 +0000</pubDate>
		<guid isPermaLink="false">http://saqoosha.net/2008/05/16/665/#comment-67128</guid>
		<description>thanks, I already fixed it. The problem is that when only one marker is on the screen, the SingleMarkerDetector takes it as the correct marker. What I did, is force the script to check the level of confidence, not against another marker on screen (since of course ther isn&#039;t another), but to check against an average value (for example, I set 0.65). I&#039;m getting really good results with that, actually if I point my camera to a marker that is not the one I loaded, nothing is drawn on the screen. Wich is what I needed, of course. Anything you need, please write me an e-mail, i&#039;ll be glad to answer, and once again, congratulations for your work.</description>
		<content:encoded><![CDATA[<p>thanks, I already fixed it. The problem is that when only one marker is on the screen, the SingleMarkerDetector takes it as the correct marker. What I did, is force the script to check the level of confidence, not against another marker on screen (since of course ther isn&#8217;t another), but to check against an average value (for example, I set 0.65). I&#8217;m getting really good results with that, actually if I point my camera to a marker that is not the one I loaded, nothing is drawn on the screen. Wich is what I needed, of course. Anything you need, please write me an e-mail, i&#8217;ll be glad to answer, and once again, congratulations for your work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
