<< Chapter < Page Chapter >> Page >

Very similar to an earlier method

This method is very similar to the method named mirrorUpperQuads that I explained in Listing 4 and Listing 5 . If you understood that explanation, you should have no difficulty understanding the code in Listing 7 without further explanation.

End of Prob01Runner class

Listing 7 also signals the end of the class named Prob01Runner .

Run the program

I encourage you to copy the code from Listing 8 . Compile the code and execute it. Experiment with the code, making changes, andobserving the results of your changes. Make certain that you can explain why your changes behave as they do.

Click here to download the required input image file.

Summary

In this module, you learned how to use nested for loops to process pixels on a row and column basis.

What's next?

You will learn to crop, flip, and combine pictures in the next module.

While not a requirement of the course, you can select the following links to view optional online video lectures on the material in thismodule.

Miscellaneous

This section contains a variety of miscellaneous information.

Housekeeping material
  • Module name: Java OOP: Using Nested Loops to Process Pixels
  • File: Java3012.htm
  • Published: 07/31/12
Disclaimers:

Financial : Although the Connexions site makes it possible for you to download a PDF file for thismodule at no charge, and also makes it possible for you to purchase a pre-printed version of the PDF file, you should beaware that some of the HTML elements in this module may not translate well into PDF.

I also want you to know that, I receive no financial compensation from the Connexions website even if you purchase the PDF version of the module.

In the past, unknown individuals have copied my modules from cnx.org, converted them to Kindle books, and placed them for sale on Amazon.com showing me as the author. Ineither receive compensation for those sales nor do I know who does receive compensation. If you purchase such a book, please beaware that it is a copy of a module that is freely available on cnx.org and that it was made and published withoutmy prior knowledge.

Affiliation : I am a professor of Computer Information Technology at Austin Community College in Austin, TX.

Complete program listing

A complete listing of the program discussed in this module is shown in Listing 8 below.

Listing 8 . Complete program listing.
/*File Prob01 Copyright 2008 R.G.Baldwin Revised 12/16/08*********************************************************/ public class Prob01{public static void main(String[] args){Picture pic = new Prob01Runner().run(); System.out.println(pic);}//end main method }//end class Prob01//======================================================// class Prob01Runner{public Prob01Runner(){ System.out.println("Display your name here.");}//end constructor //----------------------------------------------------//public Picture run(){ Picture pix = new Picture("Prob01.jpg");//Display the input picture. pix.explore();//Call the mirrorUpperQuads method to modify the top // half of the picture.pix = mirrorUpperQuads(pix); //Mirror the top half into the bottom half.pix = mirrorHoriz(pix); //Add your name and display the output picture.pix.addMessage("Display your name here.",10,20); pix.explore();return pix; }//end run//----------------------------------------------------// //This method mirrors the upper-left quadrant of a// picture into the upper-right quadrant. private Picture mirrorUpperQuads(Picture pix){Pixel leftPixel = null; Pixel rightPixel = null;int midpoint = pix.getWidth()/2; int width = pix.getWidth();for(int row = 0;row<pix.getHeight()/2;row++){ for(int col = 0;col<midpoint;col++){ leftPixel = pix.getPixel(col,row);rightPixel = pix.getPixel(width-1-col,row);rightPixel.setColor(leftPixel.getColor()); }//end inner loop}//end outer loop return pix;}//end mirrorUpperQuads //----------------------------------------------------////This method mirrors the top half of a picture into // the bottom half.private Picture mirrorHoriz(Picture pix){ Pixel topPixel = null;Pixel bottomPixel = null; int midpoint = pix.getHeight()/2;int height = pix.getHeight(); for(int col = 0;col<pix.getWidth();col++){ for(int row = 0;row<midpoint;row++){ topPixel = pix.getPixel(col,row);bottomPixel = pix.getPixel(col,height-1-row);bottomPixel.setColor(topPixel.getColor()); }//end inner loop}//end outer loop return pix;}//end mirrorHoriz //----------------------------------------------------//}//end class Prob01Runner

-end-

Questions & Answers

what is mutation
Janga Reply
what is a cell
Sifune Reply
how is urine form
Sifune
what is antagonism?
mahase Reply
classification of plants, gymnosperm features.
Linsy Reply
what is the features of gymnosperm
Linsy
how many types of solid did we have
Samuel Reply
what is an ionic bond
Samuel
What is Atoms
Daprince Reply
what is fallopian tube
Merolyn
what is bladder
Merolyn
what's bulbourethral gland
Eduek Reply
urine is formed in the nephron of the renal medulla in the kidney. It starts from filtration, then selective reabsorption and finally secretion
onuoha Reply
State the evolution relation and relevance between endoplasmic reticulum and cytoskeleton as it relates to cell.
Jeremiah
what is heart
Konadu Reply
how is urine formed in human
Konadu
how is urine formed in human
Rahma
what is the diference between a cavity and a canal
Pelagie Reply
what is the causative agent of malaria
Diamond
malaria is caused by an insect called mosquito.
Naomi
Malaria is cause by female anopheles mosquito
Isaac
Malaria is caused by plasmodium Female anopheles mosquitoe is d carrier
Olalekan
a canal is more needed in a root but a cavity is a bad effect
Commander
what are pathogens
Don Reply
In biology, a pathogen (Greek: πάθος pathos "suffering", "passion" and -γενής -genēs "producer of") in the oldest and broadest sense, is anything that can produce disease. A pathogen may also be referred to as an infectious agent, or simply a germ. The term pathogen came into use in the 1880s.[1][2
Zainab
A virus
Commander
Definition of respiration
Muhsin Reply
respiration is the process in which we breath in oxygen and breath out carbon dioxide
Achor
how are lungs work
Commander
where does digestion begins
Achiri Reply
in the mouth
EZEKIEL
what are the functions of follicle stimulating harmones?
Rashima Reply
stimulates the follicle to release the mature ovum into the oviduct
Davonte
what are the functions of Endocrine and pituitary gland
Chinaza
endocrine secrete hormone and regulate body process
Achor
while pituitary gland is an example of endocrine system and it's found in the Brain
Achor
what's biology?
Egbodo Reply
Biology is the study of living organisms, divided into many specialized field that cover their morphology, physiology,anatomy, behaviour,origin and distribution.
Lisah
biology is the study of life.
Alfreda
Biology is the study of how living organisms live and survive in a specific environment
Sifune
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask