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.

 採用された回答

Image Analyst
Image Analyst 2019 年 3 月 24 日

1 投票

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().

その他の回答 (0 件)

質問済み:

2019 年 3 月 24 日

コメント済み:

2019 年 3 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by