Tutorial 1 (additional materials)

Slides:



Advertisements
Similar presentations
Tutorial on Matlab and OpenCV Rui Ma TA of CMPT 414 May 14, 2013 Office hours: Fridays 11:00-12:00, CSIL TA Office 1 (ASB 9838)
Advertisements

Introduction to MATLAB The language of Technical Computing.
Digital Image Processing Lecture 3: Image Display & Enhancement
Image Display MATLAB functions for displaying image Bit Planes
CS231A Matlab Tutorial Philip Lee Winter Overview  Goals › Introduction to Matlab › Matlab Snippets › Basic image manipulations › Helpful Matlab.
Using Matlab for Thin Section Analysis Sam DeNicola Fall Semester, 2014 EPS 109.
 Vector data- making polygons, outlines, like coastline.
Homework 4 Notes Connelly Barnes COS 323. MATLAB Semicolon at endline suppresses output. >> [1 2] ans = 1 2 >> [1 2];
Click to add your Title Click to Write your name. Make sure it looks like this. Author: Nancy Power Point.
COMPREHENSIVE Excel Tutorial 8 Developing an Excel Application.
An introduction to Plotting in MATLAB Rikard Johansson Department of Biomedical Engineering (IMT) Linköping University
Matlab tutorial course Exercises 2:. Exercises Copy the script ‘face_points.m’ from my webpage into your ‘scripts’ folder Create a new folder in your.
Matlab tutorial course Lesson 5: Loading and writing data, producing visual output
Image and Video Processing in MATLAB Partly based on slides by Dmitri Roduy.
M ATLAB L ECTURE 1 Basic Concepts of Digital Image Processing.
CS112 Scientific Computation Department of Computer Science Wellesley College Numb3rs Number and image types.
© 2004 R. C. Gonzalez, R. E. Woods, and S. L. Eddins Digital Image Processing Using MATLAB ® Chapter 2 Fundamentals Chapter.
All About Me Finding and Editing Saved Student Work Part II.
Digital Image Processing Lecture4: Fundamentals. Digital Image Representation An image can be defined as a two- dimensional function, f(x,y), where x.
Using the remote access option on the lab computers Fall 2005.
Darragh Mullins 4 th Energy Systems 11/01/2013.  Performance of a wastewater treatment plant  Conventional RGB Digital camera  Consistent image acquisition.
Surreal Photography bitions/exhibitiondetail.aspx?cid=6 88.
Cloud Foundry Part II - Tutorial Dr. Guy Tel-Zur.
Matlab tutorial course Exercises 5: Loading and writing images
Digital Image Processing Introduction to MATLAB. Background on MATLAB (Definition) MATLAB is a high-performance language for technical computing. The.
BBT 10 Visual Basic 03 Enrichment. Tip Before creating any files for your project, first create a new folder Save all of your files in the folder Pieces.
How to Execute TSR Program. Install Borland C++ Download Borland C++ from LMS – oads/BORLANDC.rarhttp://vulms.vu.edu.pk/Courses/CS609/Downl.
Fixing Photos Part 1 – Lighting Adjustments Your name here __________________ Period ____ 1.Download the practice images ZIP file. 2.Complete the photo.
Image Representation Last update st March Heejune Ahn, SeoulTech.
Project Planning Defining the project Software specification Development stages Software testing.
6 th Grade Keyboarding Mrs. Schlaffman Class Expectations.
SAVING ON THE FILE SERVER. I WANT TO SAVE A DOCUMENT GO TO NETWORK NEIGHBORHOOD GO TO NETWORK NEIGHBORHOOD FLYER FLYER HOME HOME STAFF STAFF FIND YOUR.
TUTORIAL HOW TO INSTALL & USE DOSBOX ON 64-BIT OPERATING SYSTEM.
Introduction to MATLAB CS 534 Fall What you'll be learning today ●MATLAB basics (debugging, IDE) ●Operators ●Matrix indexing ●Image I/O ●Image display,
การใช้งานโปรแกรม MATLAB ดร. อำนาจ ขาวเน. BASIC ELEMENTS OF MATLAB MATLAB Desktop MATLAB Editor Help System MATLAB (MATrix LABoratory)
Printing Set-up Drawing by switching to Layout 1 Insert a title block.
Basics of MATLAB 2- Programming in MATLAB By DR. Wafaa Shabana
Introduction to MATLAB’s Signal & Image Processing toolboxes
Computer Application in Engineering Design
Excel Tutorial 8 Developing an Excel Application
To find near doubles.
How Computers Store Variables
Images In Matlab.
Introduction to MATLAB
Error Concealment In The Pixel Domain And MATLAB commands
Introduction to MATLAB
Python Mr. Husch.
Week 1 Computer Programming Year 9 – Unit 9.04
GROpt.m (1) Copy the 7 files from GRopt.zip into one directory.
CSE107 Matlab Introduction
Task 1 Computer Programming LEVEL 6 PROGRAMMING:
M434/534 Numerical Linear Algebra MATLAB Tutorial Session (Fall 2010)
Run Java file with Window cmd
CSCI N207 Data Analysis Using Spreadsheet
Matlab tutorial course
CSE 307 Basics of Image Processing
Saving TI-83 List Data to a Program File
Manipulating and Testing Digital Media Notes
How to Execute TSR Program
Scripts In Matlab.
C Programming Language
© 2010 Cengage Learning Engineering. All Rights Reserved.
How to Execute TSR Program
Require PO Overview when Submitting Invoices
Agenda 9/21/16 Introduction to Photoshop continued: Skills to review:
TODAY WILL BE COMPLETE SILENCE!
ME 123 Computer Applications I Lecture 4: Vectors and Matrices 3/14/03
Legacy PowerPoint Slides
ME 123 Computer Applications I Lecture 5: Input and Output 3/17/03
Presentation transcript:

Tutorial 1 (additional materials) ELEG 5502

Matlab Project Open a folder for your project Save all your materials in the folder (.m files, images, report, given test data) Type all your codes in the .m file. Press (F5) the run it. (I will just press F5 to run your codes, please assign all the parameters for me) Marks will be deducted if any error presented.

Useful functions in matlab Imread() imwrite() plot() xlabel() title() imshow() implay() double() uint8() rgb2gray() Be aware of the type: double (0 (black) – 255 (write)) uint8 (0 (black) – 1 (write)) help plot <- this command will give you the info. of function “plot”

Digital image (grey scale)

Digital image (RGB)

Try it at home! Reduce the resolution of the given image by half and show it for check. Then, save it. Show the Y, U, V channels of the given image. Reduce the luminance of the image.