Selasa, 09 April 2013

Mengcrop Gambar


Mengcrop Gambar :
1. Buat "axes" 2 buah.
2. Buat "pushbottom" 3 buah.
3. Pushbottom 1 buat tombol browse file
4. Pushbottom 2 buat tombol Kursor
5. Pushbottom 3 buat tombol crop
6. Axes 1 buat gambar awal.
7. Axes 2 buat hasil cropnya.
8. Ketikkan script :
handles.loc = handles.api.getPosition();
axes(handles.axes1);
S = handles.S;

handles.img_crop = imcrop(S,handles.loc);
axes(handles.axes3);
imshow(handles.img_crop);

% K=handles.img_crop;
% save citra.mat
guidata(hObject, handles);

9. SAve dan Run.



NB :
1. handles.loc = handles.api.getPosition();
axes(handles.axes1);
S = handles.S;
  digunakan untuk mengambil gambar di axes 1.

2. handles.img_crop = imcrop(S,handles.loc);
axes(handles.axes3);
imshow(handles.img_crop);
  digunakan untuk menampilkan hasil cropnya.

Tidak ada komentar:

Posting Komentar