Image processing structural Tensor Equation

3 views (last 30 days)
CAn anyone pls help me, How to calculate structural tensor matrix H for a given RGB image. Herewith i had attatche the equation.

Accepted Answer

Image Analyst
Image Analyst on 24 Mar 2019
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().

More Answers (0)

Community Treasure Hunt

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

Start Hunting!