<< Chapter < Page
  Digital signal processing - dsp     Page 18 / 24
Chapter >> Page >
Listing 17. Set colors and draw squares.
//Set the color value. g.setColor(color);//Draw a square of the specified size //in the specified color at the// specified location. g.fillRect(col * blockSize,row * blockSize, blockSize,blockSize); }//end col loop}//end row loop

Paint a colored square

Finally the code in Listing 17 calls the fillRect method of the Graphics class to paint a square of pixels of the specified size at the specified location in the specified color.

This process is repeated for every elevation point on the 3D surface data, producing an output similar to the leftmost image in Figure 1 .

Listing 17 signals the end of the nested for loops. When the code in Listing 17 finishes execution, the 3D surface has been plotted, but it does not yet contain the optional red axes.

Draw the optional red axes

Listing 18 tests to see if the value of the axis parameter is true. If so, it uses the information obtained earlier from the getCenter method, along with the setColor and drawLine methods of the Graphics class to draw the optional red axes shown in the images in Figure 1 . These axes always intersect at the center of the image.

Listing 18. Draw the optional red axes.
if(axis){ g.setColor(Color.RED);g.drawLine(0,vertCenter,2*horizCenter, vertCenter);g.drawLine(horizCenter,0,horizCenter, 2*vertCenter);}//end if }//end paint}//end inner class CanvasType0surface

Listing 18 also signals the end of the overridden paint method and the end of the inner class named CanvasType0Surface .

Beginning of the class named CanvasType0scale

An object of the class named CanvasType0scale is used to plot the calibration scale that is displayed immediately below the surface plotfor the Grayscale plot format. The beginning of this class and the constructor for this class are shown in Listing 19 .

Listing 19. Beginning of the class named CanvasType0scale .
class CanvasType0scale extends Canvas{ //Set the physical height of the scale strip// in pixels. int scaleHeight = 6 * blockSize;CanvasType0scale(){//constructor//Set the size of the Canvas based on the // width of the surface and the size of the// square used to represent each value on // the surface.setSize(dataWidth * blockSize,scaleHeight); }//end constructor

How it works

Basically this class (as well as the other two classes that create calibration scales) operates by constructing an artificial surface, (which is like a long thin board) , positioned such that one end has an elevation of 0 and the other end has an elevation of 255. The length of thislong thin surface is equal to the width of the surface plot for the Grayscale plot format.

The same Grayscale color algorithm is applied to this artificial surface that is applied to the real surface. The result is a linear representation of thecolors produced by the color algorithm from the lowest elevation at 0 to the highest elevation at 255. This result is displayed immediately below the realsurface with the lowest elevation at the left end and the highest elevation at the right end. An example is shown in the leftmost image in Figure 1 .

Questions & Answers

I'm interested in biological psychology and cognitive psychology
Tanya Reply
what does preconceived mean
sammie Reply
physiological Psychology
Nwosu Reply
How can I develope my cognitive domain
Amanyire Reply
why is communication effective
Dakolo Reply
Communication is effective because it allows individuals to share ideas, thoughts, and information with others.
effective communication can lead to improved outcomes in various settings, including personal relationships, business environments, and educational settings. By communicating effectively, individuals can negotiate effectively, solve problems collaboratively, and work towards common goals.
it starts up serve and return practice/assessments.it helps find voice talking therapy also assessments through relaxed conversation.
miss
Every time someone flushes a toilet in the apartment building, the person begins to jumb back automatically after hearing the flush, before the water temperature changes. Identify the types of learning, if it is classical conditioning identify the NS, UCS, CS and CR. If it is operant conditioning, identify the type of consequence positive reinforcement, negative reinforcement or punishment
Wekolamo Reply
please i need answer
Wekolamo
because it helps many people around the world to understand how to interact with other people and understand them well, for example at work (job).
Manix Reply
Agreed 👍 There are many parts of our brains and behaviors, we really need to get to know. Blessings for everyone and happy Sunday!
ARC
A child is a member of community not society elucidate ?
JESSY Reply
Isn't practices worldwide, be it psychology, be it science. isn't much just a false belief of control over something the mind cannot truly comprehend?
Simon Reply
compare and contrast skinner's perspective on personality development on freud
namakula Reply
Skinner skipped the whole unconscious phenomenon and rather emphasized on classical conditioning
war
explain how nature and nurture affect the development and later the productivity of an individual.
Amesalu Reply
nature is an hereditary factor while nurture is an environmental factor which constitute an individual personality. so if an individual's parent has a deviant behavior and was also brought up in an deviant environment, observation of the behavior and the inborn trait we make the individual deviant.
Samuel
I am taking this course because I am hoping that I could somehow learn more about my chosen field of interest and due to the fact that being a PsyD really ignites my passion as an individual the more I hope to learn about developing and literally explore the complexity of my critical thinking skills
Zyryn Reply
good👍
Jonathan
and having a good philosophy of the world is like a sandwich and a peanut butter 👍
Jonathan
generally amnesi how long yrs memory loss
Kelu Reply
interpersonal relationships
Abdulfatai Reply
What would be the best educational aid(s) for gifted kids/savants?
Heidi Reply
treat them normal, if they want help then give them. that will make everyone happy
Saurabh
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, Digital signal processing - dsp. OpenStax CNX. Jan 06, 2016 Download for free at https://legacy.cnx.org/content/col11642/1.38
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Digital signal processing - dsp' conversation and receive update notifications?

Ask