<< 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

how to create a software using Android phone
Wiseman Reply
how
basra
what is the difference between C and C++.
Yan Reply
what is software
Sami Reply
software is a instructions like programs
Shambhu
what is the difference between C and C++.
Yan
yes, how?
Hayder
what is software engineering
Ahmad
software engineering is a the branch of computer science deals with the design,development, testing and maintenance of software applications.
Hayder
who is best bw software engineering and cyber security
Ahmad
Both software engineering and cybersecurity offer exciting career prospects, but your choice ultimately depends on your interests and skills. If you enjoy problem-solving, programming, and designing software syste
Hayder
what's software processes
Ntege Reply
I haven't started reading yet. by device (hardware) or for improving design Lol? Here. Requirement, Design, Implementation, Verification, Maintenance.
Vernon
I can give you a more valid answer by 5:00 By the way gm.
Vernon
it is all about designing,developing, testing, implementing and maintaining of software systems.
Ehenew
hello assalamualaikum
Sami
My name M Sami I m 2nd year student
Sami
what is the specific IDE for flutter programs?
Mwami Reply
jegudgdtgd my Name my Name is M and I have been talking about iey my papa john's university of washington post I tagged I will be in
Mwaqas Reply
yes
usman
how disign photo
atul Reply
hlo
Navya
hi
Michael
yes
Subhan
Show the necessary steps with description in resource monitoring process (CPU,memory,disk and network)
samuel Reply
What is software engineering
Tafadzwa Reply
Software engineering is a branch of computer science directed to writing programs to develop Softwares that can drive or enable the functionality of some hardwares like phone , automobile and others
kelvin
if any requirement engineer is gathering requirements from client and after getting he/she Analyze them this process is called
Alqa Reply
The following text is encoded in base 64. Ik5ldmVyIHRydXN0IGEgY29tcHV0ZXIgeW91IGNhbid0IHRocm93IG91dCBhIHdpbmRvdyIgLSBTdGV2ZSBXb3puaWFr Decode it, and paste the decoded text here
Julian Reply
what to do you mean
Vincent
hello
ALI
how are you ?
ALI
What is the command to list the contents of a directory in Unix and Unix-like operating systems
George Reply
how can i make my own software free of cost
Faizan Reply
like how
usman
hi
Hayder
The name of the author of our software engineering book is Ian Sommerville.
Doha Reply
what is software
Sampson Reply
the set of intruction given to the computer to perform a task
Noor
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