jagomart
digital resources
picture1_Simple Red Powerpoint Template 46894 | Pcd Ml Pengolahan Citra Menggunakan Matlab


 245x       Filetype PPTX       File size 2.40 MB       Source: setiawanhadi.unpad.ac.id


File: Simple Red Powerpoint Template 46894 | Pcd Ml Pengolahan Citra Menggunakan Matlab
matlab 2015a image processing and computer vision use graphical tools to visualize and manipulate images and video connect to hardware and develop new ideas using libraries of reference standard algorithms ...

icon picture PPTX Filetype Power Point PPTX | Posted on 18 Aug 2022 | 3 years ago
Partial capture of text on file.
                     MATLAB 2015a
    • Image Processing and Computer Vision
       –Use graphical tools to visualize and manipulate images and 
         video. Connect to hardware and develop new ideas using 
         libraries of reference-standard algorithms.
    • Products:
       –MATLAB
       –Computer Vision System Toolbox
       –Image Acquisition Toolbox
       –Image Processing Toolbox
       –Parallel Computing Toolbox
       –Signal Processing Toolbox
       –Statistics and Machine Learning Toolbox
                  PCD-ML Pengolahan Citra Menggunakan MATLAB
                                                Images in Matlab
                     • Matlab is optimised for operating on 
                           matrices
                     • Images are matrices!
                     • Many useful built-in functions in the 
                           Matlab Image Processing Toolbox
                     • Very easy to write your own image 
                           processing functions
                                                                                                                                                          •   3
                                              PCD-ML Pengolahan Citra Menggunakan MATLAB
              Loading and displaying images
         >> I=imread('mandrill.bmp','bmp');                    % load image
                                                                    image format as a string
    Matrix  with               image filename as a string
    image data
         >> image(I)   % display image
         >> whos I
         Name       Size                   Bytes         Class
           I            512x512x3             786432    uint8 array
         Grand total is 786432 elements using 786432 bytes
                                                                Matlab      can      only          Display    the 
                   Dimensions  of  I  (red,                     perform       arithmetic           left half of the 
                   green and blue intensity                     operations  on  data               mandrill 
                                                                with class double!                 image
                   information)
                                PCD-ML Pengolahan Citra Menggunakan MATLAB
           Ekstraksi Color Channel
       %----------membaca dan isi variabel----------------¬
       gambar=imread(‘lena.jpg’);
       red=gambar; 
       green=gambar;
       blue=gambar;
       %----------memproses per channel ---------------¬
       red(:,:,2)=0;
       red(:,:,3)=0;
       green=(:,:,1)=0;
       green=(:,:,3)=0;
       blue(:,:,1)=0;
       blue(:,:,2)=0;
       %----------menampilkan gambar----------------¬
       imshow(gambar)
       imshow(red)
       imshow(green)
       imshow(blue)
              PCD-ML Pengolahan Citra Menggunakan MATLAB
            Konversi RGB ke Gray
       %------- Image Processing Toolbox ------
       gambar=imread(‘lena.jpg’);
       gray=rgb2gray(gambar);
       imshow(gray);
       %------- Conventional ------
       gray2 = 0.2989 * rgb(:,:,1) +0.5870 * 
       rgb(:,:,2) + 0.1140 * rgb(:,:,3); 
       imshow(gray2);
              PCD-ML Pengolahan Citra Menggunakan MATLAB
The words contained in this file might help you see if this file matches what you are looking for:

...Matlab a image processing and computer vision use graphical tools to visualize manipulate images video connect hardware develop new ideas using libraries of reference standard algorithms products system toolbox acquisition parallel computing signal statistics machine learning pcd ml pengolahan citra menggunakan in is optimised for operating on matrices are many useful built functions the very easy write your own loading displaying i imread mandrill bmp load format as string matrix with filename data display whos name size bytes class xx uint array grand total elements can only dimensions red perform arithmetic left half green blue intensity operations double information ekstraksi color channel membaca dan isi variabel gambar lena jpg memproses per menampilkan imshow konversi rgb ke gray rgbgray conventional...

no reviews yet
Please Login to review.