Image processing structural Tensor Equation

CAn anyone pls help me, How to calculate structural tensor matrix H for a given RGB image. Herewith i had attatche the equation.

 Akzeptierte Antwort

Image Analyst
Image Analyst am 24 Mär. 2019

1 Stimme

Try this to get the individual color channels:
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
then use imgradientxy().

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by