Manipulating Pictures, Arrays, and Loops part 3

Slides:



Advertisements
Similar presentations
ManipulatingPictures-Mod6-part21 Manipulating Pictures, Arrays, and Loops part 2 Barb Ericson Georgia Institute of Technology.
Advertisements

Georgia Institute of Technology Manipulating Pictures, Arrays, and Loops part 1.
Conditionals-part11 Barb Ericson Georgia Institute of Technology Nov 2009.
Intro-Sound-part21 Introduction to Processing Digital Sounds part 2 Barb Ericson Georgia Institute of Technology Oct 2009.
01- Intro-Java-part1 1 Introduction to Java, and DrJava Barb Ericson Georgia Institute of Technology June 2008.
Georgia Institute of Technology Introduction to Java, and DrJava Barb Ericson Georgia Institute of Technology Aug 2005.
ManipulatingPictures-part11 Manipulating Pictures, Arrays, and Loops part 1 Barb Ericson Georgia Institute of Technology Nov 2009.
Georgia Institute of Technology Manipulating Pictures, Arrays, and Loops Barb Ericson Georgia Institute of Technology August 2005.
TOPIC 6 MODIFYING PICTURES USING LOOPS 1 Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and.
ManipulatingPictures-Mod6-part61 Manipulating Pictures, Arrays, and Loops: Eliminating color, Inversion, grey scale and adjusting for luminance Barb Ericson.
CPSC1301 Computer Science 1 Chapter 4 Manipulating Pictures, Arrays, and Loops part 5.
Georgia Institute of Technology Creating Classes part 4 Barb Ericson Georgia Institute of Technology May 2006.
CreatingClasses-SlideShow-part41 Creating Classes part 4 Barb Ericson Georgia Institute of Technology Dec 2009.
CreatingClasses-SlideShow-part31 Creating Classes part 3 Barb Ericson Georgia Institute of Technology Dec 2009.
Georgia Institute of Technology Creating Classes part 2 Barb Ericson Georgia Institute of Technology June 2006.
Georgia Institute of Technology Speed part 4 Barb Ericson Georgia Institute of Technology May 2006.
Georgia Institute of Technology Manipulating Pictures, Arrays, and Loops Barb Ericson Georgia Institute of Technology August 2005.
SourceAnatomy1 Java Source Anatomy Barb Ericson Georgia Institute of Technology July 2008.
Intro-Sound-Mod10-part31 Introduction to Processing Digital Sounds part 3 while loop, tracing, for loop, parameters Barb Ericson Georgia Institute of Technology.
ManipulatingPictures-part31 Manipulating Pictures, Arrays, and Loops part 3 Barb Ericson Georgia Institute of Technology Nov 2009.
04-ManipulatingPictures-part21 Manipulating Pictures, Arrays, and Loops part 2 Barb Ericson Georgia Institute of Technology June 2008.
Georgia Institute of Technology Introduction to Java, and DrJava part 1 Dr Usman Saeed Assistant Professor Faculty of Computing and Information Technology.
Georgia Institute of Technology Dr Usman Saeed Assistant Professor Faculty of Computing and Information Technology North Jeddah Branch King Abdulaziz University.
Barbara Ericson Georgia Tech Sept 2005
Appendix A Barb Ericson Georgia Institute of Technology May 2006
Manipulating Pictures, Arrays, and Loops part 1
Manipulating Pictures, Arrays, and Loops part 2
Manipulating Pictures, Arrays, and Loops part 2
Topic 6 Modifying Pictures Using Loops
Introduction to Java part 2
Appendix A Barb Ericson Georgia Institute of Technology May 2006
Georgia Institute of Technology
Creating and Modifying Text part 2
Barb Ericson Georgia Institute of Technology Dec 2009
Manipulating Pictures, Arrays, and Loops part 2
Manipulating Pictures, Arrays, and Loops part 2
Georgia Institute of Technology
Manipulating Pictures, Arrays, and Loops
Barb Ericson Georgia Institute of Technology August 2005
Two-Dimensional Arrays and Nested Loops – part 1
Barb Ericson Georgia Institute of Technology August 2005
Workshop for Programming And Systems Management Teachers
Introduction to Processing Digital Sounds part 2
Manipulating Pictures, Arrays, and Loops part 5
Introduction to Java part 2
Two-Dimensional Arrays and Nested Loops – part 1
Introduction to Java, and DrJava part 1
Manipulating Pictures, Arrays, and Loops part 4
Manipulating Pictures, Arrays, and Loops
Manipulating Pictures, Arrays, and Loops part 3
Introduction to Processing Digital Sounds part 3
Barb Ericson Georgia Institute of Technology Oct 2005
Two-Dimensional Arrays and Nested Loops – part 2
Workshop for Programming And Systems Management Teachers
Manipulating Pictures, Arrays, and Loops
Manipulating Pictures, Arrays, and Loops
Introduction to Java, and DrJava
Georgia Institute of Technology
Manipulating Pictures, Arrays, and Loops
Manipulating Pictures, Arrays, and Loops part 6
Barb Ericson Georgia Institute of Technology May 2006
Introduction to Java part 2
Manipulating Pictures, Arrays, and Loops
Introduction to Java, and DrJava
Introduction to Java, and DrJava part 1
Barb Ericson Georgia Institute of Technology Oct 2005
CSC1401 Manipulating Pictures 2
Manipulating Pictures, Arrays, and Loops part 6
Workshop for Programming And Systems Management Teachers
Presentation transcript:

