add an slider to get value for activecontour
Show older comments
% Display segmented image
BWsIbf = activecontour(ImCh1,BWCh1, 400, 'edge');
% FinalImwithMask=imfuse(BWsIbf,ImCh1);
% imshow(FinalImwithMask);
% figure, imshow(ImCh1);
%title('Segmented Image');
[B,L] = bwboundaries(BWsIbf,'noholes');
imshow(ImCh1,[]);%label2rgb(L, @jet, [.5 .5 .5]))
hold on
for k = 1:length(B)
boundary = B{k};
plot(boundary(:,2), boundary(:,1), 'r', 'LineWidth', 2);
end
7 Comments
Santhana Raj
on 30 Mar 2017
Is there a question there somewhere??
KSSV
on 30 Mar 2017
@ Santhana Raj the user want's to add an slider to get value for activecontour. So he is asking us to include it in his code I suppose.
Peyman Obeidy
on 30 Mar 2017
Peyman Obeidy
on 30 Mar 2017
Adam
on 30 Mar 2017
sliders have floating point values when you drag them. You can just use
round( val )
to make it integer.
Peyman Obeidy
on 30 Mar 2017
Edited: Peyman Obeidy
on 30 Mar 2017
Peyman Obeidy
on 30 Mar 2017
Answers (1)
Peyman Obeidy
on 5 Apr 2017
0 votes
Categories
Find more on Image Arithmetic in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!