Sunday, March 1, 2009

Week 19 (Final Week)

23 Feb
Today we spent the whole day testing the applications, preparing the slides for tomorrow's grand evaluation

24 Feb
Did not go to IHPC because we were having Lightdraw grand evaluation. After the evaluation, I stayed in school to prepare for my TP Interactive Campus Map grand evaluation tomorrow.

25 Feb
Ryan and I had our second grand evaluation in the morning. After the evaluation, we head back to IHPC for another presentation for the people in Advanced Computing. We presented our work for the past 4 months and they had also gave us some feedbacks on how we could make it even better. Soon after, we took the MacBook Pro, the DV camera and the new lasers, we went to the 2x3 tiled display room and try to test Lightdraw with the new lasers on it. However, as soon as we turned on the system, we were told that there will be some demo going on and we end the day without testing the lasers.

26 Feb
We went over to the tiled display in the morning and we found that the displays are slanted at a certain angle making the camera not able to detect the lasers. In conclusion, we need 4x the power of the new lasers (which may cause display to get burned).

After lunch, we had a photo-shoot with the Lightdraw team. After that, each of us were called into the meeting room by Kevin for 1 to 1 feedback and also some feedback on some advice on how we can improve ourselves.

Soon after, we asked Cheng Teng to help us in the video shoot for the 3D visualisation and LightBoard but he is busy. However, he wanted us to edit the 3D visualisation code to load 3 models instead of 2 and we also had planned the script for the videos then I went on working on the 3D visualisation. I had managed to load 3 models before I left the office for the day.

27 Feb
Cheng Teng came over to the visualisation chamber in the morning to pass me the models for the video shoot. However, due to some problem with the files, it was delayed till after lunch. I had also reformat my MacBook Pro so that it could be used for the LightBoard video shoot after lunch.

After lunch, Wilson and Leonard went video shooting for the 3D visualisation while Ryan help me with the reformatting. However, things did not went well for the video shoot for LightBoard. We had missing libraries missing to get Lightdraw running and we were told by Kevin that the stuff needs at least 2 hours to get installed. We did not manage to do the re-shoot at the end of the day. Before we left, we handed over our temp pass and time sheet. This marks the end of our internship at IHPC.

Reflections:
Time flies and it was already the last week of our internship. I had truly learnt a lot from the people in IHPC and my teammates. I believed that we had gained a lot from this internship. From knowing nothing about Linux and C/C++ to be able to develop applications such as the LightBoard and 3D Visualisation. We had also experienced the life in the working world, how we should handle things and not repeating the same mistakes. Through this internship, we had also know our strengths and weaknesses from Kevin and Ming Hong so that we can improve on it to be a better person and employee in the future. I would like to thank all the people from IHPC for the guidance given to us during our days of internship.

Friday, February 20, 2009

Week 18

16 Feb
I continued working on the multi-user function for the 3D visualisation application for the whole day. Trying to figure out what could be the problem that caused the models unable to load but still no answer to it. At around 5pm, Ming Hong came over and told me to change the patches that stores values to persistent memory as the logic patch will execute again when it receives an input.

Just I was about to leave the lab and head to school, I realised that it was using the same variable name for nested loop. However due to a meeting in school, I can only change it tomorrow.

17 Feb
I changed the variable name the moment I reached the lab but the problem still persisted. I could not find the source to the problem, so I duplicated a copy of the application for single-user and started changing it again. The 2nd time, at least the menu was working and was able to load to the "model view" screen but it there is no models shown on the screen. 

During lunch, I told Ming Hong the problems that I have encountered and he suggested that I should set all persistent variables to "false" and only set to true when needed. 

After lunch, I tried what Ming Hong had suggested but there was still no models on the screen. I realised that I broke the connection from the image path. But when I tried to load the second model, the screen seemed to be flickering and I found that the status set were not persistent.

When almost reaching to the end of the day, I could only managed to load the models supported with multi-user. The next problem was with the functions, I could not seemed to trigger the functions even though Lightdraw did detected the lasers. The passing of the values seemed to be slowed after the 2nd model was loaded. Kevin told us to redo the whole 3D application and forget about the single user version.

18 Feb
Went back to school for ITPS briefing and PSRP presentation.

