1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | clear clc A = imread('peppers.png'); figure, imshow(A); hROI = imfreehand(gca); Position = getPosition(hROI); BW = createMask(hROI); figure; subplot(1,2,1) imshow(A); subplot(1,2,2); imshow(BW); ※ imshow(BW,'Parent',handles.axes1); | cs |
※ imshow(BW,'Parent',handles.axes1);
- GUI AXES에 이미지를 넣을경우
- StackoverFlow
=
'Programming > MATLAB' 카테고리의 다른 글
[MATLAB] Imfreehand Roi Image (0) | 2019.03.12 |
---|---|
[MATLAB] Matlab Figure을 이용한 Zoom기능 (0) | 2019.02.20 |
[MATlLAB] GUI환경에서 변수 저장하기 - assignin (0) | 2018.04.26 |
[MATLAB] Figure Window Name 바꾸기 (0) | 2018.03.23 |
[MATLAB] MATLAB 코드 단축키 (0) | 2018.03.13 |