<?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/"
	>

<channel>
	<title>OFFICIALLY Shahab ... &#187; image processing</title>
	<atom:link href="http://www.shahabfm.com/archives/tag/image-processing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shahabfm.com</link>
	<description>Somewhere for me to express myself &#38; my works ...</description>
	<lastBuildDate>Wed, 31 Aug 2011 07:58:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>OpenCV installation Tutorial, MS Visual C++ 2008</title>
		<link>http://www.shahabfm.com/archives/2011/05/opencv-installation-tutorial-ms-visual-c-2008/</link>
		<comments>http://www.shahabfm.com/archives/2011/05/opencv-installation-tutorial-ms-visual-c-2008/#comments</comments>
		<pubDate>Tue, 31 May 2011 12:27:05 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Image Processing]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[VC++]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[OpenCV]]></category>
		<category><![CDATA[Programming Tricks]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=949</guid>
		<description><![CDATA[Installing OpenCV might sound very easy when you read it on some forums/websites, but there are some small changes in most of these tutorials that prevent the connection between OpenCV and MS Visual C++. In this tutorial we(my dear friend Puya Afsharian and I) try to guide you through the installation of these two products &#8230; <a href="http://www.shahabfm.com/archives/2011/05/opencv-installation-tutorial-ms-visual-c-2008/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Installing OpenCV might sound very easy when you read it on some forums/websites, but there are some small changes in most of these tutorials that prevent the connection between OpenCV and MS Visual C++. In this tutorial we(my dear friend Puya Afsharian and I) try to guide you through the installation of these two products and the right way to make them talk with each other.</p>
<p>Although people say it is easy to make OpenCV 2.2 to work with MS Visual C++ 2010, but we did not get it to work properly while it seems that MS visual c++ 2008 works perfect with OpenCV 2.1. Here are the download links for both products :</p>
<p>OpenCV 2.1 : <a href="http://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.1/">http://sourceforge.net/projects/opencvlibrary/files/opencv-win/2.1/</a><br />
This file is modified to work with MS Visual C++ 2008 and therefore there is no need to install <a href="http://www.cmake.org/cmake/resources/software.html">CMake </a>again.</p>
<p>MS Visual C++ 2008(Free of charge) : <a href="http://www.microsoft.com/downloads/en/details.aspx?familyid=a5c84275-3b97-4ab7-a40d-3802b2af5fc2&amp;displaylang=en">http://www.microsoft.com/downloads/en/details.aspx?familyid=a5c84275-3b97-4ab7-a40d-3802b2af5fc2&amp;displaylang=en</a></p>
<p>Click More down here to read the rest of the tutorial &#8230;</p>
<p><span id="more-949"></span></p>
<h2>1 &#8211; Installing OpenCV</h2>
<p>After downloading OpenCV 2.1, you need to install the program. This is done by just running the EXE file which pops up the installation wizard. There you need to choose an installation path. I usually let it install to C:\OpenCV2.1. We refer to this path as ~ after this. DON’T FORGET to add the path for all users.</p>
<h2><a href="http://www.shahabfm.com/wp-content/uploads/2011/05/opencv_install.png"><img class="aligncenter size-medium wp-image-950" title="opencv_install" src="http://www.shahabfm.com/wp-content/uploads/2011/05/opencv_install-300x234.png" alt="" width="300" height="234" /></a>2- Installing MS Visual C++ 2008</h2>
<p>After downloading MS VC++ 2008, you need to install the program. This is done by just running the installation wizard which downloads the necessary files.</p>
<p><a href="http://www.shahabfm.com/wp-content/uploads/2011/05/vc++.png"><img class="aligncenter size-medium wp-image-952" title="vc++" src="http://www.shahabfm.com/wp-content/uploads/2011/05/vc++-300x177.png" alt="" width="300" height="177" /></a></p>
<h2><strong>3- Link OpenCV and VC++ together</strong></h2>
<p><strong> </strong>Open VC++. Then navigate to <strong>Tools &gt; Options &gt; Projects and Solutions &gt; VC++ Directories</strong>.</p>
<p>On &#8220;Show directories for, choose :<strong> Include Files</strong></p>
<p>Add the following : <strong>&#8220;~\include\opencv&#8221;</strong></p>
<p>On &#8220;Show directories for, choose : <span style="text-decoration: underline;"><strong>Library Files</strong></span></p>
<p>Add the following : <strong>&#8220;~\lib&#8221;</strong></p>
<p>Choose &#8220;Show directories for: <span style="text-decoration: underline;"><strong>Source Files</strong></span></p>
<p>Add the following :</p>
<p><em><strong>&#8220;~\src\cv&#8221;</strong></em><br />
<em><strong>&#8220;~\src\cvaux&#8221;</strong></em><br />
<em><strong>&#8220;~\src\cxcore&#8221;</strong></em><br />
<em><strong>&#8220;~\src\highgui”</strong></em></p>
<p>Now we are done configuring VC++, but still we need some small changes in our project to be able to use OpenCV libraries</p>
<p><a href="http://www.shahabfm.com/wp-content/uploads/2011/05/vc++directiories.png"><img class="aligncenter size-medium wp-image-953" title="vc++directiories" src="http://www.shahabfm.com/wp-content/uploads/2011/05/vc++directiories-300x192.png" alt="" width="300" height="192" /></a></p>
<h2>4- Project Configuration :</h2>
<p>After creating the project, the OpenCV dependencies should be added.<br />
Navigate to Open Project Properties: Project &#8211; %projectName% Properties<br />
Open Linker Input properties: Configuration Properties &gt; Linker &gt; Input<br />
Open the &#8220;&#8230;&#8221; window to edit &#8220;Additional Dependencies&#8221; and on each line put:</p>
<p><em><strong>&#8220;cv210.lib&#8221;</strong></em><br />
<em><strong>&#8220;cxcore210.lib&#8221;</strong></em><br />
<em><strong>&#8220;highgui210.lib&#8221;</strong></em></p>
<p>And any other lib file necessary for your project<br />
Your project should now build. If you get any errors try restarting Visual Studio and then doing a clean Rebuild.</p>
<p><a href="http://www.shahabfm.com/wp-content/uploads/2011/05/properties_project_config.png"><img class="aligncenter size-medium wp-image-951" title="properties_project_config" src="http://www.shahabfm.com/wp-content/uploads/2011/05/properties_project_config-300x164.png" alt="" width="300" height="164" /></a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2011/05/opencv-installation-tutorial-ms-visual-c-2008/&via=shahabfm&text=OpenCV installation Tutorial, MS Visual C++ 2008&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2011/05/opencv-installation-tutorial-ms-visual-c-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenCV, Tutorials based on my experience coming soon</title>
		<link>http://www.shahabfm.com/archives/2011/05/opencv-tutorials-based-on-my-experience-coming-soon/</link>
		<comments>http://www.shahabfm.com/archives/2011/05/opencv-tutorials-based-on-my-experience-coming-soon/#comments</comments>
		<pubDate>Tue, 10 May 2011 02:08:34 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[VC++]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[OpenCV]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=878</guid>
		<description><![CDATA[OpenCV is a rich computer vision library compatible with many programming languages opening doors for lots of opportunities &#8230; Soon I will write a tutorial here about it &#8230;

update : 
Here is my tutorial on how to install OpenCV and make it work with VC++ 2008
Tweet]]></description>
			<content:encoded><![CDATA[<p>OpenCV is a rich computer vision library compatible with many programming languages opening doors for lots of opportunities &#8230; Soon I will write a tutorial here about it &#8230;<br />
<a href="http://www.shahabfm.com/wp-content/uploads/2011/05/opencv.png"><img src="http://www.shahabfm.com/wp-content/uploads/2011/05/opencv-300x241.png" alt="" title="opencv" width="300" height="241" class="aligncenter size-medium wp-image-880" /></a></p>
<p><em><strong>update : </strong></em><br />
Here is my <a href="http://www.shahabfm.com/archives/2011/05/opencv-installation-tutorial-ms-visual-c-2008/">tutorial on how to install OpenCV and make it work with VC++ 2008</a></p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2011/05/opencv-tutorials-based-on-my-experience-coming-soon/&via=shahabfm&text=OpenCV, Tutorials based on my experience coming soon&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2011/05/opencv-tutorials-based-on-my-experience-coming-soon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenCV, new image processing possibilities for Walloid</title>
		<link>http://www.shahabfm.com/archives/2011/03/opencv-new-image-processing-possibilities-for-walloid/</link>
		<comments>http://www.shahabfm.com/archives/2011/03/opencv-new-image-processing-possibilities-for-walloid/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 00:27:44 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[Master Project]]></category>
		<category><![CDATA[OpenCV]]></category>
		<category><![CDATA[Walloid]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=771</guid>
		<description><![CDATA[I am currently working on OpenCV image processing library beside my work on my master thesis. OpenCV and its image processing capabilities can give Walloid a powerful tool for decision making.
Tweet]]></description>
			<content:encoded><![CDATA[<p>I am currently working on OpenCV image processing library beside my work on my master thesis. OpenCV and its image processing capabilities can give Walloid a powerful tool for decision making.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2011/03/opencv-new-image-processing-possibilities-for-walloid/&via=shahabfm&text=OpenCV, new image processing possibilities for Walloid&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2011/03/opencv-new-image-processing-possibilities-for-walloid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Live broadcast of Robot&#8217;s environment</title>
		<link>http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/</link>
		<comments>http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 22:14:49 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[University of Oslo]]></category>
		<category><![CDATA[video streaming]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=325</guid>
		<description><![CDATA[The Image processing part of the Robotic project, in hardware point of view contains a camera and laptop. The laptop is placed inside the robot chassis for Image Processing applications to run on it. The camera is going to be place on an arm which is not exactly decided how it is going to be &#8230; <a href="http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The Image processing part of the Robotic project, in hardware point of view contains a camera and laptop. The laptop is placed inside the robot chassis for Image Processing applications to run on it. The camera is going to be place on an arm which is not exactly decided how it is going to be and how much would we reach to make. But for sure there is going to be an arm, probably with one prismatic and two revolute joint(we are probably going to remove one revolute joint as the robot is able to turn around itself 360 degrees). This will give the camera a very good workspace which would be alittle less than a sphere on bottom and top.</p>
<p>As this project is a summer project and we do not have much time left, we have decided to go for easiest solutions for time being. Everything that makes the project to take one more step toward the goal is acceptable. Now I am trying to find ways how we can broadcast the stream of video we get from Robot&#8217;s cameras online. Our choices up to now are as followed :</p>
<ol>
<li>USTREAM.COM website which let you to stream live videos and people are able to watch it online in flash format. It&#8217;s not the best choice to make, but it is a possible choice.</li>
<li>RealPlayer</li>
</ol>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/&via=shahabfm&text=Live broadcast of Robot's environment&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/07/live-broadcast-of-robots-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Processing Final Exam</title>
		<link>http://www.shahabfm.com/archives/2009/06/292/</link>
		<comments>http://www.shahabfm.com/archives/2009/06/292/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 15:27:21 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[exam paper]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[INF2310]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=292</guid>
		<description><![CDATA[This is the Image Processing final Exam that I took today. You can download the exam paper by clicking here. This course is called INF2310, Digital Image Processing and is actually introduction to deep Image Processing at university of Oslo as can be continued by INF4300(bachelor course) and INF5300(master course) later.
Tweet]]></description>
			<content:encoded><![CDATA[<p>This is the Image Processing final Exam that I took today. You can download the exam paper by <a title="INF2310 Oblig1 Spring 2009 Exam" href="http://shahabfm.com/_assignments/uio/INF2310/Image Processing_INF2310_Exam_Final.pdf" target="_blank"><strong>clicking here</strong></a>. This course is called <a href="http://www.uio.no/studier/emner/matnat/ifi/INF2310/" target="_blank">INF2310, Digital Image Processing</a> and is actually introduction to deep Image Processing at university of Oslo as can be continued by INF4300(bachelor course) and INF5300(master course) later.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/06/292/&via=shahabfm&text=Image Processing Final Exam&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/06/292/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Robotic+Image Processing summer project</title>
		<link>http://www.shahabfm.com/archives/2009/05/roboticimage-processing-summer-project/</link>
		<comments>http://www.shahabfm.com/archives/2009/05/roboticimage-processing-summer-project/#comments</comments>
		<pubDate>Fri, 15 May 2009 17:06:05 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[Robotics]]></category>
		<category><![CDATA[Super Crawler]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=283</guid>
		<description><![CDATA[I am planning for a summer project these days. This semester, I have taken two difficult, but very interesting courses. These two courses are Robotics(INF3480) and Image Processing(INF2310). Although I&#8217;ve had big challenges with the good mathematical understanding of these two courses, but I am deeply interested in both and would like to combine what &#8230; <a href="http://www.shahabfm.com/archives/2009/05/roboticimage-processing-summer-project/">Read more <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am planning for a summer project these days. This semester, I have taken two difficult, but very interesting courses. These two courses are Robotics(INF3480) and Image Processing(INF2310). Although I&#8217;ve had big challenges with the good mathematical understanding of these two courses, but I am deeply interested in both and would like to combine what I&#8217;ve learnt in theory, in a practical project. The plan is to combine Robotics and Image Processing to make a portable robot with more than basic Image Processing abilities. The following drawing is just an imaginary plan of the final robot. Of course I would be happy to be able to finish half of this and I believe I would come to changes many of these fantacies with realities and there might be fundemental changes in the plan on the way. I am sure I am going to learn alot soon :-)</p>
<p style="text-align: center;">
<div id="attachment_286" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.shahabfm.com/wp-content/uploads/2009/05/imagin_robot.jpg"><img class="size-medium wp-image-286" title="Imaginary Robot" src="http://www.shahabfm.com/wp-content/uploads/2009/05/imagin_robot-300x192.jpg" alt="Imaginary Robot" width="300" height="192" /></a><p class="wp-caption-text">Imaginary Robot</p></div>
<p>The imaginary robot is supplied by a wireless transmitter and GPS adapter(The anthenas are just symbols and are not going to be there). The robot is supposed to be portable and move around to a desired location by the help of GPS adapter. She would also be able to send the information(a film stream or even sounds) about her environment back to the lab by the help of the wireless LAN(Wireless Internet or a dedicated wireless LAN). The cameras are supposed to capture the film stream and send the perspective(Not Flat) pictures to the screen at the lab. Also same cameras will be used for Image Processing operations(locally at the robot by laptop or at the lab). The plan up here is showing that the robot actually is carrying a light <strong>Eee laptop</strong> to implement image processing at place right after they are captured by the cameras. There is also another scenario that the robot can carry just a combination of Micro Processors that sends all the information to the lab and the information would be processed in the lab and would be sent back to the robot. There would be proabably some delays and I am not sure if this system is actually practical.</p>
<p>I am not going to be alone at this project and I am going to have some friends with me. The plan is to do this project step by step and keep it simple at first and at every step we would try to expand our previous simple model to a more advanced one. The duration of this project would be up to the end of next semester(December 2009) and would probably will be my(an others if they are intrested to continue) bachelor project.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/05/roboticimage-processing-summer-project/&via=shahabfm&text=Robotic+Image Processing summer project&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/05/roboticimage-processing-summer-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Basic Image Processing App., Easter Project</title>
		<link>http://www.shahabfm.com/archives/2009/04/basic-image-processing-app-easter-project/</link>
		<comments>http://www.shahabfm.com/archives/2009/04/basic-image-processing-app-easter-project/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 17:03:01 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Projects]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[hobby]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[INF2310]]></category>
		<category><![CDATA[My Studies]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=248</guid>
		<description><![CDATA[I have decided to develop one basic Image processing apllication during easter holidasy. After easter I will post the application(open source).
Tweet]]></description>
			<content:encoded><![CDATA[<p>I have decided to develop one basic Image processing apllication during easter holidasy. After easter I will post the application(open source).</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/04/basic-image-processing-app-easter-project/&via=shahabfm&text=Basic Image Processing App., Easter Project&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/04/basic-image-processing-app-easter-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Image Processing exam</title>
		<link>http://www.shahabfm.com/archives/2009/04/digital-image-processing-exam/</link>
		<comments>http://www.shahabfm.com/archives/2009/04/digital-image-processing-exam/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 21:16:18 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[exam paper]]></category>
		<category><![CDATA[IFI]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=200</guid>
		<description><![CDATA[This is the Image Processing Exam that I took today. You can download the exam paper by clicking here. This exams contained 75% of the course called INF2310, Digital Image Processing.
Tweet]]></description>
			<content:encoded><![CDATA[<p>This is the Image Processing Exam that I took today. You can download the exam paper by <a title="INF2310 Oblig1 Spring 2009 Exam" href="http://shahabfm.com/_assignments/uio/INF2310/UiO_Exam_midtterm_Spring_2009.pdf" target="_blank"><strong>clicking here</strong></a>. This exams contained 75% of the course called <a href="http://www.uio.no/studier/emner/matnat/ifi/INF2310/" target="_blank">INF2310, Digital Image Processing</a>.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/04/digital-image-processing-exam/&via=shahabfm&text=Digital Image Processing exam&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/04/digital-image-processing-exam/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Image processing assignment-1</title>
		<link>http://www.shahabfm.com/archives/2009/03/image-processing-assignment-1/</link>
		<comments>http://www.shahabfm.com/archives/2009/03/image-processing-assignment-1/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 16:10:22 +0000</pubDate>
		<dc:creator>Shahab</dc:creator>
				<category><![CDATA[My Studies]]></category>
		<category><![CDATA[Shahab]]></category>
		<category><![CDATA[UiO]]></category>
		<category><![CDATA[assignments]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[University of Oslo]]></category>

		<guid isPermaLink="false">http://www.shahabfm.com/?p=178</guid>
		<description><![CDATA[Here comes the source code of my image processing assignment for the course called INF2310 at informatics institute @ UiO. You can download source code(Matlab files and the PDF file with result pictures) by clicking here.
Tweet]]></description>
			<content:encoded><![CDATA[<p>Here comes the source code of my image processing assignment for the course called<a href="http://www.uio.no/studier/emner/matnat/ifi/INF2310/" target="_blank"> INF2310</a> at informatics institute @ UiO. You can download source code(Matlab files and the PDF file with result pictures) by<a title="INF2310 Oblig1 Spring 2009" href="http://www.shahabfm.com/projects/imageprocessing/INF2310_oblig1V09_komentar.zip"> clicking here</a>.</p>
<div style="float: right; margin-left: 10px;"><a href="http://twitter.com/share?url=http://www.shahabfm.com/archives/2009/03/image-processing-assignment-1/&via=shahabfm&text=Image processing assignment-1&related=:&lang=en&count=horizontal" class="twitter-share-button">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>]]></content:encoded>
			<wfw:commentRss>http://www.shahabfm.com/archives/2009/03/image-processing-assignment-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

