Problem 852. Index of neighbor pixel with steepest gradient
Unlike in various applications, where the gradient of a two dimensional matrix is calculated in x and y direction, the gradient of a digital elevation model (DEM) is usually returned as the steepest gradient. The steepest gradient is the largest downward slope of a pixel to one of its eight neighbors.
In this problem, your task will be to return the linear index of the steepest neighbor for each pixel in a gridded DEM. Pixels that don't have downward neighbors should receive the index value zero.
An example should help. The DEM is
dem = [1 5 9; ...
4 5 6; ...
8 7 3];
The result should be
IX = [0 1 4; ...
1 1 9; ...
2 9 0];
The results may not be unique, but the test cases have been built so that this is not a problem. The spatial resolution of the dem is dx=1 and dy=1. Note that the diagonal distance is hypot(dx,dy).
Solution Stats
Problem Comments
-
5 Comments
Show
2 older comments
Jean-Marie Sainthillier
on 19 Aug 2014
More difficult thant expected...
Rafael S.T. Vieira
on 8 Jun 2020
Pay attention. The problem is asking for the index and not the value of the steepest gradient. And gradients on diagonals directions must be divided by sqrt(2).
Dyuman Joshi
on 22 Dec 2022
Test cases have been added and solutions have been rescored.
Solution Comments
Show commentsProblem Recent Solvers25
Suggested Problems
-
6563 Solvers
-
1219 Solvers
-
Make a run-length companion vector
644 Solvers
-
9022 Solvers
-
I've got the power! (Inspired by Project Euler problem 29)
128 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!