Makin’ Mountains: by Chon Winger

Slides:



Advertisements
Similar presentations
AB 11 22 33 44 55 66 77 88 99 10  20  19  18  17  16  15  14  13  12  11  21  22  23  24  25  26  27  28.
Advertisements

(Adaptive) enhancement of HARDI images Eric Creusen Supervisor: Remco Duits.
Canyons, Karoo Landscapes and Scarp Retreat
P247. Figure 9-1 p248 Figure 9-2 p251 p251 Figure 9-3 p253.
Fractals Joceline Lega Department of Mathematics University of Arizona.
2006 Fall MATH 100 Lecture 141 MATH 100 Class 20 Line Integral.
PICTURING THE EFFECTS OF EROSION 4.7B Earth Science Engage.
CS 376b Introduction to Computer Vision 04 / 29 / 2008 Instructor: Michael Eckmann.
Rivers of Ice. Glacier Facts Found on every continent- even Africa! Cover 10% of the earth’s land area Contain 75% of the freshwater on earth Two types:
Chapter 17: Reflection & Mirrors Honors Physics Bloom High School Mr. Barry Latham.
Creating With Code.
Reflection: an isometry (or rigid motion) in which a figure is flipped giving its image an opposite orientation.
Digital Image Processing
Simulating Glacial Erosion Using Landscape Evolution Code Chelsea Willett EPS 109 – Fall 2014.
Tetris Agent Optimization Using Harmony Search Algorithm
Create an eroded landscape analogous to the Grand Canyon.
Relief. The Earth’s crust is not smooth, but shows relief. The Earth’s crust is not smooth, but shows relief. Relief can be defined as: height variations.
Prepared by: Mrs. Savita Kukreti Pawar Public School LANDFORMS OF THE EARTH.
-High, sharp-peaked fold mountains -Have experienced little erosion -More than one mountain range -Interior plateau.
Reflections Reflection Mirror image over the x axis or the y axis.
Erosion of pyramids With variable uplift and hardness Daniel Clements.
What do landforms look like? How are landforms created?
Flight Simulator Overview Flight Compartment Host Computer Motion Control Cabinet Motion Platform 13/6/2016 Visual Display Visual Image Generator Interface.
NMF Demo: Lee, Seung Bryan Russell Computer Demonstration.
GIS’s Roots in Cartography Getting Started With GIS Chapter 2.
A-level Computing Programming challenge 1: Fizzbuzz
Morphological Transformations and Histogram Equalization
From: An Ultrasound Probe Holder for Image-Guided Surgery
Ice Erosion & Deposition
Find the equation of the tangent line to the curve y = 1 / x that is parallel to the secant line which runs through the points on the curve with x - coordinates.
Landscape through Diffusion- Limited Aggregation
Landforms Vocabulary Foss Science.
Grade 11 Geomorphology Canyons, Karoo Landscapes and Scarp Retreat.
Mountain Peaks.
Glacial Erosion and Deposition Quiz
The Dragon Curve (Jurassic Park Fractal) Kelsey Jones
Simple Erosion Model Made by Jeffrey Smith
Marked Point Processes for Crowd Counting
LANDFORMS VIDEO youtube. com/watch
Notes Translations.
Physics-based simulation for visual computing applications
COURSE DISTRIBUTION Current Schedule in Banner Simulation 4 Results.
Bryan Russell Computer Demonstration
Use the properties of logarithms to expand the quantity. {image}
x = 4y - 4 x = 4y + 4 x = 4y - 1 y = 4x - 4 y = 4x - 1 y = 4x + 4
Equation Review Given in class 10/4/13.
First Homework One week
Unit 3: Lesson 9-Looping and Random Numbers
1ST YEAR OF ESO RIVERS PROFESOR TIERNO GALVÁN SECONDARY SCHOOL.
Changes to the Earth’s Surface: Erosion
1 مقايسه دانشگاه صنعتی شريف و دانشگاه برکلی در رشته‌های مهندسی و علوم کامپيوتر نيما احمدی پور اناری دانشکده مهندسی کامپيوتر دانشگاه صنعتی شريف جهت ارائه.
Zombies ate my Project Made by Lifan Zhang
Enhancing the Enlargement of Images
Landscapes Earth Science Mr. Cloud Zion National Park, Utah.
Copyright © 2004 The McGraw-Hill Companies, Inc. All rights reserved.
Chapter 12 Section 3 Part 1 Glacier Alpine Glacier Continental Glacier

Dan Peterson Comments on changing the C-line low-energy optics
Equation Review.
Modeling Heat Flow for a Lava Dike Intrusion Made by Ralph Till
By Evan Nguyen Mountains.
Unit 7: Systems of Equations
Data science course in Bangalore.
The most exciting, in-depth, complicated movie you’ve ever seen
Arielle Little EPS 109, Fall 2009
Oscillating Wave Interference Pattern Nick Odlum
Enhancing the Enlargement of Images
Particle Motion in an Electromagnetic Field Made by Shane Frewen
Chapter 5 Congruent Triangles.
Erosion of the Point Reyes Peninsula over One Million Years
Presentation transcript:

Makin’ Mountains: by Chon Winger This program simulates a mountain by creating randomly oriented pyramid structures and then placed them on top of each other. The parameters: H = height of new pyramid (A,B) = coordinates of peak (random) P = “jaggedness” -1<p<0 gives very jagged mountains, while 0<p<0.5 gives very smooth hills Q= parameter resets the height Iter = number of iterations Equation for height of pyramids: H = (P*height)/(-2^(mod(iter,Q)))  Figure 1: Pyramid Figure 2: Mountain construction Prepared for UC Berkeley course EPS 109 “Computer Simulations in Earth and Planetary Science”, fall 2009, Instructor: B. Militzer

Makin’ Mountains: by Chon Winger  Makin’ Mountains: by Chon Winger Using the Perron model of landscape erosion, we can use this code to set the initial conditions of a mountain in order to model mountain erosion. These images were made by combining the two codes into one. Figure 3: original Figure 4: Eroded

Makin’ Mountains: by Chon Winger