Mihai Sprinceana
Un forum de programare cu de toate. Va astept sa va inscrieti si sa deveniti moderatori. Oricine este binevenit aici sa se inscrie si sa aiba acces la informatie free! Fiecare este liber sa adauge proiecte programe free etc. Ajutati acest forum sa devina o comunitate puternica unde fiecare invata de la fiecare! Tot ce trebuie sa faceti este sa va inregistrati si fiecare contributie se poate dovedi utila in timp! Forumul este free informatia free dk aveti timp liber ajutati si pe ceilalti si invatati si voi in acelasi timp! Haideti sa facem ceva pt.a ne ajuta intre noi!
Cititi regulament postare forum inainte de a posta!
|
Lista Forumurilor Pe Tematici
|
Mihai Sprinceana | Inregistrare | Login
POZE MIHAI SPRINCEANA
Nu sunteti logat.
|
Nou pe simpatie: Ioana Deea
| Femeie 24 ani Prahova cauta Barbat 24 - 49 ani |
|
mihaispr
Administrator
Inregistrat: acum 17 ani
Postari: 2142
|
|
Fie o imagine colorata. Imaginea are 2 culori negru si maro. Vrem sa gasim doar muchiile pentru culoarea maro.
clc; close all; workspace; rgbImage = uint8(zeros([200 200 3])); rgbImage(60:120, 60:120, 1) = 150; rgbImage(60:120, 60:120, 2) = 80; subplot(3,1,1); imshow(rgbImage); title('Original image.'); % Find brown. Since the only other color is black [0, 0, 0], % brown will be anyplace that is non-zero. % But for generality, let's look for red between 120 and 180 % and for green between 50 and 100. inRedRange = rgbImage(:,:, 1) > 120 & rgbImage(:,:, 1) < 180; inGreenRange = rgbImage(:,:, 2) > 50 & rgbImage(:,:, 2) < 100; % AND them together to find where they're both true. binaryImage = inRedRange & inGreenRange; subplot(3,1, 2); imshow(binaryImage, []); title('Thresholded image.'); % Now find the boundaries [boundaries, labeledImage] = bwboundaries(binaryImage,'noholes'); % Display them over the original image. subplot(3,1, 3); imshow(rgbImage); hold on; % Don't let plot() blow away our image. title('Original image with boundaries.'); for k = 1:length(boundaries) thisBoundary = boundaries{k}; plot(thisBoundary(:,2), thisBoundary(:,1), 'w', 'LineWidth', 2) end % Maximize window. set(gcf, 'Position', get(0, 'ScreenSize')); % Maximize figure.
|
|
pus acum 15 ani |
|