19 Feb
We present what we had presented yesterday to Kevin. Soon after, we went back to our work while Kevin and Ming Hong discuss on what to do with the 3D application. After discussion, Kevin decided that I would work with Ming Hong to make the multi-user work.

After lunch, Ming Hong went over to the lab and take a look at the composition that I have edited and told me that that was too much processing, he deleted most of the patch and started to work only on the menu and soon, the functions. "Divide and conquer" is what I would use to describe the way he worked. He also told me that the reason that the functions that I have edited could not be done because I have missed out variables that were supposed to be persistent but was not and because, it was loop in the iterator, the functions basically died on me as there was too much processing power required.

Soon, the moving and scaling function worked and before we left the lab for the day, we updated Kevin on our progress.

20 Feb
Today''s task was to complete the rotation function of the 3D application. It is the most complication function as compared to the rest as we could not simply use the model patch to do rotation. The model patch had a "track mouse" into that tracks the mouse movement when rotating. However, if we are using the OSC mode, the mouse movement remains static and the model could not rotate as it only tracks the movement of the mouse.

So what we did was to code the rotation using Euler angles. It was really complicated as there were unfamiliar formulas and equation. Thanks to the help from Ming Hong, we had managed to let the models rotating using lasers.

After that, we updated Kevin about the program had also learn the differences between a 32-bit computer and 64-bit computer from Kevin which makes me think back of the drawing problems found while we were trying to get a video shoot for LightBoard. It was then, I found out that it was because of the difference in the graphics card. The graphics card that the Mac Pro was using was more precise than the MacBook Pro as the Mac Pro was able to read values that was really small.

Reflection:
This week was a really busy week as we had to prepare the presentations for the PSRP and also had to complete the 3D application. Thankfully, our hard work had paid off. We had to thank Dr. Eng and Kevin for their guidance. I had learned how differences in hardware would affect the performance of an application. We had also learn that often we are too used to having rules,  we tend to stop being wise. But that does not mean that there should not be rules, we should have rules but we should be flexible with in according to the situation.

Thursday, February 19, 2009

Week 17

09 Feb
As suggested by Kevin, I am task to add/edit some other functions to make the whiteboard application more 'complete'. I started by adding a timer to disable the drawing function after a period of time. The reason for adding the timer was because the user may forget where he had last drawn on the screen and continue to draw inside the radius which he might not intended to causing unwanted line to be drawn. I was researching on ways I could add a timer into the Javascript patch instead of using the stopwatch as I though it would look even more complicated if I continue to add patches into the composition. I continued to find ways to do it until I realised that I could actually make use of the timer inside the 'idling' function.

After some testing, I continue to work on the "Clear All" function as Kevin does not want the canvas to be cleared only when toggling off. After editing the "toggle overlay" patch with some help from Wilson, the "Clear All" function is now at the bottom right of the canvas, similar to the one embedded in Lightdraw.

10 Feb
Today's task was to enable marker creation on light detection. It was fairly simple to do as the codes are similar to the one used for creating markers while pointing at the palate. However, after some testing, we found problems with the colours of the markers.

The default colour for the markers were set to be white whenever the marker was created on detection. However, when the user changes the colour of the marker, the colour of the marker created on detection remains the colour that was last changed.

With the help from Ming Hong, we decided to edit the "moving" patch to take in the colours of the marker to solve the problem. Soon after, the problem was solved and we creating an offset in the composition to make the markers looks more accurate when drawing and dragging.

I updated Kevin after that and had also restricted markers from creating and dragging at the toggling area and "clear all" area as the user might accidentally create a marker on hold while toggling on the whiteboard.

11 Feb
Soon after I reached the lab, I started testing on the whiteboard application ensuring that there was no other problems with it. After that Kevin came over to the lab to discuss with us on the things we are going to present to Mr Yeak tomorrow. Went over to help Wilson with the rotation problem on the 3D visualisation application.

After lunch, we practice on what we are going to present for tomorrow for the rest of the day.

12 Feb
We did a dry run on our presentation today in the morning. After that, we went on working on our task. After lunch, we cleaned up the lab and went through our task for the presentation. After that, we did another dry run before Mr Yeak arrived. Kevin started introducing Lightdraw and what we had been doing for the past few months. We showed him the 4 player pong, Puzzle game, the tiled display and the whiteboard application.

