نرم افزار متلب و تصاویر:
متلب محیط بهینه ای برای کار با ماتریس ها می باشد
همه تصاویر به صورت ماتریس می باشند
توابع بسیار پر کاربرد برای کاربرد در جعبه ابزار پردازش تصاویر وجود دارد
به کارگیری ساده از توابع موجود در جعبه ابزا
پسوند تصاویر در متلب:
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
نوع تصاویر در مطلب:
{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
ورودی و خروجی تصاویر(وارد کردن تصویر/نمایش تصویر):
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')
شامل 17 اسلاید POWERPOINT
دانلود پاورپوینت جعبه ابزار پردازش تصویر MATLAB