How to estimate depth from gradient?

Hello,
I have a gradient of an image:
mask = fspecial('sobel');
mask2 = mask';
dX = imfilter(image, mask);
dY = imfilter(image, mask2);
And I want to estimate depth from the gradient, any thoughts on how to do so?
Thanks in advance!

3 件のコメント

David Young
David Young 2014 年 11 月 3 日
Why do you think that might be possible?
Image Analyst
Image Analyst 2014 年 11 月 3 日
Don't call your image variable "image" - that is the name of a built-in function that you shouldn't destroy/override. What do the "intensity" values of your image represent? A distance, like it's a topographic, profilometry, or Kinect image?
Talya
Talya 2014 年 11 月 4 日
編集済み: Talya 2014 年 11 月 4 日
Thank you for the advice on image variable.
Yes the image intensity values represent a distance.

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

回答 (1 件)

Sean de Wolski
Sean de Wolski 2014 年 11 月 4 日

0 投票

If your pixels represent depth (i.e. change in a third dimension), then integrating the gradient should give you height. This means you'll need to know the height at one location.

カテゴリ

質問済み:

2014 年 11 月 3 日

回答済み:

2014 年 11 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by