After the meeting with Mr Yeak, Kevin told me to add a delay to the creation of marker on light detection as user may create a marker by accident. I change the codes before I left the lab for the day.

13 Feb
The task for today was to integrate OSC with the 3D application and  do a videoshoot for the whiteboard application. Leonard and I will be in the videoshoot while Ryan and Wilson will be working on the slides. Just before lunch, I transfer the latest Lightdraw and the whiteboard application into the MacBook Pro and Kevin went on telling us the script for the videoshoot.

After lunch, we took the DV cam, the stand, the laptop and went for the videoshoot at Boltzmann room. As soon as we started to test the setup, we found problems with the whiteboard application. Lightdraw seems to be breaking too often and we are unable to draw. We spent hours trying to find out the problem. Kevin and Ming Hong came to our rescue too. All 5 of us was trying to figure out why the whiteboard application could not draw. Initially, we thought there was some patches missing or Lightdraw is not working well. But done of them seems to be the answer. We went back to the lab and test the application on the Mac Pro and it was working and so we tried launching on the MacBook Pro again and we conclude that it was the problem with the composition. With some help from Ming Hong, we manage to solve the problem. I did not know what was the problem behind it that caused the drawing to fail but it seems that it did draw but it was not visible. 

We rushed back to the room and start on our videoshoot and left the lab for the day.

Reflection:
This week, I learned about making decisions and having a mind of our own. In life, we have to make many decisions, whether it work or school, making decisions is what we could not avoid. It all depends on the mindset of a person, whether you have a mindset of a leader,  a follower or even both. 

We often have a problem of following decisions regardless it was right or wrong. Reason being that often when we were in school, we tend to be with our friends and follow what they do and when we realised that there was a problem, it was usually too late. 

It is important to have a mind of our own and that does not mean that we should not listen to other people's advice. Being able to know what is right and what is not will help us in making our own decision and often, wanting to know what is right and what is not takes time.

Monday, February 9, 2009

Week 16

02 Feb
While Ryan and Leonard are busy doing the 3D loader application on the other side of the room, I continued working on the multi-user function together with Ming Hong and Wilson. After much testing and debugging, the whiteboard finally supports multi-users. However, we found another problem:

red circle: 1st laser on screen
blue laser: 2nd laser on screen
red square: 1st marker created
blue square: 2nd marker created

Test case 1:
The first marker was created by the 1st laser on screen and the second marker created by the 2nd laser. 

Results 1: 
All functions working well.

Reason:
1st laser created the first marker and 2nd laser, the second marker. Hence, working fine.

Test case 2:
We let 1st marker idled off and released the second laser on screen and shine it again before it idle off.

Results 2:
The laser that appear again could no longer control the marker on screen. 

Reason: 1st marker idled off, left which 2nd marker on screen. Second laser released and appear again, second laser is now first laser. Hence, could not control the marker on screen.

Test case 3:
We then switch the lasers; 1st laser controlling 2nd marker and 2nd laser controlling 1st marker.

Results 3:
The lasers could not drag or draw using the markers

Reason:
The markers can only be controlled by lasers with the same index.

The problem exist because the codes used for check the dragging and drawing are separated we have to combined all the codes into a patch in order to solve this problem. Just before we are about to leave the company for the day, we found out how to use persistent memory in Quartz Composer.

03 Feb
Wilson was asked to join Ryan and Leonard in the 3D loader application and I will continued working on the multi-user function. We started debugging on where we had stopped yesterday and we found out that the multi-user function is working when we had combined all the codes into one javascript patch. However, the markers seems to be stacking onto each other we cause the marker to break and appear to be buggy. Thanks to Ming Hong, the problem is solved in no time.

After that, we tried running the Quartz Composer file on Cocoa to fix the overlay problem. We found that the x-coordinates is abit off as compared to the orginal Quartz Composer file and we also managed to solve the problem of the overlay.

04 Feb
I did a couple of testing on the multi-user function once i reached the office to make sure that it is working well. After that, we work on the "Clear All" function when toggled on/off and we found out that the GL Quad in Quartz Composer is actually drawn using 2 triangles leaving a gap in between. Hence, whenever we toggle on/off there will be a diagonial stroke in between. 

