<< Chapter < Page Chapter >> Page >

Projections

Perspective projections

A perspective projection is defined by a center of projection and a plane of projection . The projector rays connect the points in the scene with the center of projection, thus highlighting thecorresponding points in the plane of projection. The [link] shows a section where the plane of projection produces a straight line whose abscissa is d , and the center of projection is in the origin.

By similarity of two triangles it is easy to realize that the point having ordinate y gets projected onto the plane in the point having ordinate y p y d z .

In general, the projection of a point having homogeneous coordinates x y z 1 onto a plane orthogonal to the z axis and intersecting such axis in position d is obtained, in homogeneous coordinates, by multiplication with the matrix 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 d 0 . The projected point becomes x y z z d , which can be normalized by multiplication of all its element by d z . As a result, we obtain x d z y d z d 1

Parallel views

Parallel views are obtained by taking the center of projection back to infinity ( ). In this way, the projector rays are all parallel.

Orthographic projection

The orthographic projection produces a class of parallel views by casting projection rays orthogonal to the planeof projection. If such plane is positioned orthogonally to the z axis and passing by the origin, the projection matrix turns out to beparticolarly simple: 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 . Among orthographic projections, the axonometric projections are based on the possibility to measure the object along three orthogonalaxes, and on the orientation of the plane of projection with respect to these axes. In particular, in the isometric projection the projections of the axes form angles of 120 ° . The isometric projection has the property that equal segments on the three axes remain equal when theyare projected onto the plane. In order to obtain the isometric projection of an object whose main axes areparallel to the coordinate axes, we can first rotate the object by 45 ° about the y axis, and then rotate by 1 2 35.264 ° about the x axis.

Oblique projection

We can talk about oblique projection every time the projector rays are oblique (non-orthogonal) to the projection plane. In order to deviate the projector rays from the normal direction by the angles θ and φ we must use a projection matrix 1 0 θ 0 0 1 φ 0 0 0 0 0 0 0 0 1

Casting shadows

As we have seen, Processing has a local illumination model, thus being impossible to cast shadows directly. However, bymanipulating the affine transformation matrices we can cast shadows onto planes. The method is called flashing in the eye , thus meaning that the optical center of the scene is moved to the point where the light source ispositioned, and then a perspective transformation is made, with a plane of projection that coincides with the planewhere we want to cast the shadow on.

The following program projects on the floor the shadow produced by a light source positioned on the y axis. The result is shown in [link]

Casting a shadow

size(200, 200, P3D); float centro = 100;float yp = 70; //floor (plane of projection) distance from center float yl = 40; //height of light (center of projection) from centertranslate(centro, centro, 0); //center the world on the cube noFill();box(yp*2); //draw of the room pushMatrix();fill(250); noStroke(); translate(0, -yl, 0); // move the virtual light bulb highersphere(4); //draw of the light bulb stroke(10);popMatrix(); pushMatrix(); //draw of the wireframe cubenoFill(); rotateY(PI/4); rotateX(PI/3);box(20); popMatrix();// SHADOW PROJECTION BY COMPOSITION // OF THREE TRANSFORMATIONS (the first one in// the code is the last one to be applied) translate(0, -yl, 0); // shift of the light source and the floor back// to their place (see the translation below) applyMatrix(1, 0, 0, 0,0, 1, 0, 0, 0, 0, 1, 0,0, 1/(yp+yl), 0, 0); // projection on the floor // moved down by yltranslate(0, yl, 0); // shift of the light source to center // and of the floor down by ylpushMatrix(); // draw of the cube that generate the shadow fill(120, 50); // by means of the above transformationsnoStroke(); rotateY(PI/4); rotateX(PI/3);box(20); popMatrix();

Got questions? Get instant answers now!

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