regions of interest on 3D dataset
3 ビュー (過去 30 日間)
古いコメントを表示
All,
I've got some 3D medical data (128x128x128) in a GUI. I'd like to be able to manually draw ROIs on about 25 of the images and use these for segmentation purposes. Firstly, is there a way I could draw the ROIs for each image sequentially, and secondly after all 25 ROIs have been manually drawn, go back and adjust any ROI vertex if necessary?
My current attempt involved using a togglebutton to store the positions of the ROIs while stepping through the dataset while the togglebutton is switched "on" (I used a while loop as I may want ROIs on 23 images, or 28 images, may not always exactly 25) but is failing miserably. This is my callback:
function segmentation_togglebutton_Callback(hObject, eventdata, handles)
flag = get(hObject,'Value'); %this =1 when toggle button is "on"
i = handles.current_im;
last = handles.total_im;
images=handles.images;
while flag==1
imshow(images(:,:,i),[], 'InitialMagnification', 'fit')
h=impoly;
position = wait(h);
contours{i}=position;
i = i+1
if flag==0 %i.e. toggle button is switched "off"
break
end
end
Thanks Jim
0 件のコメント
採用された回答
Sean de Wolski
2012 年 10 月 30 日
編集済み: Sean de Wolski
2012 年 10 月 30 日
The problem is that the Toggle Button Callback does not stop the execution of the loop because the flag is never checked.
What you want to do is have the togglebutton callback throw away 'off' calls and 'enable' 'on' calls but have enabled check on each iteration if it's still on. The English on this isn't very clear I know! so here is the pseudocode
function tglbutton_callback(blha,blah)
if 'off'
return
end
while get(hObject,'value')
%check on each loop iteration if it's on
do_stuff
end
More
Consider this example function:
function example_togglin
hF = figure;
hTb = uitoolbar(hF);
hTg = uitoggletool('oncallback',@cb,'parent',hTb,'cdata',repmat(magic(16)./16^2,[1 1 3]));
function cb(src,evt)
cnt = 0;
while strcmp(get(src,'State'),'on') && cnt<20
cnt = cnt+1;
disp(['I''m on!!! Iteration: ' num2str(cnt)])
pause(0.25);
end
Save this as example_togglin.m and run it.
5 件のコメント
Sean de Wolski
2012 年 10 月 31 日
I supposed you could have the 'offcallback', explicitly grab the handle to the IMPOLY object, which you would need to store, and delete it or do whatever with it.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!