K-Nearest Neighbors for image segmentation

버전 1.3.0.0 (1.13 KB) 작성자: Makrim
Implementation of the algorithm K-Nearest Neighbors.
다운로드 수: 1.8K
업데이트 날짜: 2014/4/22

라이선스 보기

Script Exemple :
-------------
% k of k-nearest neighbors
k = 3 ;
% generate a test image data , a matrix of 3 by 3, values are doubles that
% range from 10 to 20
im_test_data = [10 20 30; 20 10 30; 20 10 30];

% generate a training/apprentissage data image from test data image
im_tr_data = [10 0 30;0 10 0; 20 0 30];

% generate a truth image labels with 3 by 3 matrix, values are integers
% that range from 1 to 3 (10 correspond to label 1, 20 to 2 and 30 to 3)
im_t_lbls = [1 2 3; 2 1 3; 2 1 3];

% generate a training/apprentissage image labels from truth image labels
im_tr_lbls = [1 0 3;0 1 0; 2 0 3];

% we are looking for "test_lbls" ?
test_lbls = knnAlgo(im_test_data, im_tr_data,im_tr_lbls,k);

인용 양식

Makrim (2024). K-Nearest Neighbors for image segmentation (https://www.mathworks.com/matlabcentral/fileexchange/46117-k-nearest-neighbors-for-image-segmentation), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2009b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.3.0.0

update

1.2.0.0

improved the description

1.1.0.0

problem solved of frequency when there is unique knn

1.0.0.0