<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>SLARToolkit Discussions Rss Feed</title><link>http://slartoolkit.codeplex.com/Thread/List.aspx</link><description>SLARToolkit Discussions Rss Description</description><item><title>New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats</title><link>http://slartoolkit.codeplex.com/discussions/432220</link><description>&lt;div style="line-height: normal;"&gt;Hi @jaumec,&lt;br /&gt;
&lt;br /&gt;
Can you please let me know how you solved the problem? I'm facing the same issue. Thanks. :-)&lt;br /&gt;
&lt;/div&gt;</description><author>Wasp05</author><pubDate>Thu, 23 May 2013 10:52:40 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats 20130523105240A</guid></item><item><title>New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats</title><link>http://slartoolkit.codeplex.com/discussions/432220</link><description>&lt;div style="line-height: normal;"&gt;Hi @jaumec,&lt;br /&gt;
&lt;br /&gt;
Can you please let me know how you solved the problem? I'm facing the same issue. Thanks. :-)&lt;br /&gt;
&lt;/div&gt;</description><author>Wasp05</author><pubDate>Thu, 23 May 2013 10:52:15 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats 20130523105215A</guid></item><item><title>New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats</title><link>http://slartoolkit.codeplex.com/discussions/432220</link><description>&lt;div style="line-height: normal;"&gt;Solverd! Everything is working fine right now.&lt;br /&gt;
Thanks.&lt;br /&gt;
&lt;/div&gt;</description><author>jaumec</author><pubDate>Fri, 08 Feb 2013 12:37:15 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats 20130208123715P</guid></item><item><title>New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats</title><link>http://slartoolkit.codeplex.com/discussions/432220</link><description>&lt;div style="line-height: normal;"&gt;Yes I know. But I'm interested on the WP sample. I would prefer not porting the SL solution to WP.&lt;br /&gt;
&lt;/div&gt;</description><author>jaumec</author><pubDate>Thu, 07 Feb 2013 09:36:21 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats 20130207093621A</guid></item><item><title>New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats</title><link>http://slartoolkit.codeplex.com/discussions/432220</link><description>&lt;div style="line-height: normal;"&gt;Please see the samples. The puzzle sample for Silverlight supports multiple markers.&lt;br /&gt;
&lt;/div&gt;</description><author>teichgraf</author><pubDate>Thu, 07 Feb 2013 08:42:13 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats 20130207084213A</guid></item><item><title>New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats</title><link>http://slartoolkit.codeplex.com/discussions/432220</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;br /&gt;
I’m trying to modify the SLARToolkitWinPhoneSample to recognize multiple pats. The problem is that all detected markers have the same name… it seems that it can only recognize that is a valid square but nothing else… any ideas?&lt;/p&gt;
&lt;p&gt;Thanks in advance,&lt;br /&gt;
Jaume&lt;/p&gt;
&lt;/div&gt;</description><author>jaumec</author><pubDate>Wed, 06 Feb 2013 18:06:35 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkitWinPhoneSample doesn't recognizes different pats 20130206060635P</guid></item><item><title>New Post: Multiple Marker Detection Windows Phone 7.5</title><link>http://slartoolkit.codeplex.com/discussions/431263</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Thanks for the reply.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I added in the confidence check and now it&amp;nbsp;doesn't&amp;nbsp;display the image at all however it is recognizing the marker as the SLAR marker with a confidence of over 0.5 it seems to always want to use the same image if there is only one marker in view. I think it
 has something to do with the list and the L marker being stored in both 0 and 1 index.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Where i think the problem is:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;&lt;span style="color:blue"&gt;private&lt;/span&gt; &lt;span style="color:blue"&gt;void&lt;/span&gt; ApplyTransformations(DetectionResults detectedResults)
        {
           

            &lt;span style="color:green"&gt;//Find L marker in results and transform object &lt;/span&gt;
            &lt;span style="color:blue"&gt;var&lt;/span&gt; resultL = detectedResults.Where(r =&amp;gt; r.Marker == markerL).FirstOrDefault();
            &lt;span style="color:blue"&gt;if&lt;/span&gt; (resultL == &lt;span style="color:blue"&gt;null&lt;/span&gt;)
            {
                resultL = detectedResults[0];
            }
            &lt;span style="color:blue"&gt;else&lt;/span&gt; &lt;span style="color:blue"&gt;if&lt;/span&gt; (resultL.Confidence &amp;gt; 0.5)
            {
                ApplyTransformation(NeedleImg, resultL.Transformation);
                &lt;span style="color:blue"&gt;this&lt;/span&gt;.NeedleImg.Visibility = System.Windows.Visibility.Visible;
            }
            &lt;span style="color:green"&gt;// Find SLAR marker in results and apply transformation&lt;/span&gt;
            &lt;span style="color:blue"&gt;if&lt;/span&gt; (detectedResults.Count &amp;gt; 1)
            {
                &lt;span style="color:blue"&gt;var&lt;/span&gt; resultSlar = detectedResults.Where(r =&amp;gt; r.Marker == markerSlar).FirstOrDefault();
                &lt;span style="color:blue"&gt;if&lt;/span&gt; (resultSlar == &lt;span style="color:blue"&gt;null&lt;/span&gt;)
                {
                    resultSlar = detectedResults[1];
                }
                &lt;span style="color:blue"&gt;else&lt;/span&gt; &lt;span style="color:blue"&gt;if&lt;/span&gt; (resultSlar.Confidence &amp;gt; 0.4)
                {
                    ApplyTransformation(LungsImg, resultSlar.Transformation);
                    &lt;span style="color:blue"&gt;this&lt;/span&gt;.LungsImg.Visibility = System.Windows.Visibility.Visible;
                }
            }
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks for the help&lt;/p&gt;
&lt;/div&gt;</description><author>pauldpaul</author><pubDate>Tue, 29 Jan 2013 15:07:24 GMT</pubDate><guid isPermaLink="false">New Post: Multiple Marker Detection Windows Phone 7.5 20130129030724P</guid></item><item><title>New Post: Multiple Marker Detection Windows Phone 7.5</title><link>http://slartoolkit.codeplex.com/discussions/431263</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;You need to check the Confidence property of the DetectionResult class, it'll how good the pattern detection is. See the XML comment of the property and also 3rd my reply here:&amp;nbsp;http://slartoolkit.codeplex.com/discussions/243160&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;- Rene&lt;/p&gt;
&lt;/div&gt;</description><author>teichgraf</author><pubDate>Tue, 29 Jan 2013 14:37:52 GMT</pubDate><guid isPermaLink="false">New Post: Multiple Marker Detection Windows Phone 7.5 20130129023752P</guid></item><item><title>New Post: Multiple Marker Detection Windows Phone 7.5</title><link>http://slartoolkit.codeplex.com/discussions/431263</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi Guys,&lt;/p&gt;
&lt;p&gt;I have multiple marker detection working on windows phone 7.5 using the projection sample as a reference. The problem i am having is if there is only one marker in view it will always&amp;nbsp;default&amp;nbsp;to the same image no matter what marker is being detected.&lt;/p&gt;
&lt;p&gt;Other then that it works perfectly, can anyone give me any hints?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Paul&lt;/p&gt;
&lt;/div&gt;</description><author>pauldpaul</author><pubDate>Tue, 29 Jan 2013 13:30:08 GMT</pubDate><guid isPermaLink="false">New Post: Multiple Marker Detection Windows Phone 7.5 20130129013008P</guid></item><item><title>New Post: slar toolkit for win 8 and wp8</title><link>http://slartoolkit.codeplex.com/discussions/406882</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;can slar be used in wp8 and win 8 ar projects?&lt;/p&gt;
&lt;/div&gt;</description><author>tinabplex</author><pubDate>Sat, 15 Dec 2012 19:19:54 GMT</pubDate><guid isPermaLink="false">New Post: slar toolkit for win 8 and wp8 20121215071954P</guid></item><item><title>New Post: SLARToolkit and similarity images</title><link>http://slartoolkit.codeplex.com/discussions/403770</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;is it possible, with this library, calculate the similarity between two images?&lt;/p&gt;
&lt;p&gt;Someone can show me a documentation about this feature?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks in advance&lt;/p&gt;
&lt;p&gt;Luca&lt;/p&gt;
&lt;/div&gt;</description><author>lderiu86</author><pubDate>Mon, 19 Nov 2012 11:48:48 GMT</pubDate><guid isPermaLink="false">New Post: SLARToolkit and similarity images 20121119114848A</guid></item><item><title>New Post: Videos instead of images/text</title><link>http://slartoolkit.codeplex.com/discussions/394101</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Alright, thanks :)&lt;/p&gt;
&lt;p&gt;Zul&lt;/p&gt;&lt;/div&gt;</description><author>zul110</author><pubDate>Mon, 03 Sep 2012 07:08:44 GMT</pubDate><guid isPermaLink="false">New Post: Videos instead of images/text 20120903070844A</guid></item><item><title>New Post: Videos instead of images/text</title><link>http://slartoolkit.codeplex.com/discussions/394101</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Alright, thanks :)&lt;/p&gt;
&lt;p&gt;Zul&lt;/p&gt;&lt;/div&gt;</description><author>zul110</author><pubDate>Mon, 03 Sep 2012 07:08:44 GMT</pubDate><guid isPermaLink="false">New Post: Videos instead of images/text 20120903070844A</guid></item><item><title>New Post: Videos instead of images/text</title><link>http://slartoolkit.codeplex.com/discussions/394101</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;If you look at the Silverlight samples / videos you will actually see that there's video overlaid. However, that feature does not work in WP7 due to it's limitation that the camera preview can't be used together with a video.&lt;/p&gt;
&lt;p&gt;You can create custom markers, but they need to be b/w and framed by a black square. Here's how to:&amp;nbsp;&lt;a href="http://slartoolkit.codeplex.com/documentation"&gt;http://slartoolkit.codeplex.com/documentation&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;- Rene&lt;/p&gt;&lt;/div&gt;</description><author>teichgraf</author><pubDate>Mon, 03 Sep 2012 06:50:27 GMT</pubDate><guid isPermaLink="false">New Post: Videos instead of images/text 20120903065027A</guid></item><item><title>New Post: Videos instead of images/text</title><link>http://slartoolkit.codeplex.com/discussions/394101</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is there a way to use videos instead of images/text in AR apps? I was going through the &amp;quot;Getting started&amp;quot; guide, and also checked the samples, and theres nothing on using videos...&lt;/p&gt;
&lt;p&gt;eg. scenario: when the app detects the marker, a video should start playing&lt;/p&gt;
&lt;p&gt;Also, is there a way to use custom &amp;quot;images&amp;quot; instead of plain markers for detection? For example, when a user points at, say, a poster (eg:
&lt;a href="http://www.bfgcom.com/uploads/4516/4dfh9nw1-32620091032002tgif_poster2__large.jpg "&gt;
TGIF's poster&lt;/a&gt;), then the AR should do its magic...&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks :),&lt;/p&gt;
&lt;p&gt;Zul&lt;/p&gt;
&lt;/div&gt;</description><author>zul110</author><pubDate>Sun, 02 Sep 2012 09:57:05 GMT</pubDate><guid isPermaLink="false">New Post: Videos instead of images/text 20120902095705A</guid></item><item><title>New Post: Cannot Run Windows Phone Sample</title><link>http://slartoolkit.codeplex.com/discussions/392580</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello all ... i am a bit new to programming but how can i run the windows phone sample. i keep getting the error the namespace greybuffermarkerdetector could not be found.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I really do not know what to do.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank You.&lt;/p&gt;
&lt;/div&gt;</description><author>sha8wn</author><pubDate>Wed, 22 Aug 2012 09:13:03 GMT</pubDate><guid isPermaLink="false">New Post: Cannot Run Windows Phone Sample 20120822091303A</guid></item><item><title>New Post: initialize the webcam in visual studio 2010 for windows phone application express </title><link>http://slartoolkit.codeplex.com/discussions/391315</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;how to change&amp;nbsp;&lt;span&gt;&amp;nbsp;the default Silverlight capture device to&amp;nbsp;&lt;span&gt;the video devices&amp;nbsp;&amp;nbsp;in visual studio 2010 for windows phone application express&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>halaqaseam</author><pubDate>Mon, 13 Aug 2012 12:29:01 GMT</pubDate><guid isPermaLink="false">New Post: initialize the webcam in visual studio 2010 for windows phone application express  20120813122901P</guid></item><item><title>New Post: initialize the webcam in visual studio 2010 for windows phone application express </title><link>http://slartoolkit.codeplex.com/discussions/391314</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;how to change&amp;nbsp;&lt;span&gt;&amp;nbsp;the default Silverlight capture device to&amp;nbsp;&lt;span&gt;the video devices&amp;nbsp;&amp;nbsp;in visual studio 2010 for windows phone application express&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>halaqaseam</author><pubDate>Mon, 13 Aug 2012 12:29:00 GMT</pubDate><guid isPermaLink="false">New Post: initialize the webcam in visual studio 2010 for windows phone application express  20120813122900P</guid></item><item><title>New Post: explain method in marker</title><link>http://slartoolkit.codeplex.com/discussions/389297</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Please i don't understand method in marker how it's work&amp;nbsp;&lt;/p&gt;
&lt;p&gt;please if any link you know tell me&lt;/p&gt;
&lt;p&gt;thanks&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>halaqaseam</author><pubDate>Fri, 27 Jul 2012 12:52:49 GMT</pubDate><guid isPermaLink="false">New Post: explain method in marker 20120727125249P</guid></item><item><title>New Post: project in documentation  not run in visual studio 2010 express</title><link>http://slartoolkit.codeplex.com/discussions/389256</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I assume you're trying to use SLARToolkit with Windows Phone. Please read this very good and recent tutorial:&amp;nbsp;&lt;a href="http://channel9.msdn.com/coding4fun/blog/Augmented-Reality-with-SLARToolkit-on-Windows-Phone"&gt;http://channel9.msdn.com/coding4fun/blog/Augmented-Reality-with-SLARToolkit-on-Windows-Phone&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;</description><author>teichgraf</author><pubDate>Fri, 27 Jul 2012 08:45:55 GMT</pubDate><guid isPermaLink="false">New Post: project in documentation  not run in visual studio 2010 express 20120727084555A</guid></item></channel></rss>