Hue value of a specific pixel
Mostrar comentarios más antiguos
I have a segmented image I, I have used labeling to find the segmented objects, and using region props function I have extracted the centroid pixel value.
My question is:
Is there a way to find the hue value of this specific pixel value in my case the centroid ?
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 4 de Nov. de 2017
Why not just get the mean hue of the whole thing?
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
clear; % Erase all existing variables. Or clearvars if you want.
workspace; % Make sure the workspace panel is showing.
format long g;
format compact;
fontSize = 25;
%===============================================================================
% Get the name of the image the user wants to use.
baseFileName = 'IMG_7379_2.jpg';
% Get the full filename, with path prepended.
folder = pwd
fullFileName = fullfile(folder, baseFileName);
% Check if file exists.
if ~exist(fullFileName, 'file')
% The file doesn't exist -- didn't find it there in that folder.
% Check the entire search path (other folders) for the file by stripping off the folder.
fullFileNameOnSearchPath = baseFileName; % No path this time.
if ~exist(fullFileNameOnSearchPath, 'file')
% Still didn't find it. Alert user.
errorMessage = sprintf('Error: %s does not exist in the search path folders.', fullFileName);
uiwait(warndlg(errorMessage));
return;
end
end
%===============================================================================
% Read in demo image.
rgbImage = imread(fullFileName);
% Get the dimensions of the image.
[rows, columns, numberOfColorChannels] = size(rgbImage);
% Display the original image.
subplot(1, 2, 1);
imshow(rgbImage, []);
axis on;
caption = sprintf('Original Color Image, %s', baseFileName);
title(caption, 'FontSize', fontSize, 'Interpreter', 'None');
hp = impixelinfo();
% Set up figure properties:
% Enlarge figure to full screen.
set(gcf, 'Units', 'Normalized', 'OuterPosition', [0 0.05 1 0.95]);
% Get rid of tool bar and pulldown menus that are along top of figure.
% set(gcf, 'Toolbar', 'none', 'Menu', 'none');
% Give a name to the title bar.
set(gcf, 'Name', 'Demo by ImageAnalyst', 'NumberTitle', 'Off')
drawnow;
hp = impixelinfo(); % Set up status line to see values when you mouse over the image.
% Create the region of interest (ROI)
Igray = rgb2gray(rgbImage);
binaryImage = ~imbinarize(Igray);
% Take largest 2 blobs only
binaryImage = bwareafilt(binaryImage, 2);
% Fill them to get rid of noise.
binaryImage = imfill(binaryImage, 'holes');
% Display the mask image.
subplot(1, 2, 2);
imshow(binaryImage, []);
axis on;
caption = sprintf('Binary Image');
title(caption, 'FontSize', fontSize, 'Interpreter', 'None');
hp = impixelinfo();
drawnow;
% Convert rgb to hsv
hsvImage = rgb2hsv(rgbImage);
hueImage = hsvImage(:, :, 1);
% Compute the mean hue within the mask:
meanHue = mean(hueImage(binaryImage))
message = sprintf('The mean hue angle is %f', meanHue);
uiwait(helpdlg(message));
% Measure properties of the blobs.
% props = regionprops(binaryImage, 'Centroid');
5 comentarios
Tasneem Al-Tmimi
el 5 de Nov. de 2017
Tasneem Al-Tmimi
el 5 de Nov. de 2017
Image Analyst
el 5 de Nov. de 2017
Editada: Image Analyst
el 5 de Nov. de 2017
I don't know what you're doing with f. What's the point of that? If you just want to round to two decimal places, use round(number, 2)..
Red is a tricky color to get the mean hue of because the hue values are like less than 0.1 and more than 0.9. So if you want the mean accurately, you'd have to convert the hues to the range -0.5 to +0.5. by subtracting 0.5 from it. For example if you have a red pixel with hue 0.2 and a purplish pixel with value 0.9, then mean would be 0.55, which is green. But if you subtracted 0.5, then you'd average -0.3 and +0.4 to get a mean of 0.05, which is red. Honestly, you'd be better off computing the mean in LAB color space, then taking the chroma value = sqrt(a^2+b^2).
I don't know why you want the hue only at the centroid. That is so variable as to make it a worthless measurement. I suggested you to use the mean hue of the entire object, but you ignored that and went back to the hue of a single point, which can vary widely depending on how the object was positioned.
Tasneem Al-Tmimi
el 6 de Nov. de 2017
Editada: Tasneem Al-Tmimi
el 6 de Nov. de 2017
Image Analyst
el 6 de Nov. de 2017
No, the square root of a squared and b squared, like I said. LAB color space should work for any color.
Categorías
Más información sobre Display 2-D Images en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!