<?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>root@tan-lappy</title>
	<atom:link href="http://tanushri3.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tanushri3.wordpress.com</link>
	<description>Encounters With Technology</description>
	<lastBuildDate>Sat, 05 May 2012 07:54:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tanushri3.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/1e6677d92a1c632dde488b4a42c1f063?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>root@tan-lappy</title>
		<link>http://tanushri3.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tanushri3.wordpress.com/osd.xml" title="root@tan-lappy" />
	<atom:link rel='hub' href='http://tanushri3.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Build quick UI Applications using Qt Creator</title>
		<link>http://tanushri3.wordpress.com/2011/11/23/build-quick-ui-applications-using-qt-creator/</link>
		<comments>http://tanushri3.wordpress.com/2011/11/23/build-quick-ui-applications-using-qt-creator/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 06:05:43 +0000</pubDate>
		<dc:creator>tanushri</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[GUI Application]]></category>
		<category><![CDATA[Qt]]></category>

		<guid isPermaLink="false">http://tanushri3.wordpress.com/?p=120</guid>
		<description><![CDATA[Qt is widely used for developing applications with a GUI. Here I have described about a simple slider and dial desktop application. By moving the dial clockwise or anti- clockwise or by moving the slider left or right, the value on the lcd changes. So to start building the application, you need to have a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=120&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">Qt is widely used for developing applications with a GUI. Here I have described about a simple slider and dial desktop application. By moving the dial clockwise or anti- clockwise or by moving the slider left or right, the value on the lcd changes. So to start building the application, you need to have a Qt SDK 4.7 or higher, which you can get from <a href="http://qt.nokia.com/downloads">here</a>.</p>
<p style="text-align:justify;">After you are done with the installation, click on create project and select Qt C++ Project. The Qt C++ project has three options, from that select the first one, Qt Gui Application.</p>
<p style="text-align:justify;">Give a name to your project and select the Desktop Qt version.<a href="http://tanushri3.files.wordpress.com/2011/11/qt_sdk.png"><img class="alignleft size-medium wp-image-121" title="qt_sdk" src="http://tanushri3.files.wordpress.com/2011/11/qt_sdk.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<p style="text-align:justify;">Go to the next step and click on finish project.The IDE will show your project with some files, which are automatically generated by Qt, in the project explorer. These files are .pro, .cpp, .ui, .h.</p>
<p style="text-align:justify;">Click on the mainwindow.ui, and drag and drop the components which you want to include in the ui. In this example, I have used a dial, a  horizontal slider and a LCD number. Finally the ui would appear like this.</p>
<p style="text-align:center;"><a href="http://tanushri3.files.wordpress.com/2011/11/lcd.png"><img class="size-medium wp-image-122 aligncenter" title="mainwindow.ui" src="http://tanushri3.files.wordpress.com/2011/11/lcd.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<p style="text-align:justify;">Now we have to assign signals and slots, since we want to notify the lcd to increment or decrement the number while the dial or the slider is moved. So right click on the dial and click on &#8216;Go to slot&#8217;. There will be several options available, select the &#8216; value(changed) &#8216; option. Repeat the same step with right clicking on the horizontal slider.</p>
<p style="text-align:center;"><a href="http://tanushri3.files.wordpress.com/2011/11/dial_value_changed.png"><img class="size-medium wp-image-128 aligncenter" title="dial_value_changed" src="http://tanushri3.files.wordpress.com/2011/11/dial_value_changed.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<p style="text-align:justify;">After doing the above step, the mainwindow.cpp and mainwindow.h file will automatically create these two methods and their declarations in the header file.</p>
<p>To add the functionality to the dial and slider, just add the line</p>
<p>ui-&gt;lcdnumber-&gt;display(value);</p>
<p><a href="http://tanushri3.files.wordpress.com/2011/11/main_files.png"><img class="size-medium wp-image-130 aligncenter" title="main_files" src="http://tanushri3.files.wordpress.com/2011/11/main_files.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<p style="text-align:left;"><a href="http://tanushri3.files.wordpress.com/2011/11/property_editor.png"><img class="alignleft size-medium wp-image-129" title="property_editor" src="http://tanushri3.files.wordpress.com/2011/11/property_editor.png?w=300&#038;h=187" alt="" width="300" height="187" /></a>in both the methods. Do not forget to save the project side by side while making the changes.Click on the window property editor, from where you can set the dial&#8217;s min, max value, step change etc. In this example I have set the min value as 0 and max as 99. The step size is 1. The max no. of digits which can be displayed on lcd can also be set from here itself.</p>
<p style="text-align:justify;">Now click on the run button, the application will start and certain output messages will come in the console window. You will see the application running on the system <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . In this way you can create quick user interface apps using the Qt SDK.</p>
<p style="text-align:center;"><a href="http://tanushri3.files.wordpress.com/2011/11/output1.png"><img class="size-medium wp-image-135 aligncenter" title="output" src="http://tanushri3.files.wordpress.com/2011/11/output1.png?w=300&#038;h=187" alt="" width="300" height="187" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tanushri3.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tanushri3.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tanushri3.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tanushri3.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tanushri3.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tanushri3.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tanushri3.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tanushri3.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=120&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tanushri3.wordpress.com/2011/11/23/build-quick-ui-applications-using-qt-creator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38205a0029fb8d59e1ce30aa12dbe418?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tanushri3</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/11/qt_sdk.png?w=300" medium="image">
			<media:title type="html">qt_sdk</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/11/lcd.png?w=300" medium="image">
			<media:title type="html">mainwindow.ui</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/11/dial_value_changed.png?w=300" medium="image">
			<media:title type="html">dial_value_changed</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/11/main_files.png?w=300" medium="image">
			<media:title type="html">main_files</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/11/property_editor.png?w=300" medium="image">
			<media:title type="html">property_editor</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/11/output1.png?w=300" medium="image">
			<media:title type="html">output</media:title>
		</media:content>
	</item>
		<item>
		<title>Subcutaneous Vein Detection System Version1.0</title>
		<link>http://tanushri3.wordpress.com/2011/08/10/m-tech-thesis/</link>
		<comments>http://tanushri3.wordpress.com/2011/08/10/m-tech-thesis/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 17:05:44 +0000</pubDate>
		<dc:creator>tanushri</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[GUI Application]]></category>
		<category><![CDATA[Image processing]]></category>
		<category><![CDATA[mini2440]]></category>
		<category><![CDATA[Open cv]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[S3C2440]]></category>
		<category><![CDATA[image processing on ARM9 SBC]]></category>
		<category><![CDATA[OpenCV]]></category>
		<category><![CDATA[vein detection]]></category>

		<guid isPermaLink="false">http://tanushri3.wordpress.com/?p=108</guid>
		<description><![CDATA[This thesis will give an insight to you about my final year M.Tech project, Subcutaneous Vein Detection using ARM 9 Single Board Computer. How the open source tools and Embedded Linux platform has helped in the overall development of a full fledged embedded system. The used of Open CV and Qt together has been explored [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=108&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">This thesis will give an insight to you about my final year M.Tech project, Subcutaneous Vein Detection using ARM 9 Single Board Computer. How the open source tools and Embedded Linux platform has helped in the overall development of a full fledged embedded system. The used of Open CV and Qt together has been explored and a lot more interesting things can be done in future by following the same trend.</p>
<p style="text-align:justify;">Overview of System</p>
<p style="text-align:justify;">The system consists of three main components. First, an infra-red LED source . These infra-red LED&#8217;s have a  peak response at a particular wavelength of light for which the veins apprar brighter than the surrounding tissue  Second,  a IR sensitive customized webcam which captures the image of limb under observation. And third, a single board computer which takes care of the image processing part. Of course, ra firmware is developed for the system which is a combination of image processing OpenCV libraries and a GUI Qt libraries.</p>
<p style="text-align:justify;"><a href="http://tanushri3.files.wordpress.com/2011/08/system1.png"><img class="aligncenter size-medium wp-image-146" title="Subcutaneous Vein Detection" src="http://tanushri3.files.wordpress.com/2011/08/system1.png?w=300&#038;h=144" alt="" width="300" height="144" /></a></p>
<p style="text-align:justify;">Prototype</p>
<p style="text-align:justify;">The prototype developed is shown in the figure below. For the time being an actual lamp lighting stand is used as a height adjusting stand and support for the camera. The webcam sits at the top of the system  and the focus of the webcam can be adjusted as required. A separate power supply is developed for infra-red LED lighting system. The limb is kept on a limb rest.</p>
<p style="text-align:justify;"><a href="http://tanushri3.files.wordpress.com/2011/08/qtsys.jpg"> <img class="aligncenter size-medium wp-image-147" title="Subcutaneous Vein Detection System Version1.0" src="http://tanushri3.files.wordpress.com/2011/08/qtsys.jpg?w=225&#038;h=300" alt="" width="225" height="300" /></a></p>
<p style="text-align:justify;">Results</p>
<p style="text-align:justify;">The enhanced veins are displayed on the monitor which is interfaced to the system. The next step is to interface a projector to it, so that the enhanced image can be projected on the limb itself.</p>
<p style="text-align:center;"><a href="http://tanushri3.files.wordpress.com/2011/08/ori-1.png"><img class="wp-image-148 aligncenter" title="veins as captured, processed and displayed by the System" src="http://tanushri3.files.wordpress.com/2011/08/ori-1.png?w=216&#038;h=162" alt="" width="216" height="162" /></a><a href="http://tanushri3.files.wordpress.com/2011/08/ori-4.png"><img class="wp-image-149 aligncenter" title="Result2" src="http://tanushri3.files.wordpress.com/2011/08/ori-4.png?w=216&#038;h=162" alt="" width="216" height="162" /></a></p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">For more details, you can refer these two links:</p>
<p style="text-align:justify;"><a href="http://tanushri3.files.wordpress.com/2011/08/tanushri.pdf">M.Tech Thesis</a></p>
<p><a href="http://tanushri3.files.wordpress.com/2011/08/subcutaneous_vein_detection.pdf">Subcutaneous_Vein_Detection_PPt</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tanushri3.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tanushri3.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tanushri3.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tanushri3.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tanushri3.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tanushri3.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tanushri3.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tanushri3.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=108&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tanushri3.wordpress.com/2011/08/10/m-tech-thesis/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38205a0029fb8d59e1ce30aa12dbe418?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tanushri3</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/08/system1.png?w=300" medium="image">
			<media:title type="html">Subcutaneous Vein Detection</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/08/qtsys.jpg?w=225" medium="image">
			<media:title type="html">Subcutaneous Vein Detection System Version1.0</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/08/ori-1.png?w=300" medium="image">
			<media:title type="html">veins as captured, processed and displayed by the System</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/08/ori-4.png?w=300" medium="image">
			<media:title type="html">Result2</media:title>
		</media:content>
	</item>
		<item>
		<title>Configure &amp; Setup Qt for an Embedded Device</title>
		<link>http://tanushri3.wordpress.com/2011/05/25/configure-setup-qt-for-an-embedded-device/</link>
		<comments>http://tanushri3.wordpress.com/2011/05/25/configure-setup-qt-for-an-embedded-device/#comments</comments>
		<pubDate>Wed, 25 May 2011 10:32:48 +0000</pubDate>
		<dc:creator>tanushri</dc:creator>
				<category><![CDATA[Embedded]]></category>

		<guid isPermaLink="false">http://tanushri3.wordpress.com/?p=72</guid>
		<description><![CDATA[For rapid development of GUI applications , Qt is a nice framework which is a popular choice for embedded devices. Over here I have discussed for ARM based embedded device, but you can configure qt for any platform you may use.To start with it, you need to set up  few things first. Untar the qt-everywhere-opensource-src-4.6.2 [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=72&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:justify;">For rapid development of GUI applications , Qt is a nice framework which is a popular choice for embedded devices. Over here I have discussed for ARM based embedded device, but you can configure qt for any platform you may use.To start with it, you need to set up  few things first.</p>
<ul>
<li>Untar the qt-everywhere-opensource-src-4.6.2 source on the host in whichever location you may like. Mine is /usr/local/qt. You can download the source from this link<a href="http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.2.tar.gz" target="_blank"> Qt 4.6.2.</a></li>
<li>Download and setup the <a href="http://www.friendlyarm.net/dl.php?file=arm-linux-gcc-4.3.2.tgz" target="_blank">GNU ARM Toolchain</a> <strong></strong>and set the PATH variable accordingly.</li>
<li>To configure Qt for our embedded device we need to pass the following arguments:</li>
</ul>
<pre style="text-align:justify;">./configure -embedded arm -xplatform qws/linux-arm-g++ -prefix \
/usr/local/qt -little-endian -no-qt3support -no-cups -no-largefile \
-optimized-qmake -no-openssl -nomake tools -qt-mouse-tslib -qt-kbd-linuxinput</pre>
<p style="text-align:justify;">The arguments which you give configures Qt accordingly. Suppose you  need networking capability on the device, just add <strong>-webkit</strong> option while configuring. You can modify the options according to your need.<strong></strong></p>
<p>Now after configuring Qt run</p>
<pre>make</pre>
<p>Wait for some time and the qt libraries will be there in /usr/local/qt/lib/ directory.</p>
<p>Now suppose you forget to enable the mouse and keyboard options while configuring Qt. Just add the required options and run make again. Doing this will only affect the QtGui library, so you need to replace only QtGui.so.x.x file on your root filesystem if you are planning to make changes.</p>
<h2 style="text-align:justify;">Setting up Qt libs on the device</h2>
<p style="text-align:justify;">Create a dir <strong>/usr/local/qt</strong> on device root filesystem and copy the complete <strong>lib</strong> directory from your host to the target in /usr/local/qt directory.Remove the small video file, mp3 file and some sample images that are present on the device to free some NAND in case the memory on your device is low.</p>
<h2 style="text-align:justify;">Setting Environment Variables on the device</h2>
<p style="text-align:justify;">To make the device understand the new Qt libs, make modifications in the startup scripts of the embedded device. Normally the startup script is available in the /etc/initd/rcS</p>
<p style="text-align:justify;">Edit the <strong>/etc/initd/rcS</strong> file and add this line to it</p>
<pre style="text-align:justify;">source /etc/qtprofile</pre>
<p style="text-align:justify;">Create the /etc/qtprofile and add the following lines to it:</p>
<pre style="text-align:justify;">export LD_LIBRARY_PATH=/usr/local/qt/lib
export QWS_MOUSE_PROTO=IntelliMouse:/dev/input/event0
export QWS_DISPLAY=LinuxFB:mmWidth=310:mmHeight=190</pre>
<p style="text-align:justify;">Since I have enabled the support for mouse and keyboard while configuring Qt.Remember that these variables may change according to the /dev available on your deviceGo to /dev/input/ and see which file is responsible for which device. For eg. if tslib is configured on your device then the <strong>QWS_MOUSE_PROTO </strong>variable will have the value something like<strong></strong></p>
<pre style="text-align:justify;">QWS_MOUSE_PROTO=Tslib:/dev/input/event1</pre>
<p style="text-align:justify;">Now your embedded device is ready with Qt 4.6.2 libs. Try running a simple application (viz a Analog Clock from the cross-compiled qt examples at /usr/local/qt/examples/widgets/analogclock/analogclock by giving the -qws option on the device shell as</p>
<pre style="text-align:justify;">./analogclock -qws</pre>
<p style="text-align:justify;">So thats all folks!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tanushri3.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tanushri3.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tanushri3.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tanushri3.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tanushri3.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tanushri3.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tanushri3.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tanushri3.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=72&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tanushri3.wordpress.com/2011/05/25/configure-setup-qt-for-an-embedded-device/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38205a0029fb8d59e1ce30aa12dbe418?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tanushri3</media:title>
		</media:content>
	</item>
		<item>
		<title>11th Feb 2011</title>
		<link>http://tanushri3.wordpress.com/2011/02/10/11th-feb-2011/</link>
		<comments>http://tanushri3.wordpress.com/2011/02/10/11th-feb-2011/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 09:40:44 +0000</pubDate>
		<dc:creator>tanushri</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[GNUnify]]></category>

		<guid isPermaLink="false">http://tanushri3.wordpress.com/?p=74</guid>
		<description><![CDATA[Gnunify is one of the biggest annual FOSS event organized by the students of SICSR and PLUG in Pune, India via 11th Feb 2011.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=74&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Gnunify is one of the biggest annual FOSS event organized by the students of SICSR and PLUG in Pune, India</p>
<p>via <a href="http://gnunify.in/11th-feb-2011">11th Feb 2011</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tanushri3.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tanushri3.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tanushri3.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tanushri3.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tanushri3.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tanushri3.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tanushri3.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tanushri3.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=74&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tanushri3.wordpress.com/2011/02/10/11th-feb-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38205a0029fb8d59e1ce30aa12dbe418?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tanushri3</media:title>
		</media:content>
	</item>
		<item>
		<title>Open cv on mini2440 (S3C2440)</title>
		<link>http://tanushri3.wordpress.com/2011/02/04/open-cv-on-mini2440-s3c2440/</link>
		<comments>http://tanushri3.wordpress.com/2011/02/04/open-cv-on-mini2440-s3c2440/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 11:14:38 +0000</pubDate>
		<dc:creator>tanushri</dc:creator>
				<category><![CDATA[Image processing]]></category>
		<category><![CDATA[mini2440]]></category>
		<category><![CDATA[Open cv]]></category>
		<category><![CDATA[S3C2440]]></category>
		<category><![CDATA[image processing]]></category>

		<guid isPermaLink="false">http://tanushri3.wordpress.com/?p=49</guid>
		<description><![CDATA[Open CV 2.0.0 is an image processing library developed by Intel. It is one of the most advanced libraries for image processing. It is open source and is used widely in many image processing applications. For cross-compilation, please refer  the page on embedded nirvana, a community wiki, which I wrote in December. Here&#8217;s the link [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=49&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Open CV 2.0.0 is an image processing library developed by Intel. It is one of the most advanced libraries for image processing. It is open source and is used widely in many image processing applications. For cross-compilation, please refer  the page on embedded nirvana, a community wiki, which I wrote in December.</p>
<p style="text-align:left;"><span id="more-49"></span>Here&#8217;s the link : <a href="http://wiki.embeddednirvana.org/Opencv_on_mini2440" target="_blank">http://wiki.embeddednirvana.org/Opencv_on_mini2440</a><a title="Open cv on mini2440" href="http://http://wiki.openarmlab.org/index.php?title=Opencv_on_mini2440" target="_blank"></a></p>
<p style="text-align:left;"><a href="http://tanushri3.files.wordpress.com/2011/02/s3c2440-arm9-board.jpg">
<a href='http://tanushri3.wordpress.com/2011/02/04/open-cv-on-mini2440-s3c2440/attachment/1236084808755690918/' title='mini2440'><img data-attachment-id='67' data-orig-size='960,553' data-liked='0' width="150" height="86" src="http://tanushri3.files.wordpress.com/2011/02/1236084808755690918.jpg?w=150&#038;h=86" class="attachment-thumbnail" alt="mini2440" title="mini2440" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/04/open-cv-on-mini2440-s3c2440/s3c2440-arm9-board/' title='s3c2440-arm9-board'><img data-attachment-id='66' data-orig-size='700,525' data-liked='0' width="150" height="112" src="http://tanushri3.files.wordpress.com/2011/02/s3c2440-arm9-board.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="s3c2440-arm9-board" title="s3c2440-arm9-board" /></a>
</p>
<p></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tanushri3.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tanushri3.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tanushri3.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tanushri3.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tanushri3.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tanushri3.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tanushri3.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tanushri3.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=49&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tanushri3.wordpress.com/2011/02/04/open-cv-on-mini2440-s3c2440/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38205a0029fb8d59e1ce30aa12dbe418?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tanushri3</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/1236084808755690918.jpg?w=150" medium="image">
			<media:title type="html">mini2440</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/s3c2440-arm9-board.jpg?w=150" medium="image">
			<media:title type="html">s3c2440-arm9-board</media:title>
		</media:content>
	</item>
		<item>
		<title>PIC uC based multiparameter display</title>
		<link>http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/</link>
		<comments>http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 09:45:19 +0000</pubDate>
		<dc:creator>tanushri</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[PIC Microcontroller]]></category>

		<guid isPermaLink="false">http://tanushri3.wordpress.com/?p=13</guid>
		<description><![CDATA[This meter takes 4-20mA input from the current transmitter and displays the corresponding reading on the 7-segment display. The meter is based on PIC16f873 micro-controller. The selection of uC is based on the fact that it contains an On-Chip ADC. Any parameter like flow, temperature, level, PH can be displayed. A current to voltage conversion [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=13&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><a href="http://tanushri3.files.wordpress.com/2011/02/photo0249.jpg"><img class="alignleft size-medium wp-image-31" title="multiview" src="http://tanushri3.files.wordpress.com/2011/02/photo0249.jpg?w=300&#038;h=225" alt="" width="300" height="225" /></a> This meter takes 4-20mA input from the current transmitter and displays the corresponding reading on the 7-segment display. The meter is based on PIC16f873 micro-controller. The selection of uC is based on the fact that it contains an On-Chip ADC. Any parameter like flow, temperature, level, PH can be displayed.</p>
<p style="text-align:left;">A current to voltage conversion technique is used to convert 4-20mA to 1-5V range by using a 250 ohm resistor. The 1-5 V signal is given to ADC and accordingly the digital output is displayed after being scaled.</p>
<p style="text-align:left;">Also a 4&#215;1 keypad is interfaced with th uC through which the user can set which parameter to display and set the range of the parameter (lower and upper set point). Hence a two- point calibration feature is also provided.</p>
<p style="text-align:right;">&nbsp;</p>
<p style="text-align:left;">The development tools used are:-</p>
<ul>
<li style="text-align:left;"><strong>Proteus 7.4 VSM</strong> : For design and simulation</li>
<li><strong>MPLAB v8.4 IDE</strong>: Integrated Development Environment for PIC uC for coding and debugging</li>
<li><strong>OrCAD 9.1 Suite</strong> : PCB design and layout</li>
</ul>
<p>Here is the schematic of the board <a href="http://tanushri3.files.wordpress.com/2011/02/schematic1-_-page1.pdf">BOARD SCHEMATIC</a></p>
<p><span id="more-13"></span>The schematic can be divided into three parts:</p>
<ul>
<li>Power Supply</li>
<li>Signal Conditioning</li>
<li>Display Unit</li>
</ul>
<p>The power supply is composed of a center tap transformer of rating 230/12 V output @ 1.2 Amps. The output of the transformer is given to the bridge diode rectifier signal conditioning circuit. The bridge and the parallel capacitor combination filters out the ripples in the output of the transformer. The circuit uses three voltage regulators for giving regulated output to the micro-controller, 4- pin crystal and the 7-segment display respectively. The various resistor, capacitor values are specified in the schematic itself.</p>
<p>﻿Here are some schematics and images of the final product :</p>

<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/proteus/' title='proteus design file'><img data-attachment-id='22' data-orig-size='1280,768' data-liked='0' width="150" height="90" src="http://tanushri3.files.wordpress.com/2011/02/proteus.png?w=150&#038;h=90" class="attachment-thumbnail" alt="proteus design file" title="proteus design file" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/mplab1/' title='MPLAB IDE'><img data-attachment-id='23' data-orig-size='1280,768' data-liked='0' width="150" height="90" src="http://tanushri3.files.wordpress.com/2011/02/mplab1.png?w=150&#038;h=90" class="attachment-thumbnail" alt="MPLAB IDE" title="MPLAB IDE" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/mplab1-2/' title='MPLAB IDE'><img data-attachment-id='24' data-orig-size='1280,768' data-liked='0' width="150" height="90" src="http://tanushri3.files.wordpress.com/2011/02/mplab11.png?w=150&#038;h=90" class="attachment-thumbnail" alt="MPLAB IDE" title="MPLAB IDE" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/photo0248/' title='multiview '><img data-attachment-id='30' data-orig-size='2048,1536' data-liked='0' width="150" height="112" src="http://tanushri3.files.wordpress.com/2011/02/photo0248.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="multiview" title="multiview" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/photo0249/' title='multiview'><img data-attachment-id='31' data-orig-size='2048,1536' data-liked='0' width="150" height="112" src="http://tanushri3.files.wordpress.com/2011/02/photo0249.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="multiview" title="multiview" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/photo0252/' title='photo0252'><img data-attachment-id='33' data-orig-size='2048,1536' data-liked='0' width="150" height="112" src="http://tanushri3.files.wordpress.com/2011/02/photo0252.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="photo0252" title="photo0252" /></a>
<a href='http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/photo0255/' title='photo0255'><img data-attachment-id='44' data-orig-size='2048,1536' data-liked='0' width="150" height="112" src="http://tanushri3.files.wordpress.com/2011/02/photo0255.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="photo0255" title="photo0255" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tanushri3.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tanushri3.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tanushri3.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tanushri3.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tanushri3.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tanushri3.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tanushri3.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tanushri3.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tanushri3.wordpress.com&#038;blog=13167223&#038;post=13&#038;subd=tanushri3&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tanushri3.wordpress.com/2011/02/01/multiview-multiparameter-display-flowmeter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/38205a0029fb8d59e1ce30aa12dbe418?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tanushri3</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/photo0249.jpg?w=300" medium="image">
			<media:title type="html">multiview</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/proteus.png?w=150" medium="image">
			<media:title type="html">proteus design file</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/mplab1.png?w=150" medium="image">
			<media:title type="html">MPLAB IDE</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/mplab11.png?w=150" medium="image">
			<media:title type="html">MPLAB IDE</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/photo0248.jpg?w=150" medium="image">
			<media:title type="html">multiview</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/photo0249.jpg?w=150" medium="image">
			<media:title type="html">multiview</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/photo0252.jpg?w=150" medium="image">
			<media:title type="html">photo0252</media:title>
		</media:content>

		<media:content url="http://tanushri3.files.wordpress.com/2011/02/photo0255.jpg?w=150" medium="image">
			<media:title type="html">photo0255</media:title>
		</media:content>
	</item>
	</channel>
</rss>
