<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>GreenSplash Weblog</title>
	<atom:link href="http://bigmanlove88.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bigmanlove88.wordpress.com</link>
	<description>The harmony between KOI and the water</description>
	<lastBuildDate>Fri, 31 Jul 2009 21:16:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bigmanlove88.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>GreenSplash Weblog</title>
		<link>http://bigmanlove88.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bigmanlove88.wordpress.com/osd.xml" title="GreenSplash Weblog" />
	<atom:link rel='hub' href='http://bigmanlove88.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Jquery usage and advantages</title>
		<link>http://bigmanlove88.wordpress.com/2009/05/27/110/</link>
		<comments>http://bigmanlove88.wordpress.com/2009/05/27/110/#comments</comments>
		<pubDate>Wed, 27 May 2009 21:23:58 +0000</pubDate>
		<dc:creator>bigmanlove88</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[$]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://bigmanlove88.wordpress.com/?p=110</guid>
		<description><![CDATA[Jquery jQuery is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It was released in January 2006 at BarCamp NYC by John Resi If you want download  please check here. Just as CSS separates &#8220;display&#8221; characteristics from the HTML structure, jQuery separates the &#8220;behavior&#8221; characteristics from the HTML structure. For example, instead [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=110&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span id="more-110"></span></p>
<p><strong>Jquery </strong></p>
<p><strong>jQuery</strong> is a lightweight JavaScript library that emphasizes interaction between JavaScript and HTML. It was released in January 2006 at BarCamp NYC by John Resi<br />
If you want download  please check <a href="http://jquery.com/">here</a>.</p>
<p>Just as CSS separates &#8220;display&#8221; characteristics from the HTML structure, jQuery separates the &#8220;behavior&#8221; characteristics from the HTML structure. For example, instead of directly specifying the on-click event handler in the specification of a button element, a jQuery driven page would first identify the button element, and then modify its on-click event handler. This separation of behavior from structure is also referred to as the principle of Unobtrusive JavaScript.</p>
<p>jQuery contains the following features:</p>
<p>* DOM element selections using the cross-browser open source selector engine Sizzle, a spin-off out of jQuery project<br />
* DOM traversal and modification (including support for CSS 1-3 and basic XPath)<br />
* Events<br />
* CSS manipulation<br />
* Effects and animations<br />
* Ajax<br />
* Extensibility<br />
* Utilities &#8211; such as browser version and the each function.<br />
* JavaScript Plugins</p>
<p>jQuery usually exists as a single JavaScript file, containing all the common DOM, Event, Effects, and Ajax functions. It can be included within any web page by using the following mark-up:<br />
&lt;script type=&#8221;text/javascript&#8221; src=&#8221;/path/to/jQuery.js&#8221;&gt;&lt;/script&gt;</p>
<p>To execute a function &#8216;myfunc&#8217; immediately after the page is loaded (called the ready handler in jQuery lingo):<br />
$(document).ready(function() {<br />
myfunc();<br />
});<br />
jQuery has two styles of interaction:</p>
<p>* via the $ function, which is a factory method for the jQuery object. These functions, often called commands, are chainable; they each return the jQuery object<br />
* via $.-prefixed functions. These are utility functions which do not work on the jQuery object per se.</p>
<p>A typical workflow for manipulation of multiple DOM nodes begins with $ function being called with a CSS selector string, which results in the jQuery object referencing zero or more elements in the HTML page. This node set can be manipulated by applying instance methods to the jQuery object, or the nodes themselves can be manipulated. For example:</p>
<p>$(&#8220;div.test&#8221;).add(&#8220;p.quote&#8221;).addClass(&#8220;blue&#8221;).slideDown(&#8220;slow&#8221;);</p>
<p>…finds the union of all div tags with class attribute test and all p tags with class attribute quote, adds the class attribute blue to each matched element, and then slides them down with an animation. The $ and add functions affect the matched set, while the addClass and slideDown affect the referenced nodes.</p>
<p>The methods prefixed with $. are convenience methods or affect global properties and behaviour. For example, the following is an example of the map function called each in jQuery:</p>
<p>$.each([1,2,3], function() {<br />
document.write(this + 1);<br />
});</p>
<p>&#8230; writes 234 to the document.</p>
<p>It is possible to perform Ajax routines using the $.ajax and associated methods to load and manipulate remote data.</p>
<p>$.ajax({<br />
type: &#8220;POST&#8221;,<br />
url: &#8220;some.php&#8221;,<br />
data: &#8220;name=John&amp;location=Boston&#8221;,<br />
success: function(msg){<br />
alert( &#8220;Data Saved: &#8221; + msg );<br />
}<br />
});</p>
<p>&#8230; will request some.php with parameters name=John and location=Boston and when the request is finished successfully, the response will be alerted.</p>
<p>Here is a simple good JQuery demo for an expanable sidebarmenu, including animation, button event, ….<br />
<a href="http://www.vimeo.com/116991/">http://www.vimeo.com/116991/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bigmanlove88.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bigmanlove88.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bigmanlove88.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bigmanlove88.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bigmanlove88.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bigmanlove88.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bigmanlove88.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bigmanlove88.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=110&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bigmanlove88.wordpress.com/2009/05/27/110/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a7ab439988b5c3a78e16f9780e0ca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bigmanlove88</media:title>
		</media:content>
	</item>
		<item>
		<title>To be a multimedia pioneer to predict our future</title>
		<link>http://bigmanlove88.wordpress.com/2009/03/20/to-be-a-multimedia-pioneer-to-predict-our-future/</link>
		<comments>http://bigmanlove88.wordpress.com/2009/03/20/to-be-a-multimedia-pioneer-to-predict-our-future/#comments</comments>
		<pubDate>Fri, 20 Mar 2009 03:03:01 +0000</pubDate>
		<dc:creator>bigmanlove88</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[“ Predict the future]]></category>
		<category><![CDATA[bracelet cell phone]]></category>
		<category><![CDATA[e-newspaper]]></category>
		<category><![CDATA[flexible and foldable OLED plastic display]]></category>
		<category><![CDATA[geo-location related products]]></category>
		<category><![CDATA[is to invent it.”]]></category>
		<category><![CDATA[multi user and touch less big screen]]></category>
		<category><![CDATA[predcit our future]]></category>

		<guid isPermaLink="false">http://bigmanlove88.wordpress.com/?p=92</guid>
		<description><![CDATA[Yesterday, it is our pleasure having Wayne MacPhail be our guest speaker. The topic is how we predict and our future will be in technologies and communication, including multimedia. Wayne is an experienced multimedia pioneer since late 80’s. What trigger he worked on Multimedia was the power of the html. When it is compared with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=92&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday, it is our pleasure having Wayne MacPhail be our guest speaker. The topic is how we predict and our future will be in technologies and communication, including multimedia. Wayne is an experienced multimedia pioneer since late 80’s. What trigger he worked on Multimedia was the power of the html. When it is compared with the printed matter, it showed the spread over power is far better, but the target audience is uneven. When the computer become more common, this is not the issue. After 30 years, now the internet distribution is so common and touch every class, every community, every age group…..And we found out every invention start from low quality application, expensive appliance…. when it is mature, it will be common, affordable and will apply in high end application.</p>
<p>And he has brought a lot of example to aware us  <strong>“ Predict the future, is to invent it.”</strong><br />
Examples: 30 years ago, Apple computer TV commercial predict the notebook will be the trend for the future, as well as digital vs. film photography, desktop vs. press publishing, LEDs vs. light bulbs, twitter vs. newsroom and the battery due …….</p>
<p>The computer improved performance 100% in every 2 years during the last 15 years, the memory cost drop down to  almost zero per K&#8230;those are the evidence, people cannot image the prediction will come true. The only thing we have to do is start from low end application, try, carry on and final get to the target.</p>
<p>Recently, <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.apple.com/ca/iphone/?cid=MKT-OMD-10272008-iphone">iPhone</a> is another success example. We can find out any new communication technology if it can be applied to our daily usage seamlessly and will give us convenience and added value in our life, which will bring in SUCCESS.</p>
<p>Some recently hot topics like <a href="http://www.ted.com/index.php/talks/jeff_han_demos_his_breakthrough_touchscreen.html">multi user</a> and <a href="http://vimeo.com/654361">touch less</a> big screen, <a href="http://www.quova.com/?gclid=CLfzzqnAsJkCFRAhDQodqjeo5Q">geo-location related products </a>(good for marketing),  <a href="http://www.intomobile.com/2007/03/14/bracelet-phone-concept.html">bracelet cell phone</a>, <a href="http://www.oled-display.net/flexible-oled">flexible and foldable OLED plastic display</a>, <a href="http://www.nytimes.com/2008/09/08/technology/08ink.html">e-newspaper</a>…..those will be born several years later or launched. And like many films create the future scene by visual effects to predict our future……those is our inspiration. <strong>What is our future… let us use our imagination, inspiration on our daily life to predict and create our future</strong>.</p>
<p>New technology bring us a lot of added values, but everything will have both sides, pro and con. Like the geo_location product  lead a privacy argument, the expertise predict in the future, people will have less and less privacy. We need adjust and get a balance point to welcome the new born technologies in multimedia.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bigmanlove88.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bigmanlove88.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bigmanlove88.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bigmanlove88.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bigmanlove88.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bigmanlove88.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bigmanlove88.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bigmanlove88.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=92&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bigmanlove88.wordpress.com/2009/03/20/to-be-a-multimedia-pioneer-to-predict-our-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a7ab439988b5c3a78e16f9780e0ca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bigmanlove88</media:title>
		</media:content>
	</item>
		<item>
		<title>Spatial View- the pioneer of the 3D viewing in Autostereoscopy</title>
		<link>http://bigmanlove88.wordpress.com/2009/02/18/spatial-view-the-pioneer-of-the-3d-viewing-in-autostereoscopy/</link>
		<comments>http://bigmanlove88.wordpress.com/2009/02/18/spatial-view-the-pioneer-of-the-3d-viewing-in-autostereoscopy/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 22:22:57 +0000</pubDate>
		<dc:creator>bigmanlove88</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[3d game productions]]></category>
		<category><![CDATA[3D games]]></category>
		<category><![CDATA[3D viewing]]></category>
		<category><![CDATA[Auto-stereoscopy]]></category>
		<category><![CDATA[Flash in 3D]]></category>
		<category><![CDATA[Maya in 3D]]></category>
		<category><![CDATA[mobile viewing]]></category>

		<guid isPermaLink="false">http://bigmanlove88.wordpress.com/?p=51</guid>
		<description><![CDATA[3D viewing is developed long, long time and have a pretty long history. Actually, the basic theory on the production are similar as before. But there is huge difference in nowadays applied media with the old day&#8217;s media, like only in printing and filming. Right now, it is implied to TV broadcasting, mobile devices, games, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=51&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>3D viewing is developed long, long time and have a pretty long history. Actually, the basic theory on the production are similar as before. But there is huge difference in nowadays applied media with the old day&#8217;s media, like only in printing and filming. Right now, it is implied to TV broadcasting, mobile devices, games, signage, kiosk, laptop computers, professional designs(still and motion)&#8230;&#8230;..etc. So they need some new products to fit in these applications. And in a long run , we need an extra pair of 3D glass to help us to achieve the 3D effect. Nowadays, we having some no-glass 3D instrument to help us to enjoy this amazing effect. It is called the &#8220;<a href="http://en.wikipedia.org/wiki/Autostereoscopy">Auto-stereoscopy</a>&#8220;.<br />

<a href='http://bigmanlove88.wordpress.com/2009/02/18/spatial-view-the-pioneer-of-the-3d-viewing-in-autostereoscopy/3deeshell_0/' title='3deeshell_0'><img width="150" height="150" src="http://bigmanlove88.files.wordpress.com/2009/02/3deeshell_0.jpg?w=150&#038;h=150" class="attachment-thumbnail" alt="3deeshell_0" title="3deeshell_0" /></a>
<a href='http://bigmanlove88.wordpress.com/2009/02/18/spatial-view-the-pioneer-of-the-3d-viewing-in-autostereoscopy/3deeshell_01/' title='3deeshell_01'><img width="150" height="150" src="http://bigmanlove88.files.wordpress.com/2009/02/3deeshell_01.jpg?w=150&#038;h=150" class="attachment-thumbnail" alt="3deeshell_01" title="3deeshell_01" /></a>
<a href='http://bigmanlove88.wordpress.com/2009/02/18/spatial-view-the-pioneer-of-the-3d-viewing-in-autostereoscopy/3deeshell_02/' title='3deeshell_02'><img width="150" height="150" src="http://bigmanlove88.files.wordpress.com/2009/02/3deeshell_02.jpg?w=150&#038;h=150" class="attachment-thumbnail" alt="3deeshell_02" title="3deeshell_02" /></a>
<br />
<a href="http://en.wikipedia.org/wiki/Autostereoscopy">Auto-stereoscopy</a> can be achieve in two ways. One is Parallel Barrier- it is limited by number of views it was produced on the view source. Quality is the good and major applied in the larger size monitor. Goof for TV broadcasting . And the <a href="http://www.spatialview.com/en/nod">Spatial View</a> is one of the pioneer in this field. they have the products  like the <a href="http://www.spatialview.com/en/node/287">multi viewers display</a>. Other is the Lenticular Overlay- pixels are magnified in different directions to get the effect.in order to to utilize eye tracking to improve the image quality and accuracy. They have no problem on the limitation of the number of view to produce in the media source . And the brightness is better, since they base on the light refraction to achieve the effect , so almost no light loss. But they have the limitation on the size of the lens which applied over the media. so usually they have the application on the smaller items, like the mobile device, iPhone, small laptop.  <a href="http://www.spatialview.com/en/nod">Spatial View</a> have the products like <a href="http://www.spatialview.com/en/node/458">Mobile 3D</a>.</p>
<p>Productions on the Auto-stereoscopic display are still similar, like  shooting by arrange 2 camera side by side , Lorea 3D lenses on SLR camera, taking 2 pic separately with a similar angle, or the modern way, <a href="http://www.spatialview.com/en/node/459">3DeeCamera</a>- a software which is developed by Spatial View and specially working on the iPhone. It make the production much easy, affordable, and it can be integrated to the daily used machine. It is an brill ant example on the application and marketing.</p>
<p>Besides on the display shooting production. Spatial View covered the post-production too. They have developed several plug in (SVI) for the professional designer in the post-production, like Flash, After Effect, 3Dmax, Maya and the Cinama4D. It is very helpful for these products to grow, encourage the designers and the animators produce more quality display source to reach a win-win situation. They even provide a free download on some of the <a href="http://www.spatialview.com/en/node/289">plug-ins</a>.</p>
<p>The 3D game business is another growing fast category, they have over 30 popular games support their products. Why it is so successful? They provide their own &#8220;Driver Shim&#8221; bridge video drive and the games. For the mobile games &#8211; they support by an view SDK.   Since Spatial View is so clever to cover and support the most modern and updated media. Great success is sure!</p>
<p>Today&#8217;s Multimedia Pioneer lesson,  we have  our guest speaker, James Hurley who if form Spatial View. So I  have chance to try the products on the iPhone and the laptop. It is amazing good and handy to achieve the 3D effect. But I don&#8217;t know whether I can longtime continuously watching. This is what I doubt. And for all the 3D guru or enthausiastors, you can get more information in productions and the tricks with the Spatial View porducts from this site, <a href="http://www.3dbarn.com/">3dbarn.com</a>.</p>
<p>Technology doesn&#8217;t to be brand new, how to adapte the changes and how to smartly applied to the selective field to develop and support the productions are the keys to success in nowadays multimedia industry.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bigmanlove88.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bigmanlove88.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bigmanlove88.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bigmanlove88.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bigmanlove88.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bigmanlove88.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bigmanlove88.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bigmanlove88.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=51&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bigmanlove88.wordpress.com/2009/02/18/spatial-view-the-pioneer-of-the-3d-viewing-in-autostereoscopy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a7ab439988b5c3a78e16f9780e0ca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bigmanlove88</media:title>
		</media:content>
	</item>
		<item>
		<title>Gesturetek field trip</title>
		<link>http://bigmanlove88.wordpress.com/2009/02/10/gesturetek-field-trip/</link>
		<comments>http://bigmanlove88.wordpress.com/2009/02/10/gesturetek-field-trip/#comments</comments>
		<pubDate>Tue, 10 Feb 2009 19:54:11 +0000</pubDate>
		<dc:creator>bigmanlove88</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gesturetek]]></category>
		<category><![CDATA[virtually no I/O]]></category>

		<guid isPermaLink="false">http://bigmanlove88.wordpress.com/?p=21</guid>
		<description><![CDATA[As one of the Sheridan College student in Interactive Multimedia-It is our pleasure having  a field trip to visit Gesturetek on last Friday. Just at the front door, we are very exciting to try the features and effects on the Gesturetek Monitor and jam up the front entry blocking the people&#8217;s traffic already.  It is [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=21&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignnone" style="width: 430px"><img title="gesturetek coffe stream " src="http://photos-d.ak.fbcdn.net/photos-ak-snc1/v2268/45/46/13179218292/n13179218292_1358027_7749.jpg" alt="hand get in to move stream " width="420" height="300" /><p class="wp-caption-text">hand get in to move stream </p></div>
<p>As one of the Sheridan College student in Interactive Multimedia-It is our pleasure having  a field trip to visit <a href="http://www.gesturetek.com/">Gesturetek </a>on last Friday. Just at the front door, we are very exciting to try the features and effects on the Gesturetek Monitor and jam up the front entry blocking the people&#8217;s traffic already.  It is a big sign &#8211; people are so interested in this kind of pioneer innovation and really want to try it. And our trip is held by the president and he try to show us as much as possible they did in the past. So many&#8230;. and the applications are so wild&#8230; &amp; interesting. It inspired me I can apply these features in the future promotion campaigning. And the most important thing is we get their sponsor our group in software and hardware support for this term&#8217;s  group project in the Premier Award Ceremony.</p>
<p>GestureTek™ is the pioneer, patent-holder and world-leader in camera-enabled gesture-recognition technology for presentation and entertainment systems.</p>
<p>Their most unique feature is using the gesture to replace all the input methods, like the mouse, keyboard, button control, wheel&#8230;etc. only use your finger or your body movement to take over all the I/O between you and the computer.</p>
<p>The company&#8217;s multi-patented video gesture control technology (VGC) lets users control multi-media content, access information, manipulate special effects, even immerse themselves in an interactive 3D virtual world (green background chroma keying to isolate the player)– simply by moving their hands or body.  They deliver Wii-like gesture-control without the need to wear, hold or touch anything.</p>
<p>The media are very wild, like interactive multi-media displays, kiosks, exhibits, digital signs and advertisements, virtual gaming systems and other interactive surface computing solutions, many with multi-touch interactivity. They are installed in museums, science centers, amusement parks, trade shows, retail locations, bars &amp; nightclubs, real estate presentation centers, corporate showrooms, boardrooms, digital signage networks and other public spaces such as airports and stadiums.  They’re also revolutionizing television production, game development, advertising, virtual videoconferencing, and even the health-care sector, by applying our technology in unique and innovative ways. Amassing successfully!</p>
<p>The basic theory is very simple, using Infra red instrument to detect the motion or gesture. And it will not be interrupted by the actual full color image. And it was built in so many format , like ground, ceiling, cube, table, rear projection, matrix surrounding sensor&#8230;to meet the different requirement.</p>
<p>Recently, they have more precise 3D sensor and camera to achieve this field. 3D application is coming&#8230;in addition, the multi-touch function of the big screen and let multi-user to work on same machine at the same time&#8230;</p>
<p>And our group is very lucky , we get more detailed information about our project , like how to using their built in effects and how to bridge their engine by the Flash , XML and the engine to handle multi-layers of effect and show us a lot of examples to broaden our horizon.</p>
<p>I have a little bit disappointing on the click and select function on the gesturetek technologies . The accuracy of the motion a bit off and the response still a bit slow&#8230;there still have some room for improvement. But I think it will be solved by the more advance and higher resolution camera or detector to detect the motion more accurately. Detect the 3D dimension more precisely and can form a more delicate and sophisticated system in click  select function too. Follow the price drop on the high resolution camera , projector, and the popularity increment . The machine price will drop too.</p>
<p>You can share our photos in <a href="http://www.facebook.com/photo.php?pid=1358029&amp;id=13179218292">here.</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bigmanlove88.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bigmanlove88.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bigmanlove88.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bigmanlove88.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bigmanlove88.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bigmanlove88.wordpress.com/21/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bigmanlove88.wordpress.com/21/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bigmanlove88.wordpress.com/21/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=21&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bigmanlove88.wordpress.com/2009/02/10/gesturetek-field-trip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a7ab439988b5c3a78e16f9780e0ca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bigmanlove88</media:title>
		</media:content>

		<media:content url="http://photos-d.ak.fbcdn.net/photos-ak-snc1/v2268/45/46/13179218292/n13179218292_1358027_7749.jpg" medium="image">
			<media:title type="html">gesturetek coffe stream </media:title>
		</media:content>
	</item>
		<item>
		<title>The Application of the QRCode and iPhone future development</title>
		<link>http://bigmanlove88.wordpress.com/2008/09/26/the-application-of-the-qrcode-and-iphone-future-development/</link>
		<comments>http://bigmanlove88.wordpress.com/2008/09/26/the-application-of-the-qrcode-and-iphone-future-development/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 00:02:20 +0000</pubDate>
		<dc:creator>bigmanlove88</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Application of QRcode]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Qr code]]></category>
		<category><![CDATA[QRCode and iPhone]]></category>

		<guid isPermaLink="false">http://bigmanlove88.wordpress.com/?p=9</guid>
		<description><![CDATA[QR code QR code is a two dimension bar code which can store more information than the ordinary UPC code. And the capturing and decoding method can be snapping by normal camera mobile phone or by scanning (more sophisticated barcode reader). You can find more information in here.  .And it can be done by yourself [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=9&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-128 alignnone" title="Wikipedia_mobile_en" src="http://bigmanlove88.files.wordpress.com/2008/09/wikipedia_mobile_en.png?w=169&#038;h=169" alt="Wikipedia_mobile_en" width="169" height="169" /><img src="///Users/alfredli/Library/Caches/TemporaryItems/moz-screenshot.jpg" alt="" /><br />
<strong>QR code</strong><br />
QR code is a two dimension bar code which can store more information than the ordinary UPC code. And the capturing and decoding method can be snapping by normal camera mobile phone or by scanning (more sophisticated barcode reader). You can find more information in <a href="http://www.denso-wave.com/qrcode/index-e.html">here</a>.  .And it can be done by yourself and it is free of charge through some QRCode application like <a href="http://reader.kaywa.com/">Kaywa reader</a> .</p>
<p>The potential of the usage of the QRCode is very wide, since it is free of charge, and the involved equipment (mobile camera phone) is handy and common. In Japan, the application of the advertisement and the large information labeling are proofed very successfully.<br />
Why we need the QR code? Since it is very convenient and application is unlimited, it can capture the information anywhere, anytime by our daily used camera cell phone in. Just like take a snapping shoot. Then you can keep all the information to your cell pone. You don’t need to remember the information, example the contact information, the URL, etc…and you won’t lost any information and the information will be specific too. It is a killer application for our convenience . In the meantime,  it can help the marketing guy checking the distribution and volume of the sales through the QR code arrangement and the collection of the data through the Internet. Like Gallerie red wine sales campaign. Let the buyer scan the QRcode to show the weekly draw page and winner list. <a href="http://galleriejapan.blogspot.com/2008/06/competition-begins-using-qr-code.html">check here to find the reference informaion</a>.<br />
Since Japan have most advance technology and the high popularity of mobile phone, so the QR code is widely applied in Japan rather than in North America. Canada needs work harder on this…</p>
<p><img class="size-medium wp-image-132 alignnone" title="hero-1-20090608" src="http://bigmanlove88.files.wordpress.com/2008/09/hero-1-200906081.jpg?w=537&#038;h=216" alt="hero-1-20090608" width="537" height="216" /></p>
<p><strong>iPhone</strong></p>
<p>Recently, <a onclick="return mugicPopWin(this,event);" oncontextmenu="mugicRightClick(this);" href="http://www.apple.com/ca/iphone/">iPhone</a> is  the most successfully launched enterprise smart phone. Their major competitor , like <a href="http://www.blackberry.com/">Black berry </a>target on the business side rather than the fun smart phone side. So their target audience is different.</p>
<p>The trend of the development of the future mobile phone:<br />
1.    high end MP3 player,<br />
2.    <a href="http://jeroenarendsen.nl/2008/07/ninja-strike-airtime/">gesture control</a> in applications &amp; game development, like the Ninja Strike Airtime, a killer application for gesture recognition…use the camera to capture the flow of movement and integrated in the game…<br />
3.    <a href="http://www.findwhere.com/index.php?option=com_content&amp;view=article&amp;id=45&amp;Itemid=29&amp;gclid=CPWo1eqF-JUCFR-mQQodDC0JFA">GPS tracking</a> is applied on tracking your kids and the seniors how and where they go,<br />
4.    <a href="http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.20.5059,"></a><a href="http://www.geocaching.com">Geo-casting</a> is used to find out the volume and distribution of the potential clients.<br />
5.    <a href="http://jeroenarendsen.nl/2008/08/mobileasl-progress/">The real time videoconference calls for the deaf</a>. This technology invade by Mobiles which is use a new way to compress the signal and let the signal go smoothly in real time over the phone and under the normal bandwidth.</p>
<p>The input method of the smart phones is the biggest problem. Blackberry’s Hardware keyboard and the virtual keyboard on iPhone are not perfect too. Voice capture technology is limited by the noise control. The text entry in cell phone still  has room to  improve. Hope that the rollable display will solve this problem and the applications, which are limited by the size of the display.</p>
<p>The future development of the iPhone application are limited by un-supporting the Flash developer and the limited amount license from Apple. Those are the money politic issues. Technically, Flash is supported and can be used on the iPhone application, and make more developer can be involved in the development.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bigmanlove88.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bigmanlove88.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bigmanlove88.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bigmanlove88.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bigmanlove88.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bigmanlove88.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bigmanlove88.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bigmanlove88.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bigmanlove88.wordpress.com&amp;blog=4888219&amp;post=9&amp;subd=bigmanlove88&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bigmanlove88.wordpress.com/2008/09/26/the-application-of-the-qrcode-and-iphone-future-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/99a7ab439988b5c3a78e16f9780e0ca3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bigmanlove88</media:title>
		</media:content>

		<media:content url="http://bigmanlove88.files.wordpress.com/2008/09/wikipedia_mobile_en.png" medium="image">
			<media:title type="html">Wikipedia_mobile_en</media:title>
		</media:content>

		<media:content url="///Users/alfredli/Library/Caches/TemporaryItems/moz-screenshot.jpg" medium="image" />

		<media:content url="http://bigmanlove88.files.wordpress.com/2008/09/hero-1-200906081.jpg?w=300" medium="image">
			<media:title type="html">hero-1-20090608</media:title>
		</media:content>
	</item>
	</channel>
</rss>
