How to get the first derivative of pixels along of line?

6 ビュー (過去 30 日間)
BA
BA 2022 年 8 月 11 日
コメント済み: BA 2022 年 8 月 12 日
#Here's my code
#it works for one frame when I did 'plot(diff(test))' but I need a way to implement it to the whole images
imshow(M(:,:,1))
[x ,y]= ginput(2);
dif = zeros(size(M,3),1);
for i = 1:size(M,3)
I = M(:,:,i);
n = ceil(norm([diff(x), diff(y)]));
test = improfile(I,linspace(x(1), x(2),n), linspace(y(1), y(2),n));
end
dif(i) = diff(test);
  5 件のコメント
Rik
Rik 2022 年 8 月 12 日
Why did you flag your question as unclear? The only person who can clarify your question is you. Why don't you do so?
And why did you change your user name?
BA
BA 2022 年 8 月 12 日
@RikI'd like to do some attempts and then reframe the question.

サインインしてコメントする。

回答 (1 件)

KSSV
KSSV 2022 年 8 月 12 日
REad about gradient

Community Treasure Hunt

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

Start Hunting!

Translated by