edges colour change in an image
    3 views (last 30 days)
  
       Show older comments
    
Hey I am trying make the edges in an image more thick I am doing a laplacian filtering and i get white edges with black background and add it to my image how do i change the edges to be black?
0 Comments
Accepted Answer
  Sean de Wolski
      
      
 on 11 Mar 2011
         I(edges) = 0; %?
Also look at:
 doc imerode
 doc imdilate
2 Comments
  Walter Roberson
      
      
 on 15 Mar 2011
				for i=1:size(t)
with no () around it.
if t(i)==0
with (i) instead of [i]
t(i)=1
instead of t[i]=1
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

