Download JES Tool JES: Jython Environment for Students

Slides:



Advertisements
Similar presentations
Installation of ACE TRADER (TWS) for Internet. Step 1 – Go to ACEINDIA.com 1.Go to 2.Click on Technology 3.Now Click.
Advertisements

Computer Information Technology Section 7-2
Python: Modifying Pictures Using Loops. Review JES command area – program area Defining/using functions specifying a sequence of steps for what the function.
Arrive at the Submittal Assembly Center. Select your choice of Wall Assembly.
COMPREHENSIVE Windows Tutorial 3 Personalizing Your Windows Environment.
®® Microsoft Windows 7 Windows Tutorial 3 Personalizing Your Windows Environment.
Aim: How can we extract an image by using the force foreground option?
Python: Making colors and Using Loops. Review JES command area – program area Defining/using functions specifying a sequence of steps for what the function.
Scite Scintilla integrated text editor. Click here.
Discover Digital Textile Printing for Fashion & Textiles Photo montage and engineered prints.
Photo Editing Basics with Photoshop. Upload your pictures Connect the camera to an available USB port Connect the camera to an available USB port Turn.
1 After completing this lesson, you will be able to: View and open folders. Open, edit, and save files. Print files. Sort files. (continued)
IMAGE PROCESSING LIBRARY (PIL) This is a package that you can import into python and it has quite a few methods that you can process image files with.
Download JES Tool JES: Jython Environment for Students
How To Use This Template The blank slide below will be your canvas for creating your very own custom header image! The slide has already been sized to.
How To Use This Template
How To Use This Template The blank slide below will be your canvas for creating your very own custom header image! The slide has already been sized to.
Copyright 2002, Paradigm Publishing Inc. CHAPTER 14 BACKNEXTEND 14-1 LINKS TO OBJECTIVES Border Concepts Creating a Border Adding Shading Horizontal Lines.
You SHOUD HAVE.. C:\100 folder A desktop shortcut to “IDLE (Python34)”
Project Deployment IT [211 CAP] How to convert your project to a full application.
Click on these! %2Fblank%2Fbrowse.asp%3FA%3D383%26BMDRN%3D2000%26BCOB%3D0% 26C%3D64893.
Resizing Images CS 268. Where to start? Pictures (of course)  Need to down size them for the web.  Pictures taken with a 10 mega pixel camera are usually.
CS 100 Introduction to Computing Introduction to JES Developed by Mark Guzdial, Georgia Institute of Technology, 2003–2004; modified by Robert H. Sloan.
CS1315: Introduction to Media Computation Picture encoding and manipulation.
Microsoft Expression Web-Illustrated Unit E: Working with Pictures.
Technology Presentation: InDesign CS6 Shelby Williams.
Using Macros in Minitab
Digital Storytelling Photostory 3 from Microsoft.
Processing Workshop. What is processing? “Processing is an open source programming language and environment for people who want to program images, animation,
Photoshop Editing Work Flow A Guide to the Full Meal Deal.
Lesson 2: Working with Slides Microsoft PowerPoint 2010.
Choose Your Own Adventure! Using Web Poster Wizard for Content.
How to Install Eclipse Click hereClick here to download Eclipse.
Double –Click on the Netscape Icon on your desktop The following are a series of steps to help you get started with Netscape Composer.
AGB 3/26/121 ++=. 2 Yes, believe it or not this is a complete webpage. It has a Head, Title and Body between the start and end HTML Tag.
You may have already done this… Download the class files to the desktop Expand those files into root of USB stick Change your USB stick to drive “Z”!
A Media Computation Cookbook Manipulating Images and Sounds for Use in Alice Part 1: Image Manipulations Part 2: Advanced Image Manipulations, e.g., changing.
First Project: Dance Dance Sprite  Write a dance with your sprite (You pick or create the sprite)  Incorporate as many of the Motion Commands as you.
CS1315: Introduction to Media Computation Introduction to JES.
1 SIC / CoC / Georgia Tech MAGIC Lab Rossignac Processing  Install Processing  Learn how to edit, run, save, export,
CS1315: Introduction to Media Computation Introduction to JES.
PLEASANTVILLE. Right now you have one layer. Your first layer is called “Background.”
Flip installation step by step procedure. Log in to Click Downloads.
Photoshop CS6 – Nelson Unit 3: Photoshop CS6. Objectives Define photo editing software Start Photoshop and view the workspace Use the Zoom tool and the.
Test 2 on Wed, 11/9 On image processing
Windows Tutorial 3 Personalizing Your Windows Environment
Multimedia Summer Camp
Getting Started with Adobe Photoshop CS6
Python/JES JES IDE (Integrated Development Environment)
Week 2.
Download JES Tool JES: Jython Environment for Students
How To Use This Template
“Placeholder for a quote to be animated here.”
Chapter 2: Introduction to Programming
Test 2 on Wed, 11/9 On image processing
Монголын ноосон бүтээгдэхүүн үйлдвэрлэгчдийн холбоо
Faded picture background with full-color overlay (Intermediate)
Gray Scale picture def pixBW(pixel): # given a pixel, change to BW
DIRECTIONS: 1. Click Enable Editing in the yellow bar above.
Darkened picture background with full-color circle (Intermediate)
A Media Computation Cookbook
CS 177 Week 3 Recitation Slides
More to Learn Creating a shortcut
How To Use This Template
Illustrator Patterns Info
CSC/FAR 020, Computer Graphics, October 7, 2009
Faded picture background with full-colour overlay (Intermediate)
Instructions for using the Miradi Companion Reporting Tool
Let's create your English Folder!.
Presentation transcript:

