Invece di usare K- Significa che puoi semplicemente usare color thresholder dato che hai così tante informazioni sul colore. Quindi puoi chiamare la funzione di maschera generata automaticamente chiamata createMask
e successivamente elaborare la tua immagine lì. Il codice è sotto La migliore parte di questo metodo è che createMask
è riutilizzabile per qualsiasi immagine, non solo la tua!
% Read Image
I = imread('r8ATB.jpg');
figure; imshow(I);
% Crop Image
C = I(75:490,40:460,:);
figure; imshow(C);
% Plot Noisy Mask
[BW,MK] = createMask(C);
figure; imshow(BW);
figure; imshow(BW);
% Fix Holes
imopen(...);
Questa è l'immagine originale.
Immagine potata
finestra soglia Start.
Soglia Parametri
maschera creata
Immagine finale
La funzione createMask.m generata automaticamente utilizzando il mio parametro è la seguente.
function [BW,maskedRGBImage] = createMask(RGB)
%createMask Threshold RGB image using auto-generated code from colorThresholder app.
% [BW,MASKEDRGBIMAGE] = createMask(RGB) thresholds image RGB using
% auto-generated code from the colorThresholder App. The colorspace and
% minimum/maximum values for each channel of the colorspace were set in the
% App and result in a binary mask BW and a composite image maskedRGBImage,
% which shows the original RGB image values under the mask BW.
% Auto-generated by colorThresholder app on 23-Apr-2015
%------------------------------------------------------
% Convert RGB image to chosen color space
I = rgb2hsv(RGB);
% Define thresholds for channel 1 based on histogram settings
channel1Min = 0.983;
channel1Max = 0.167;
% Define thresholds for channel 2 based on histogram settings
channel2Min = 0.205;
channel2Max = 1.000;
% Define thresholds for channel 3 based on histogram settings
channel3Min = 0.341;
channel3Max = 1.000;
% Create mask based on chosen histogram thresholds
BW = ((I(:,:,1) >= channel1Min) | (I(:,:,1) <= channel1Max)) & ...
(I(:,:,2) >= channel2Min) & (I(:,:,2) <= channel2Max) & ...
(I(:,:,3) >= channel3Min) & (I(:,:,3) <= channel3Max);
% Invert mask
BW = ~BW;
% Initialize output masked image based on input image.
maskedRGBImage = RGB;
% Set background pixels where BW is false to zero.
maskedRGBImage(repmat(~BW,[1 1 3])) = 0;
Si può quindi procedere ad utilizzare imopen e imclose per ripulire la maschera. Quindi applicalo all'immagine. Il mio metodo richiede la messa a punto per renderlo perfetto secondo qualsiasi metodo, ma ti darà risultati coerenti.
Per ottenere il complemento della tua immagine, tutto ciò che devi fare è invertire la maschera e applicarla.
Provare a dilatare l'immagine e a ridurla. Questo è un approccio molto comune, dai un'occhiata a –
Puoi evidenziare quali parti vuoi effettivamente conservare? Non è chiaro per me. grazie –
@ Benoit_11 Aggiornato. – TechnoSam