can anyone help me ....

  • Follow


my project's first module is to perform harris detector for various CT slices i had completed it.. now i hav to stack also those detected 256 slices((on which harris detector was performed)) in a separate folder..
can anyone pls help me
0
Reply Harinee 12/9/2009 1:59:02 PM

"Harinee A.S" <friend.harinee@gmail.com> wrote in message 
news:hfoaf6$o49$1@fred.mathworks.com...
> my project's first module is to perform harris detector for various CT 
> slices i had completed it.. now i hav to stack also those detected 256 
> slices((on which harris detector was performed)) in a separate folder..
> can anyone pls help me

HELP CAT, perhaps?  Or maybe some of the techniques in the Volume 
Visualization section of the documentation will help you?

http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/f5-6010.html

-- 
Steve Lord
slord@mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ 


0
Reply Steven 12/9/2009 2:39:19 PM


"Steven Lord" <slord@mathworks.com> wrote in message <hfocnt$n8s$1@fred.mathworks.com>...
> 
> "Harinee A.S" <friend.harinee@gmail.com> wrote in message 
> news:hfoaf6$o49$1@fred.mathworks.com...
> > my project's first module is to perform harris detector for various CT 
> > slices i had completed it.. now i hav to stack also those detected 256 
> > slices((on which harris detector was performed)) in a separate folder..
> > can anyone pls help me
> 
> HELP CAT, perhaps?  Or maybe some of the techniques in the Volume 
> Visualization section of the documentation will help you?
> 
> http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/f5-6010.html
> 
> -- 
> Steve Lord
> slord@mathworks.com
> comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ 
> can you expain me little clearly
0
Reply Harinee 12/9/2009 2:50:20 PM

"Harinee A.S" <friend.harinee@gmail.com> wrote in message 
news:hfodfc$bu3$1@fred.mathworks.com...
> "Steven Lord" <slord@mathworks.com> wrote in message 
> <hfocnt$n8s$1@fred.mathworks.com>...
>>
>> "Harinee A.S" <friend.harinee@gmail.com> wrote in message
>> news:hfoaf6$o49$1@fred.mathworks.com...
>> > my project's first module is to perform harris detector for various CT
>> > slices i had completed it.. now i hav to stack also those detected 256
>> > slices((on which harris detector was performed)) in a separate folder..
>> > can anyone pls help me
>>
>> HELP CAT, perhaps?  Or maybe some of the techniques in the Volume
>> Visualization section of the documentation will help you?
>>
>> http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/f5-6010.html
>>
>> -- 
>> Steve Lord
>> slord@mathworks.com
>> comp.soft-sys.matlab (CSSM) FAQ: 
>> http://matlabwiki.mathworks.com/MATLAB_FAQ
>> can you expain me little clearly

Execute this command at the prompt:

help cat

and/or read the documentation located at the URL I provided above.

-- 
Steve Lord
slord@mathworks.com
comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ 


0
Reply Steven 12/9/2009 2:54:26 PM

"Steven Lord" <slord@mathworks.com> wrote in message <hfodk9$m8d$1@fred.mathworks.com>...
> 
> "Harinee A.S" <friend.harinee@gmail.com> wrote in message 
> news:hfodfc$bu3$1@fred.mathworks.com...
> > "Steven Lord" <slord@mathworks.com> wrote in message 
> > <hfocnt$n8s$1@fred.mathworks.com>...
> >>
> >> "Harinee A.S" <friend.harinee@gmail.com> wrote in message
> >> news:hfoaf6$o49$1@fred.mathworks.com...
> >> > my project's first module is to perform harris detector for various CT
> >> > slices i had completed it.. now i hav to stack also those detected 256
> >> > slices((on which harris detector was performed)) in a separate folder..
> >> > can anyone pls help me
> >>
> >> HELP CAT, perhaps?  Or maybe some of the techniques in the Volume
> >> Visualization section of the documentation will help you?
> >>
> >> http://www.mathworks.com/access/helpdesk/help/techdoc/visualize/f5-6010.html
> >>
> >> -- 
> >> Steve Lord
> >> slord@mathworks.com
> >> comp.soft-sys.matlab (CSSM) FAQ: 
> >> http://matlabwiki.mathworks.com/MATLAB_FAQ
> >> can you expain me little clearly
> 
> Execute this command at the prompt:
> 
> help cat
> 
> and/or read the documentation located at the URL I provided above.
> 
> -- 
> Steve Lord
> slord@mathworks.com
> comp.soft-sys.matlab (CSSM) FAQ: http://matlabwiki.mathworks.com/MATLAB_FAQ 
> 







this my coding for harris detector. this code reads those  ct slices but performs the harris detector only for the first image . can u help me to solve this problem


for i=1:5
s1=int2str(i);
    s2=strcat('C:\MATLAB7\bin\256slices\',s1);
   s3=strcat(s2,'.tif');
    img=imread(s3);
    img2 = imresize(img,1);
    imshow(img2)
    figure;
    [point, nPoint]  = harris_detector(double(img2),300,5,0.04);
    plot(point(2,:)+4, point(1,:)+4, 'g+');
    hold on;
end ;
hold off;
0
Reply Harinee 12/9/2009 3:10:19 PM

4 Replies
277 Views

(page loaded in 0.028 seconds)

Similiar Articles:













7/26/2012 3:56:16 PM


Reply: