Difference between revisions of "Nameless"
Francis Chau (talk | contribs) (Created page with '= Project Name Goes here = == Team Members == # [mailto:rlanderson@myseneca.ca?subject=DPS915 Rene Anderson], researching # [mailto:ftchau1@myseneca.ca?subject=GPU610?subject=gp…') |
Francis Chau (talk | contribs) |
||
Line 2: | Line 2: | ||
== Team Members == | == Team Members == | ||
# [mailto:rlanderson@myseneca.ca?subject=DPS915 Rene Anderson], researching | # [mailto:rlanderson@myseneca.ca?subject=DPS915 Rene Anderson], researching | ||
− | # [mailto:ftchau1@myseneca.ca?subject=GPU610?subject=gpu610 Francis Chau], | + | # [mailto:ftchau1@myseneca.ca?subject=GPU610?subject=gpu610 Francis Chau], researching on Image Processing |
# [mailto:yliu332@myseneca.ca?subject=DSP915 Yiqi Liu], doing something | # [mailto:yliu332@myseneca.ca?subject=DSP915 Yiqi Liu], doing something | ||
[mailto:rlanderson@myseneca.ca,ftchau1@myseneca.ca,yliu332@myseneca.ca?subject=dps901-gpu610 Email All] | [mailto:rlanderson@myseneca.ca,ftchau1@myseneca.ca,yliu332@myseneca.ca?subject=dps901-gpu610 Email All] | ||
Line 8: | Line 8: | ||
== Progress == | == Progress == | ||
=== Assignment 1 === | === Assignment 1 === | ||
+ | <u>'''Francis' discoveries'''</u> | ||
+ | So far after doing some research through windows command I've managed to compile it. I chose one of the example projects that CImg offers "spherical_function3d" which displays an odd looking 3D rendered splash image. You can rotate the image any direction you like. | ||
+ | |||
+ | After performing some test I find this particular function to take up the majority of the execution time. Be forewarned that the function name is extremely long and it probably has links to multiple source files. The name of the function in quotation is this "''cimg_library::CImg<unsigned char>& cimg_library::CImg<unsigned char>::_draw_object3d<float, float, unsigned int, unsigned char, cimg_library::CImgList<float> >(void*, cimg_library::CImg<float>&, float, float, float, cimg_library::CImg<float> const&, cimg_library::CImgList<unsigned int> const&, cimg_library::CImgList<unsigned char> const&, cimg_library::CImgList<float> const&, unsigned int, bool, float, float, float, float, float, float, float)''" | ||
+ | |||
+ | According to the flat diagram it took 1.57 seconds. | ||
+ | |||
+ | Here is a flat diagram | ||
+ | [[File:Flat Diagram.jpg]] | ||
+ | |||
+ | As well as the Call Graph | ||
+ | [[File:Call Graph.jpg]] | ||
+ | |||
=== Assignment 2 === | === Assignment 2 === | ||
=== Assignment 3 === | === Assignment 3 === |
Revision as of 00:08, 14 October 2015
Contents
Project Name Goes here
Team Members
- Rene Anderson, researching
- Francis Chau, researching on Image Processing
- Yiqi Liu, doing something
Progress
Assignment 1
Francis' discoveries So far after doing some research through windows command I've managed to compile it. I chose one of the example projects that CImg offers "spherical_function3d" which displays an odd looking 3D rendered splash image. You can rotate the image any direction you like.
After performing some test I find this particular function to take up the majority of the execution time. Be forewarned that the function name is extremely long and it probably has links to multiple source files. The name of the function in quotation is this "cimg_library::CImg<unsigned char>& cimg_library::CImg<unsigned char>::_draw_object3d<float, float, unsigned int, unsigned char, cimg_library::CImgList<float> >(void*, cimg_library::CImg<float>&, float, float, float, cimg_library::CImg<float> const&, cimg_library::CImgList<unsigned int> const&, cimg_library::CImgList<unsigned char> const&, cimg_library::CImgList<float> const&, unsigned int, bool, float, float, float, float, float, float, float)"
According to the flat diagram it took 1.57 seconds.