<< Chapter < Page Chapter >> Page >
A brief guide to texture mapping in Processing

Color interpolation

As seen in Graphic Composition in Processing , one can obtain surfaces as collections of polygons by means of the definition of a vertexwithin the couple beginShape() - endShape() . It is possible to assign a color to one or more vertices, in order to make the color variations continuous ( gradient ). For example, you can try to run the code size(200,200,P3D);beginShape(TRIANGLE_STRIP); fill(240, 0, 0); vertex(20,31, 33);fill(240, 150, 0); vertex(80, 40, 38); fill(250, 250, 0); vertex(75, 88, 50);vertex(49, 85, 74); endShape(); in order to obtain a continuous nuance from red to yellow in the strip of two triangles.

Bilinear interpolation

The graphical system performs an interpolation of color values assigned to the vertices. This type of bilinear interpolation is defined in the following way:

  • For each polygon of the collection
    • For each side of the polygon one assigns to each point on the segment the color obtained by means of linear interpolation of the colors of the vertices i e j that define the polygon: C ij α (1 - α) C i α C j
    • A scan line scans the polygon (or, better, its projection on the image window) intersecting at each step two sides in two points l ed r whose colors have already been identified as C l e C r . In each point of the scan line the color is determined by linear interpolation C lr β (1 - β) C l β C r

A significative example of interpolation of colors associated to the vertices of a cube can be found in examples of Processing , in the code RGB Cube .

Texture

When modeling a complex scene by means of a composition of simple graphical elements one cannot go beyond a certainthreshold of complexity. Let us think about the example of a modelization of a natural scene, where one has to representeach single vegetal element, including the grass of a meadow. It is unconceivable to do this manually. It would bepossible to set and control the grass elements by means of some algorithms. This is an approach taken, for example, inrendering the hair and skin of characters of the most sophisticated animation movies (see for example, the Incredibles ). Otherwise, especially in case of interactive graphics, one has to resort to using textures . In other words, one employs images that represent the visual texture of the surfaces and map them onthe polygons that model the objects of the scene. In order to have a qualitative rendering of the surfaces it is necessaryto limit the detail level to fragments not smaller than one pixel and, thus, the texture mapping is inserted in the rendering chain at the rastering level of the graphic primitives, i.e. where one passes from a 3Dgeometric description to the illumination of the pixels on the display. It is at this level that the removal of thehidden surfaces takes place, since we are interested only in the visible fragments.

In Processing, a texture is defined within a block beginShape() - endShape() by means of the function texture() that has as unique parameter a variable of type PImage . The following calls to vertex() can contain, as last couple of parameters, the point of the texture correspondingto the vertex. In fact, each texture image is parameterized by means of two variables u and v , that can be referred directly to the line and column of a texel (pixel of a texture) or, alternatively, normalized between 0 and 1 , in such a way that one can ignore the dimension as well as the width and height of the texture itself. Themeaning of the parameters u and v is established by the command textureMode() with parameter IMAGE or NORMALIZED .

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, Media processing in processing. OpenStax CNX. Nov 10, 2010 Download for free at http://cnx.org/content/col10268/1.14
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Media processing in processing' conversation and receive update notifications?

Ask