Ming Hong then tried using 2 triangles with 1 of them overlapping but the problem still persist. Hence i suggested Ming Hong to create a triangle greater than the screen itself so the stroke could not be seen.

We then updated Kevin on the progress. Kevin found that its a little unnatural for the users to write as their have to write it in one stroke. He suggested to create a radius from the point it stop drawing so that when the laser is released and appear within the radius again, the user could still continue to draw.

05 Feb
We continued working on the function where it check the radius for drawing. We then left for NUS to attend a talk for poly students.

06 Feb
We tested the function where it check the radius for drawing. After that, we updated Kevin on the progress. Kevin find it hard to drag the marker and draw. so we increase the dragging and drawing area of the marker and then we update him again. 

Everything seems good except it is quite irritating that we might end up drawing instead of dragging because we could not accurately point to the dragging area. Hence Kevin suggested a timer that would disable drawing from a certain radius after a certain time. He also suggested a few more functions which could improve the application.
  • When laser is shined, a new marker is created
  • Changed the area of the "Clear All" function. 
Reflection:
This week, I learned that working on Lightdraw making its application multi-user is never easy as the Operating System was designed for single user. After a few month working in IHPC, I've learned what is a good application, having good functions is not the only thing, the simple user-interface, the ease of use all plays a part in it. Even though I have not got a chance to work on the 3D loader application yet, but as long as we keep each other updated, I think I could catch up with them in the shortest time.  

Saturday, January 31, 2009

Week 15

26, 27 Jan
Public Holidays!! Happy Lunar New Year!!

28 Jan
Update Kevin early in the morning as we reached the lab. The tasks were split clearly based on the 2 teams. I continued working on the multi-user function. While I was working on the multi-user function, Kevin asked me to run the whiteboard application for single user. He told us that everything is fine except for the eraser which we had to give an online of the eraser so that the user would know the size of the eraser and where they are erasing. 

We had also handed-in our individual write-up to kevin for comments. All of us sat together, including Cheng Teng and Kevin and he asked us to read our own write-up aloud. It has been ages since I last did that, upon reading I had found lots of mistakes and was not really to the topic. Others did their reading too and we all received comments from Kevin. New rules were imposed: Speak only english.

Before I left the lab for the day, I added an outline to the eraser as mentioned.

29 Jan
We updated Kevin on what we have learnt from listening to podcasts and we went on working on our tasks. Leonard and Ryan is researching on the different 3D file formats, Wilson is editing the article and for me, I continued working on the multi-user function.

30 Jan
Today had nothing much, was working on the multi-user function the whole day with the help from Ming Hong but it is more complicated than what we expected.

Reflection:
This week, we learnt about podcasts. The difference between podcasts and the other media is that podcast is total free. We could use podcasts not only for educational purposes but also entertainment. If you do not like some of the podcast that you are listening to, we can just simply unsubscribe it. 

Week 14

19 Jan
We started to discuss on how we should write our article as soon as we reached the lab. We were unsure how we should write it, whether is it better to write it in an question and answer style or as a 3rd person. After discussion, Wilson and I went for a "photoshoot" for Kevin's Lightdraw paper while the rest started on the article.




After that, I went on working on the multi-user function for the whiteboard application and Wilson went helping the rest to do the article. We also tried the Macspeech Dictate, a speech recognition tool for Mac.

20 Jan
Today was spent to work on the multi-user function.

21 Jan
Today is a short day as Wilson and I have to go back to Temasek Polytechnic for a feedback session with the director. I started working on the multi-suer function as soon as I reached the lab since today I'm leaving early. Later Wilson and Ming Hong came and Help out with the multi-user function. I tried to test whether the split()  function in Quartz Composer is working by reading it directly as a string and it was proven that it had worked. With some research done and the help of Ming Hong we found a way to convert string to integer by just adding a "+" sign before the string. 

Then Terence came in and we showed him our progress on the whitebpard application.

After lunch, we left for TP.

