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