پاورپوینت نرم افزار مطلب و ویژگی های ان (pptx) 16 اسلاید
دسته بندی : پاورپوینت
نوع فایل : PowerPoint (.pptx) ( قابل ویرایش و آماده پرینت )
تعداد اسلاید: 16 اسلاید
قسمتی از متن PowerPoint (.pptx) :
1
نرم افزار مطلب و ویژگی های ان
2
نرم افزار مطلب و تصاویر
مطلب محیط بهینه ای برای کار با ماتریس ها می باشد
همه تصاویر به صورت ماتریس می باشند
توابع بسیار پر کاربرد برای کاربرد در جعبه ابزار پردازش تصاویر وجود دارد
به کارگیری ساده از توابع موجود در جعبه ابزار
3
پسوند تصاویر در مطلب
MATLAB can import/export several image formats
BMP (Microsoft Windows Bitmap)
GIF (Graphics Interchange Files)
HDF (Hierarchical Data Format)
JPEG (Joint Photographic Experts Group)
PCX (Paintbrush)
PNG (Portable Network Graphics)
TIFF (Tagged Image File Format)
XWD (X Window Dump)
MATLAB can also load raw-data or other types of image data
Data types in MATLAB
Double (64-bit double-precision floating point)
Single (32-bit single-precision floating point)
Int32 (32-bit signed integer)
Int16 (16-bit signed integer)
Int8 (8-bit signed integer)
Uint32 (32-bit unsigned integer)
Uint16 (16-bit unsigned integer)
Uint8 (8-bit unsigned integer)
4
نوع تصاویر در مطلب
• Binary images : {0,1}(باینری)
• Intensity images : [0,1] or uint8, double etc.(شدت تصاویر (
• RGB images : m-by-n-by-3
• Indexed images : m-by-3 color map
• Multidimensional images m-by-n-by-p (p is the number of layers)
5
ورودی و خروجی تصاویر(وارد کردن تصویر/نمایش تصویر)
Read and write images in Matlab
>> I=imread('cells.jpg');
>> imshow(I)
>> size(I)
ans = 479 600 3 (RGB image)
>> Igrey=rgb2gray(I);
>> imshow(Igrey)
>> imwrite(lgrey, 'cell_gray.tif', 'tiff')
6
بار گذاری تصاویر در مطلب
>> I=imread('mandrill.bmp','bmp'); % load image
>> image(I) % display image
>> whos I
Name Size Bytes Class
I 512x512x3 786432 uint8 array
image filename as a string
image format as a string
Matrix with image data
Dimensions of I (red, green and blue intensity information)
Matlab can only perform arithmetic operations on data with class double!
Display the left half of the mandrill image
7
تصاویر و ماتریس ها
How to build a matrix (or image)?
>> A = [ 1 2 3; 4 5 6; 7 8 9 ];
A = 1 2 3
4 5 6
7 8 9
>> B = zeros(3,3)
B = 0 0 0
0 0 0
0 0 0
>> C = ones(3,3)
C = 1 1 1
1 1 1
1 1 1
>>imshow(A) (imshow(A,[]) to get automatic pixel range)
8
دستیابی به عناصر تصویر (row, column)
>> A(2,1)
ans = 4
: می توان از تمام سطر و ستون ها استخراج نمود
>> A(:,2)
ans =
2
5
8
or a part of a column or row
>> A(1:2,2)
ans =
2
5
A =
1 2 3
4 5 6
7 8 9
9
>> I2=I(:,:,2); % green values of I
>> image(I2)
>> colorbar % display colourmap
نمایش تصاویر شاخص(index)
Matlab considers I2 as an indexed image as it doesn’t contain entries for red, green and blue entries
شاخص
تصاویر همبسته
جدول نمایش رنگ