<< Chapter < Page Chapter >> Page >

The runner class named Pr0140aRunner

Aside from the specific implementation of the pixel modification algorithm, the major difference between this sketch and the sketches since Pr0120-Image Explorer is that I have made the code more modular.

For example, I have attempted to isolate those portions of the template that are likely to change from one algorithm go the next from those portions that areless likely to change. That will make it easier to explain how the code for one algorithm differs from the code for other algorithms.

The beginning of the class and the run method

Listing 1 shows the beginning of the class and the modified run method. It is unlikely that this code will change much from one algorithm tothe next.

Listing 1. beginning of the class and the run method.

class Pr0140aRunner{ //The following instance variable is used to set the// color of the appropriate pixel in the output display // window.int ctr = 0;//output pixel array countervoid run(){ background(255);//whitetextFont(font,16);//Set the font size fill(255,0,0);//Set the text color to red//Display error message in place of image if the// image won't fit in the display window. if(img.width>width){ text("--Image too wide--",10,20);text("Image width: " + img.width,10,40); text("Display width: " + width,10,60);}else if(img.height>height){ text("--Image too tall--",10,20);text("Image height: " + img.height,10,40); text("Display height: " + height,10,60);}else{ //The image will fit in the output window.//Call a method that will apply a specific// pixel-modification algorithm and write the // modified pixel colors into the output window.processPixels(); }//end else//Display the author's name on the output in the font// size and text color defined above. text("Dick Baldwin",10,20);//Display information about the pixel being pointed// to with the mouse. Display near the bottom of the // output window.displayPixelInfo(img); }//end run
Listing 1. Beginning of the class and the run method.

Major differences in the run method

The first major difference between this and previous versions of the run method is the delegation of pixel manipulation operations to the method named processPixels . Moving those operations to a separate method will decrease the likelihood that it will be necessary to modify the code in Listing 1 to implement different algorithms.

I will identify the second major change later.

Beginning of the processPixels method

The processPixels method, which begins in Listing 2 , applies a pixel modification algorithm that causes the green and blue color values to be scaled on a linearbasis moving from left to right across the image.

Listing 2. beginning of the processpixels method.

void processPixels(){ loadPixels();//requiredimg.loadPixels();//required float reD,greeN,bluE;//store color values herectr = 0;//initialize output pixel array counter
Listing 2. Beginning of the processPixels method.

The code in Listing 2 :

  • Does some preliminary housekeeping regarding pixels, (which you have seen before) .
  • Declares local variables for storage of red, green, and blue color values.
  • Initializes the counter that is used to position color values in the output pixel array.

Beginning of a for loop

Listing 3 shows the beginning of a for loop that is used to process every pixel in the input pixel array.

Listing 3. beginning of a for loop.

//Process each pixel in the input image. for(int cnt = 0;cnt<img.pixels.length;cnt++){ //Get and save RGB color values for current pixel.reD = red(img.pixels[cnt]);greeN = green(img.pixels[cnt]);bluE = blue(img.pixels[cnt]);
Listing 3. Beginning of a for loop.

Get and save color values

The code in Listing 3 gets and saves the RGB color values for the current pixel.

Compute the column number

This algorithm applies the same scale factor to every pixel in each column. Therefore, it is necessary to identify the column to which a pixel belongs whenthe colors for the pixel are retrieved from the pixel array. However, it is not necessary to identify the row. (We will get to that in later modules.)

The code in Listing 4 uses the modulus operator to compute the column number based on the loop counter, (which is the same as the input pixel array index) .

Listing 4. compute the scale factor for the column.

//Compute the column number and use it to compute // the linear scale factors that will be applied to// the green and blue color values. int col = cnt%img.width;float greenScale = (float)(width - col)/width; float blueScale = (float)(col)/width;
Listing 4. Compute the scale factor for the column.

Compute the scale factor for the column

The code in Listing 4 uses the column number to compute the two required scale factors.

If case you haven't recognized it, the expression for greenScale is the equation for a straight line that goes through 1.0 on the left side ofthe image and goes through 0.0 on the right side of the image.

Questions & Answers

how does Neisseria cause meningitis
Nyibol Reply
what is microbiologist
Muhammad Reply
what is errata
Muhammad
is the branch of biology that deals with the study of microorganisms.
Ntefuni Reply
What is microbiology
Mercy Reply
studies of microbes
Louisiaste
when we takee the specimen which lumbar,spin,
Ziyad Reply
How bacteria create energy to survive?
Muhamad Reply
Bacteria doesn't produce energy they are dependent upon their substrate in case of lack of nutrients they are able to make spores which helps them to sustain in harsh environments
_Adnan
But not all bacteria make spores, l mean Eukaryotic cells have Mitochondria which acts as powerhouse for them, since bacteria don't have it, what is the substitution for it?
Muhamad
they make spores
Louisiaste
what is sporadic nd endemic, epidemic
Aminu Reply
the significance of food webs for disease transmission
Abreham
food webs brings about an infection as an individual depends on number of diseased foods or carriers dully.
Mark
explain assimilatory nitrate reduction
Esinniobiwa Reply
Assimilatory nitrate reduction is a process that occurs in some microorganisms, such as bacteria and archaea, in which nitrate (NO3-) is reduced to nitrite (NO2-), and then further reduced to ammonia (NH3).
Elkana
This process is called assimilatory nitrate reduction because the nitrogen that is produced is incorporated in the cells of microorganisms where it can be used in the synthesis of amino acids and other nitrogen products
Elkana
Examples of thermophilic organisms
Shu Reply
Give Examples of thermophilic organisms
Shu
advantages of normal Flora to the host
Micheal Reply
Prevent foreign microbes to the host
Abubakar
they provide healthier benefits to their hosts
ayesha
They are friends to host only when Host immune system is strong and become enemies when the host immune system is weakened . very bad relationship!
Mark
what is cell
faisal Reply
cell is the smallest unit of life
Fauziya
cell is the smallest unit of life
Akanni
ok
Innocent
cell is the structural and functional unit of life
Hasan
is the fundamental units of Life
Musa
what are emergency diseases
Micheal Reply
There are nothing like emergency disease but there are some common medical emergency which can occur simultaneously like Bleeding,heart attack,Breathing difficulties,severe pain heart stock.Hope you will get my point .Have a nice day ❣️
_Adnan
define infection ,prevention and control
Innocent
I think infection prevention and control is the avoidance of all things we do that gives out break of infections and promotion of health practices that promote life
Lubega
Heyy Lubega hussein where are u from?
_Adnan
en français
Adama
which site have a normal flora
ESTHER Reply
Many sites of the body have it Skin Nasal cavity Oral cavity Gastro intestinal tract
Safaa
skin
Asiina
skin,Oral,Nasal,GIt
Sadik
How can Commensal can Bacteria change into pathogen?
Sadik
How can Commensal Bacteria change into pathogen?
Sadik
all
Tesfaye
by fussion
Asiina
what are the advantages of normal Flora to the host
Micheal
what are the ways of control and prevention of nosocomial infection in the hospital
Micheal
what is inflammation
Shelly Reply
part of a tissue or an organ being wounded or bruised.
Wilfred
what term is used to name and classify microorganisms?
Micheal Reply
Binomial nomenclature
adeolu
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, The processing programming environment. OpenStax CNX. Feb 26, 2013 Download for free at http://cnx.org/content/col11492/1.5
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'The processing programming environment' conversation and receive update notifications?

Ask