Difference between revisions of "Team CNT"

From CDOT Wiki
Jump to: navigation, search
Line 11: Line 11:
 
I have found a C++ code which was uploaded on [http://www.dreamincode.net/forums/topic/76816-image-processing-tutorial/ Dreamincode.net] and is open source. The application is called "Basic Image Processor". At the beginning I was stuck with trying to convert the JPG file to be able to process through application. But after some effort I figured how to compile it. The application allows the user to select what he/she wants to do with the image including rotate the image, that is what I am thinking to parallelize. But basically, there are other options which could be interesting to try to parallelize as well. I'll see how it will be going.   
 
I have found a C++ code which was uploaded on [http://www.dreamincode.net/forums/topic/76816-image-processing-tutorial/ Dreamincode.net] and is open source. The application is called "Basic Image Processor". At the beginning I was stuck with trying to convert the JPG file to be able to process through application. But after some effort I figured how to compile it. The application allows the user to select what he/she wants to do with the image including rotate the image, that is what I am thinking to parallelize. But basically, there are other options which could be interesting to try to parallelize as well. I'll see how it will be going.   
  
=====Example of options for user who runs the application=====
+
Since the application was designed to ask user for options, I had to modify the code to be able to profile the code. So I hard-coded the file name of the image, and preselected the option "rotate the image".
[[File:]]
 
  
 
=====Example of profiling with pgm image of size 35M=====
 
=====Example of profiling with pgm image of size 35M=====
 
   
 
   
[[File:]]
+
[[File:profile.png]]
  
  

Revision as of 03:04, 7 February 2013

Team Natalia and Tony

Team Members

  1. Natalia Levkevitch
  2. Tony Yu
  3. Chaobo Xie

Progress

Assignment 1

Natalia's Findings

I have found a C++ code which was uploaded on Dreamincode.net and is open source. The application is called "Basic Image Processor". At the beginning I was stuck with trying to convert the JPG file to be able to process through application. But after some effort I figured how to compile it. The application allows the user to select what he/she wants to do with the image including rotate the image, that is what I am thinking to parallelize. But basically, there are other options which could be interesting to try to parallelize as well. I'll see how it will be going.

Since the application was designed to ask user for options, I had to modify the code to be able to profile the code. So I hard-coded the file name of the image, and preselected the option "rotate the image".

Example of profiling with pgm image of size 35M

Profile.png


Assignment 2

Assignment 3