Download JES Tool JES: Jython Environment for Students Python development tool developed by Georgia Tech Download and install JES at C:/100 https://code.google.com/p/mediacomp-jes/downloads/list Select Jes-4-2-1-windows.zip

Unzip JES Tool Right-click on the zip file in Downloads folder, select ‘Extract All’

Select unzip folder Select C:\100 to unzip

Download media files Under C:\100, you should have Create a new folder pics under C:\100 Download www.cs.uml.edu/~kim/100/pics.zip Save into C:\100\pics Right click and select 7-zip &‘Extract here.” Under C:\100, you should have C:\100\jes-4-2-1-windows C:\100\pics (folder) Make a desktop shortcut to jes-4-2-1-windows\JES.exe (Python head icon)

Python/JES JES IDE (Integrated Development Environment) Incorporates editing environment Program pane Command pane Watcher button to view debugging

Picture Functions in JES Identify a picture and NAME it Determine width and height of the picture Do operation on a pixel, propagating the same operation over the entire picture

1. How to access a Picture in JES ? Select a picture file For example, myFile = pickAFile() WARNING: picture file (eiffel.jpg) is NOT a picture A picture file HAS TO BE converted to a picture object myPic = makePicture(myFile) Or, myPic = makePicture(pickAFile())

2. Get Picture Dimension pWid = myPic.getWidth() pHgt = myPic.getHeight()

3. Image Processing Negative B/WReduce Red Sunset Posterize Redeye Sepia-tone Mirror Symmetry Background substitution – chromakey Edge Detection Rotate Scale up or down a picture

Access a Pixel in a picture pixel = picture.getPixel(x,y) Given a pixel px, Get individual colors: px.getRed(), px. getGreen(), px.getBlue() Set new colors: px.setRed(255), … Work with a color in (R,G,B) myG = makeColor(0,255,0) px.setColor(myG) myColor = px.getColor() myColor = pickAColor()

Example >>> pic = makePicture(pickAFile()) >>> pix = pic.getPixel(1,1) >>> print pix Pixel, color=color r=168 g=131 b=105 # get/set individual color values >>> print pix.getRed() 168 >>> pix.setRed(255) 255 >>> color=pix.getColor() >>> print color color r=255 g=131 b=105 >>> pix.setColor(color)

LAB_1024 Pick any picture Draw a horizontal line of 10 pixels from (20,50) in the picture