22 Jan
Wilson was testing the toggle on/off function in the morning but it does not seem to be working as what it should be. After that I continued to work on the multi-user function for the rest of the day. I'm not very sure what is the problem with Quartz Composer. It hung alot of times today. I'm suspecting that it was the javascript that I was writing was way too long or maybe it because Cheng Teng was encoding the video for Lightdraw in another account. While in the shuttle bus on the way to the MRT, Ming Hong said maybe adding a prev in lightdraw would make life much easier.

23 Jan
Leonard and I started to do some "spring cleaning" at the lab as lunar new year was round the corner and the lab look really messy. Ming Hong started changing the codes in lightdraw, adding a matching algorithm inside it so that doing multi-user function would be easier. 

After lunch, Kevin came it and asked us to tidying up our lab and he is "moving" into the lab. We were split into 2 teams, Ming Hong, Wison and I would be working on the whitebpard application and Leonard, Ryan and Kevin will start working on the 3D loader application. We will only join them after we are done. Our desk and seats had also changed. Wilson and I were shifted to seat beside the Mac Pro and Ryan and Leonard will be using the iMacs.

Ryan had also got himself an iPhone 3G. Kevin started talking about podcasts and told us to look for some interesting one that we had listen and learn from it. We also commented on the article we wrote for the newsletter and shows us some examples of how other had wrote it and wanted us to write our own individual experiences in IHPC which will be due after CNY.

Reflection:
This week, I have learnt that it is not easy to write a good article. This reminds me of what a lecturer had said: "Everybody can read a book, but not everyone can write a book. Even if you can, it may not be a good one". It is unlike the reports we have wrote in schools. We were given a template and we just have to follow it. It definitely not as simple as it seems. 

Friday, January 30, 2009

Week 13

12 Jan
Leonard showed us how we could invert the colours to negative on Mac as should as we reached the office in the morning. When we were just about to go out for breakfast, we were approached by Daryl from Corporate Comms to write an article about our experiences in IHPC for the IHPC newsletter.

We aimed to complete the whiteboard application for single-user this week. 

13 Jan
We went on to test the whiteboard application when we reached the lab and we found problems with the create new pen, drag and draw. 



As shown above, the laser and the image of the marker seems to accurate when its in the middle however as the laser moves up or down, the position of marker went off. Luckily, with the help of Ming Hong, we managed to solve the problem before updating Kevin.

Kevin gave some comments after that, he suggested to change the UI of the whiteboard as it seems to take up too much space. We also discussed on how we should do the multi-user function. After that, I went for the video-shoot for Cooliris and then went on touching up the application with Ryan as Leonard and Wilson went on designing the new UI.

14 Jan


These are the new markers that were designed by Leonard and Wilson. It looks simple and cool. While they were busy working on the images, I started working on the multi-user function for the whiteboard application. As soon as they have finished the images, they showed the images to Kevin and Ming Hong. Ming Hong suggested that they should smoothen the edges of the images and I suggested that we should just use a large-size image for each brush instead of different images of the sizes as it would make the application even more complicated.

15 Jan
As usual, I continued working on the multi-user function with Leonard while Wilson and Ryan worked on the sliding in of palate when toggle on. Then they started changing the images for the palate and brushes and started testing on the sliding palate and they seems to have problems with it. Luckily, they were able to solve it with the help from Kevin and Ming Hong.

Once they are done with it, Wilson and I took note of the new coordinates of the palate and did some testing for the rest of the day.

16 Jan
Ryan went for his NS Medical Checkup today so he was not around. I went on working on the multi-user function which is really complicated whereas Leonard and Wilson went on writing the article for the IHPC newsletter. Wilson and I went on adding some new logic to the whiteboard application such as disabling toggling when dragging or drawing, disable changing of colors and sizes when drawing.

Initially, we wanted to change the "dragging and draw" function but Ryan isn't here so we gave up, afraid that we might mess up the codings. Luckily he was back in the afternoon to help out.

Reflection:
This week, the main focus was to get multi-user function to work and also to complete the whiteboard for single user. Other than that, we have to write an article for IHPC's newsletter which I would consider this week as a hectic one. Luckily, we were able to split the task well making all the tasks given to be completed. However, multi-user still does not seem to be working well. I have also learnt that the design of the UI is also important as it would make the user want to try playing the application one have done.