[MATLAB] Imfreehand Roi Image[MATLAB] Imfreehand Roi Image
imfreehand를 이용하여 ROI 영역만 자르기. 1 2 3 4 5 6 7 8 9 10 11 I = rgb2gray(imread(‘nYNKB.jpg’)); imshow(I); h = imfreehand; M = ~h.createMask(); I(M)=0; imshow(I); cs
imfreehand를 이용하여 ROI 영역만 자르기. 1 2 3 4 5 6 7 8 9 10 11 I = rgb2gray(imread(‘nYNKB.jpg’)); imshow(I); h = imfreehand; M = ~h.createMask(); I(M)=0; imshow(I); cs
가끔 Figure에 이미지 혹은 Plot 데이터를 서로 다른 Colormap 을이용하여 분석할때 유용한 Coloramp 사용 방법이다. z=5*sin(x).*cos(y); ax1=subplot(2,2,1); mesh(x,y,z) colormap(ax1,parula) title('Default colormap(parula)') ax2=subplot(2,2,2); mesh(x,y,z) colormap(ax2,jet) title('Colormap(jet)') ax3=subplot(2,2,3); colormap(ax3,bone) mesh(x,y,z) title('Colormap(bone)') ax4=subplot(2,2,4);
다른 개발 툴 환경에서는 Dakrular 버전이나 다른 테마적용이 기본적으로 제공이 되며 적용이 쉬운편이다. 하지만 아무리 해도 매트랩환경은 익숙해지지 않아 눈이라도 편하기위해 테마적용하는법을 공유하고자 한다. https://github.com/scottclowe/matlab-schemerscottclowe/matlab-schemerApply and save color schemes in
Kaggle에서 데이터셋을 다운받고 결과를 제출은 Kernerls에서 제출한다. Kernerls에서는 Select new notebook Setting Kernels 생성 데이터셋 컴파일 테스트 결과 – Host의 데이터셋을 기본경로로 설정되어 있기 때문에 Host의 데이터셋과 잘 연동되어 있는지
[Kaggle] You must resolve errors before creating your dataset Kaggle에서 Dataset을 업로드할때 다음과 같은 에러가 일어난다. 하지만, 이경우 https://www.kaggle.com/product-feedback/84968You must resolve errors before creating your dataset | Data Science and Machine