Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
NCTM or The Math Forum.
|
|
Math Forum
»
Discussions
»
Software
»
comp.soft-sys.matlab
Notice: We are no longer accepting new posts, but the forums will continue to be readable.
Topic:
Calculating convex hull using convhull command.
Replies:
2
Last Post:
Jun 10, 2014 6:38 PM
|
 |
|
|
Re: Calculating convex hull using convhull command.
Posted:
Jun 10, 2014 5:35 AM
|
|
> X=find(gCanny>0); > k=convhull(X);
Try [X Y] = find(gCanny>0); k=convhull(X(:),Y(:));
% Bruno
|
|
|
|