Showing posts with label FYP 2: Development. Show all posts
Showing posts with label FYP 2: Development. Show all posts

Wednesday, January 30, 2013

Fyp 2:Installation

Overview of installation in E-gallery:








Thanks to my friends for capturing the pictures of my project.:)



Wednesday, January 16, 2013

FYP2: Content Development 3


Here goes my handmade signboard to show the streets of Bukit Bintang:


Drying Process


Spraying Process


Arranging Process


Pasting Process

FYP2: Content Development 2


Finally uses the Java to execute my audiovisual that I did in Processing..

The outcome:

This the important code that i had used to execute my audiovisual and also it will help me to trigger the motion in Zone Trigger.


public void keyPressed(KeyEvent arg0) {
if (arg0.getKeyCode() != i)
{
try
{
f.dispose();
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_ESCAPE);
    robot.keyRelease(KeyEvent.VK_ESCAPE);
Runtime rt = Runtime.getRuntime();
if (arg0.getKeyCode() == 65)

{
i = arg0.getKeyCode();
if (p != null)
p.destroy();
 
rt.exec("taskkill /FI \"WINDOWTITLE eq Changk\"");
rt.exec("taskkill /FI \"WINDOWTITLE eq Construction\"");
p = rt.exec("First/imbi6.exe");


//window.close();
}
else if (arg0.getKeyCode() == 66)
{
i = arg0.getKeyCode();
if (p != null)
p.destroy();

rt.exec("taskkill /FI \"WINDOWTITLE eq imbi6\"");
rt.exec("taskkill /FI \"WINDOWTITLE eq Construction\"");
p = rt.exec("Second/Changk.exe");

}
else if(arg0.getKeyCode() == 67)
{
i = arg0.getKeyCode();

if (p != null)
p.destroy();

rt.exec("taskkill /FI \"WINDOWTITLE eq imbi6\"");
rt.exec("taskkill /FI \"WINDOWTITLE eq Changk\"");
p = rt.exec("Third/Construction.exe");


}


The screenshot:







Monday, January 14, 2013

FYP2: Content Development 1


After few revision on Processing...I had come up with some of the visual and the audio of the street.

Tried for Jalan Changkat



The size become bigger and the visual does not really suit
 for the noise and tried again the new one




Finally after few adjustment I had come up with this
 visual that are much related to the noise

Tried for Jalan Imbi




This my First trial for my Jalan Imbi noise but unfortunately it does not suit at all 
and Dr Wong ask me to improve on this noise visual.



Finally I had come up with this visual that are much more better then the previous one.


Tried for Jalan Bukit Bintang


This audiovisual suit for my noise of Jalan Bukit Bintang and even
 Dr.Wong said this one is better and the visual suit the noise

Processing Scripting

The openprocessing.org had helped me a lot on my coding part and the website is useful  for me as i don't have much knowledge in processing programming.This the output of my three noise of the street.

Problems

I had encounter problem as my Processing file was in different folder and I was not sure on how to 
combine the three audiovisual object to classes.

Solution

With the help of my cousin,I had come up with solution where i had used Java to execute the three audiovisual.