Manipulating Pictures, Arrays, and Loops part 3 Dr Usman Saeed Assistant Professor Faculty of Computing and Information Technology  North Jeddah Branch King Abdulaziz University Georgia Institute of Technology

Georgia Institute of Technology Learning Goals Understand at a conceptual and practical level What is an algorithm? What is a program? How to translate an algorithm to code What is a comment? What happens if you multiply by 0.5 instead of divide by 2? How to improve a method Georgia Institute of Technology

Changing from For-each to While We can loop through all elements in an array by starting with index 0, then index 1, and so on till index (length – 1) And get the pixel at the current index value Georgia Institute of Technology

Georgia Institute of Technology Reduce Red Algorithm Get the array of Pixel objects from the current picture Declare a variable to hold the red value Declare the index variable and set it to 0 Declare a variable to refer to the current pixel Loop while index is less than the length of the array Get the pixel at the index value Get the current red value from the pixel Divide the current red value by 2 Set the red for the current pixel to the changed value Increment the index The items in blue are what is different from the for-each loop version. Georgia Institute of Technology

Georgia Institute of Technology Loop Algorithm to Code How to write (code) the loop? Use a while loop with a counter for the index starting at 0 int index = 0; Add a variable to refer to the current pixel Pixel pixelObj = null; Loop while the index is less than the length of the array while (index < pixelArray.length) Get the current pixel from the array of pixels for the current index pixelObj = pixelArray[index]; Georgia Institute of Technology

Loop Algorithm to Code - Continued Get the red value at the pixel value = pixelObj.getRed(); Divide the red value by 2 value = value / 2; Set the pixel red value pixel.setRed(value); Add one to (increment) the index index = index + 1; Georgia Institute of Technology

Georgia Institute of Technology Decrease Red Method public void decreaseRed() { Pixel[] pixelArray = this.getPixels(); int value = 0; Pixel pixelObj = null; int index = 0; // loop through all the pixels while(index < pixelArray.length) // get the current pixel pixelObj = pixelArray[index]; // get the red value value = pixelObj.getRed(); // decrease the red value value = value / 2; // set the pixel red pixelObj.setRed(value); // increment the index index = index + 1; } We declare items that we will need in the loop before the loop so that new ones don't get created each time through the loop. Georgia Institute of Technology

Georgia Institute of Technology Method Names If we add this new method to Picture.java and compile will we get an error? We will have two methods with the same name and both take no parameters We can have two methods with the same name As long as the parameter list is different We need to name one of them differently Rename the first one to decreaseRedForEach Georgia Institute of Technology

Georgia Institute of Technology Comments Comments are explanations of your code to help people understand your code They are ignored by the compiler There are several kinds in Java // a comment that lasts to the end of the line /* a comment that can take up several lines until a */ /** a Javadoc comment that is used to create html documentation of your code */ Javadoc is a utility that comes with the JDK for creating html documentation from your source code (*.java files). Georgia Institute of Technology

Georgia Institute of Technology Decrease Red Exercise In DrJava Add the method decreaseRed() to Picture.java Before the last } which ends the class definition Compile the method Click the Compile All button Test it by doing the following in the interactions pane > String fileName = "C:/intro-prog-java/mediasources/caterpillar.jpg"; > Picture picture1 = new Picture(fileName); > picture1.explore(); > picture1.decreaseRed(); Use the picture explorer to check that the red values where reduced by 50%. Georgia Institute of Technology

decreaseRed Method Result Before method After method Georgia Institute of Technology

Using Multiplication by 0.5 You could have also multiplied the red value by 0.5 and then cast back to integer value = value * 0.5; Change the line that divided by 2 and try to compile this In the decreaseRed method Georgia Institute of Technology

Georgia Institute of Technology Loss of Precision If you try the code on the previous slide you will get a compiler error Possible loss of precision It is complaining about putting a double value into a int variable Loss of fractional part Double clicking on an error in the Compiler Output pane will highlight the statement that caused the error and change the definitions pane to show you the problem. Georgia Institute of Technology

Casting to Solve Loss of Precision Error It will compile if we tell the compiler we know about the possible loss of precision And that it is intended By using a cast to int value = (int) (value * 0.5); Notice that we cast the result of the multiplication back to an integer Casting is forcing a value into a type (type) expression Georgia Institute of Technology

Put Declarations Outside Loops When you need a variable in a loop it is best to declare it before the loop Otherwise you are declaring a new variable each time through the loop Which is slower than just changing the value associated with the variable In some languages you must declare all variables at the beginning of a method (function) In Java you can declare variables anywhere in a method As long as you declare them before you use them They are known in the block they are declared in Georgia Institute of Technology

Shortcuts for Common Operations In programming you often need to add one to a value index = index + 1; You may use the shortcut index++; or ++index; If you wanted to subtract 1 instead index = index – 1; index--; or -- index; You can also use x += y as a shortcut for x = x + y, x-=y for x = x – y, x*=y for x=x*y, and x/=y for x = x / y. Georgia Institute of Technology

Georgia Institute of Technology Summary An algorithm is a description of how to solve a problem A program implements an algorithm in a programming language A comment is an explanation of your code to help people understand it Comments are ignored by the computer If you multiply by a floating point number you can’t put this in an integer variable Unless you cast to integer You should declare variables before the body of the loop That you will need in the loop Georgia Institute of Technology