<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
Dear IGSTK&nbsp;users:<BR>
&nbsp;<BR>
I have installed and&nbsp;run needlebiopsy.exe, working successfully&nbsp;with Aurora. In the GUI, there is only 3D view of CT sections in the lower right pannel. I would like to build a <FONT style="FONT-SIZE: 12pt" size=3><STRONG>3D model </STRONG><FONT size=2>of the organs in the system. So my question is:</FONT></FONT><BR>
&nbsp;<BR>
Could you tell me the workflow of building 3D models of the organ from CT scan and integrated with NDI tracking system, based needlebiopsy source code?<BR>
&nbsp;<BR>
Thank you and best regards<BR>
&nbsp;<BR>
Kai Yang<BR>
<BR>&nbsp; <BR>&gt; From: igstk-users-request@public.kitware.com<BR>&gt; Subject: IGSTK-Users Digest, Vol 38, Issue 2<BR>&gt; To: igstk-users@public.kitware.com<BR>&gt; Date: Sat, 8 Aug 2009 12:00:05 -0400<BR>&gt; <BR>&gt; Send IGSTK-Users mailing list submissions to<BR>&gt; igstk-users@public.kitware.com<BR>&gt; <BR>&gt; To subscribe or unsubscribe via the World Wide Web, visit<BR>&gt; http://public.kitware.com/cgi-bin/mailman/listinfo/igstk-users<BR>&gt; or, via email, send a message with subject or body 'help' to<BR>&gt; igstk-users-request@public.kitware.com<BR>&gt; <BR>&gt; You can reach the person managing the list at<BR>&gt; igstk-users-owner@public.kitware.com<BR>&gt; <BR>&gt; When replying, please edit your Subject line so it is more specific<BR>&gt; than "Re: Contents of IGSTK-Users digest..."<BR>&gt; <BR>&gt; <BR>&gt; Today's Topics:<BR>&gt; <BR>&gt; 1. IGSTK-4.2 Debug w/ OpenCV (Daly, Mike)<BR>&gt; 2. Re: IGSTK-4.2 Debug w/ OpenCV (Patrick Cheng)<BR>&gt; 3. Re: IGSTK-4.2 Debug w/ OpenCV (Patrick Cheng)<BR>&gt; <BR>&gt; <BR>&gt; ----------------------------------------------------------------------<BR>&gt; <BR>&gt; Message: 1<BR>&gt; Date: Fri, 7 Aug 2009 13:20:03 -0400<BR>&gt; From: "Daly, Mike" &lt;Mike.Daly@rmp.uhn.on.ca&gt;<BR>&gt; Subject: [IGSTK-Users] IGSTK-4.2 Debug w/ OpenCV<BR>&gt; To: &lt;igstk-users@public.kitware.com&gt;<BR>&gt; Message-ID:<BR>&gt; &lt;EF2641E33162A443B6A43CDBCD160A80037D65@rmpmail01.rmpuhn.ca&gt;<BR>&gt; Content-Type: text/plain; charset="iso-8859-1"<BR>&gt; <BR>&gt; IGSTK users,<BR>&gt; <BR>&gt; I'm building IGSTK-4.2 with USE_OpenCV and USE_VideoImager CMake options ON, using the OpenCV May-08-2009 snapshot provided on the Wiki. I can successfully build and run in Release mode, but in Debug mode I encounter the following linker error for many of the example applications (e.g., VideoFrameGrabberAndViewerWebcamWin, NeedleBiopsy):<BR>&gt; <BR>&gt; LINK : fatal error LNK1104: cannot open file 'cxcore110.lib'<BR>&gt; <BR>&gt; Has anyone run IGSTK-4.2 in Debug mode using OpenCV? Note that OpenCV denotes Debug libraries with an extra d (e.g., cxcore110d.lib) under the lib\debug folder, so I'm not sure if it is looking for the wrong file somehow. I have the OpenCV lib\ folders in my path. Any help is appreciated. <BR>&gt; <BR>&gt; Also, does anyone know if you can build OpenCV using static libraries, since requiring .dlls sometimes gets annoying when distributing an .exe?<BR>&gt; <BR>&gt; Thanks,<BR>&gt; Mike Daly<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; This e-mail may contain confidential and/or privileged information for the sole use of the intended recipient. <BR>&gt; Any review or distribution by anyone other than the person for whom it was originally intended is strictly prohibited. <BR>&gt; If you have received this e-mail in error, please contact the sender and delete all copies. <BR>&gt; Opinions, conclusions or other information contained in this e-mail may not be that of the organization.<BR>&gt; -------------- next part --------------<BR>&gt; An HTML attachment was scrubbed...<BR>&gt; URL: &lt;http://public.kitware.com/pipermail/igstk-users/attachments/20090807/6a218bd5/attachment.html&gt;<BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 2<BR>&gt; Date: Fri, 07 Aug 2009 14:06:01 -0400<BR>&gt; From: Patrick Cheng &lt;cheng@isis.georgetown.edu&gt;<BR>&gt; Subject: Re: [IGSTK-Users] IGSTK-4.2 Debug w/ OpenCV<BR>&gt; To: "Daly, Mike" &lt;Mike.Daly@rmp.uhn.on.ca&gt;<BR>&gt; Cc: igstk-users@public.kitware.com<BR>&gt; Message-ID: &lt;4A7C6D09.5040906@isis.georgetown.edu&gt;<BR>&gt; Content-Type: text/plain; charset=ISO-8859-1; format=flowed<BR>&gt; <BR>&gt; Hi Mike,<BR>&gt; <BR>&gt; There is some problem with the OpenCV library on the wiki. I haven't got <BR>&gt; time to investigate it.<BR>&gt; <BR>&gt; Supposedly, cmake will handle the linking of library files <BR>&gt; automatically. when you build under debug, it will link to <BR>&gt; "cxcore110d.lib" Somehow, that link is broken here.<BR>&gt; <BR>&gt; As a temporary fix, you can change the line 396 of <BR>&gt; IGSTK\Source\CMakeLists.txt to<BR>&gt; <BR>&gt; SET(EXTRA_LIBS ${EXTRA_LIBS} cxcore110d cv110d highgui110d)<BR>&gt; <BR>&gt; This will work under debug, but not release mode.<BR>&gt; <BR>&gt; I will look into this problem further.<BR>&gt; <BR>&gt; Patrick<BR>&gt; <BR>&gt; Daly, Mike wrote:<BR>&gt; &gt; IGSTK users,<BR>&gt; &gt; <BR>&gt; &gt; I'm building IGSTK-4.2 with USE_OpenCV and USE_VideoImager CMake options <BR>&gt; &gt; ON, using the OpenCV May-08-2009 snapshot provided on the Wiki. I can <BR>&gt; &gt; successfully build and run in Release mode, but in Debug mode I <BR>&gt; &gt; encounter the following linker error for many of the example <BR>&gt; &gt; applications (e.g., VideoFrameGrabberAndViewerWebcamWin, NeedleBiopsy):<BR>&gt; &gt; <BR>&gt; &gt; LINK : fatal error LNK1104: cannot open file 'cxcore110.lib'<BR>&gt; &gt; <BR>&gt; &gt; Has anyone run IGSTK-4.2 in Debug mode using OpenCV? Note that OpenCV <BR>&gt; &gt; denotes Debug libraries with an extra d (e.g., cxcore110d.lib) under the <BR>&gt; &gt; lib\debug folder, so I'm not sure if it is looking for the wrong file <BR>&gt; &gt; somehow. I have the OpenCV lib\ folders in my path. Any help is <BR>&gt; &gt; appreciated.<BR>&gt; &gt; <BR>&gt; &gt; Also, does anyone know if you can build OpenCV using static libraries, <BR>&gt; &gt; since requiring .dlls sometimes gets annoying when distributing an .exe?<BR>&gt; &gt; <BR>&gt; &gt; Thanks,<BR>&gt; &gt; Mike Daly<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; This e-mail may contain confidential and/or privileged information for the sole use of the intended recipient. <BR>&gt; &gt; Any review or distribution by anyone other than the person for whom it was originally intended is strictly prohibited. <BR>&gt; &gt; If you have received this e-mail in error, please contact the sender and delete all copies. <BR>&gt; &gt; Opinions, conclusions or other information contained in this e-mail may not be that of the organization.<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; &gt; ------------------------------------------------------------------------<BR>&gt; &gt; <BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; Powered by www.kitware.com<BR>&gt; &gt; <BR>&gt; &gt; Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html<BR>&gt; &gt; <BR>&gt; &gt; Follow this link to subscribe/unsubscribe:<BR>&gt; &gt; http://public.kitware.com/cgi-bin/mailman/listinfo/igstk-users<BR>&gt; <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; Message: 3<BR>&gt; Date: Fri, 07 Aug 2009 15:20:36 -0400<BR>&gt; From: Patrick Cheng &lt;cheng@isis.georgetown.edu&gt;<BR>&gt; Subject: Re: [IGSTK-Users] IGSTK-4.2 Debug w/ OpenCV<BR>&gt; To: "Daly, Mike" &lt;Mike.Daly@rmp.uhn.on.ca&gt;<BR>&gt; Cc: igstk-users@public.kitware.com<BR>&gt; Message-ID: &lt;4A7C7E84.3050500@isis.georgetown.edu&gt;<BR>&gt; Content-Type: text/plain; charset=ISO-8859-1; format=flowed<BR>&gt; <BR>&gt; Hi Mike,<BR>&gt; <BR>&gt; It has been fixed now.<BR>&gt; <BR>&gt; The correct solution should be:<BR>&gt; http://public.kitware.com/cgi-bin/viewcvs.cgi/Source/CMakeLists.txt?root=IGSTK&amp;r1=1.49&amp;r2=1.50&amp;sortby=date<BR>&gt; <BR>&gt; Please check out the latest cvs version of IGSTK to get this fix.<BR>&gt; <BR>&gt; Thank you for reporting the bug.<BR>&gt; <BR>&gt; Patrick<BR>&gt; <BR>&gt; Patrick Cheng wrote:<BR>&gt; &gt; Hi Mike,<BR>&gt; &gt; <BR>&gt; &gt; There is some problem with the OpenCV library on the wiki. I haven't got <BR>&gt; &gt; time to investigate it.<BR>&gt; &gt; <BR>&gt; &gt; Supposedly, cmake will handle the linking of library files <BR>&gt; &gt; automatically. when you build under debug, it will link to <BR>&gt; &gt; "cxcore110d.lib" Somehow, that link is broken here.<BR>&gt; &gt; <BR>&gt; &gt; As a temporary fix, you can change the line 396 of <BR>&gt; &gt; IGSTK\Source\CMakeLists.txt to<BR>&gt; &gt; <BR>&gt; &gt; SET(EXTRA_LIBS ${EXTRA_LIBS} cxcore110d cv110d highgui110d)<BR>&gt; &gt; <BR>&gt; &gt; This will work under debug, but not release mode.<BR>&gt; &gt; <BR>&gt; &gt; I will look into this problem further.<BR>&gt; &gt; <BR>&gt; &gt; Patrick<BR>&gt; &gt; <BR>&gt; &gt; Daly, Mike wrote:<BR>&gt; &gt;&gt; IGSTK users,<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; I'm building IGSTK-4.2 with USE_OpenCV and USE_VideoImager CMake <BR>&gt; &gt;&gt; options ON, using the OpenCV May-08-2009 snapshot provided on the <BR>&gt; &gt;&gt; Wiki. I can successfully build and run in Release mode, but in Debug <BR>&gt; &gt;&gt; mode I encounter the following linker error for many of the example <BR>&gt; &gt;&gt; applications (e.g., VideoFrameGrabberAndViewerWebcamWin, NeedleBiopsy):<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; LINK : fatal error LNK1104: cannot open file 'cxcore110.lib'<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Has anyone run IGSTK-4.2 in Debug mode using OpenCV? Note that OpenCV <BR>&gt; &gt;&gt; denotes Debug libraries with an extra d (e.g., cxcore110d.lib) under <BR>&gt; &gt;&gt; the lib\debug folder, so I'm not sure if it is looking for the wrong <BR>&gt; &gt;&gt; file somehow. I have the OpenCV lib\ folders in my path. Any help is <BR>&gt; &gt;&gt; appreciated.<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Also, does anyone know if you can build OpenCV using static libraries, <BR>&gt; &gt;&gt; since requiring .dlls sometimes gets annoying when distributing an .exe?<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Thanks,<BR>&gt; &gt;&gt; Mike Daly<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; This e-mail may contain confidential and/or privileged information for <BR>&gt; &gt;&gt; the sole use of the intended recipient. Any review or distribution by <BR>&gt; &gt;&gt; anyone other than the person for whom it was originally intended is <BR>&gt; &gt;&gt; strictly prohibited. If you have received this e-mail in error, please <BR>&gt; &gt;&gt; contact the sender and delete all copies. Opinions, conclusions or <BR>&gt; &gt;&gt; other information contained in this e-mail may not be that of the <BR>&gt; &gt;&gt; organization.<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; ------------------------------------------------------------------------<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; _______________________________________________<BR>&gt; &gt;&gt; Powered by www.kitware.com<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Visit other Kitware open-source projects at <BR>&gt; &gt;&gt; http://www.kitware.com/opensource/opensource.html<BR>&gt; &gt;&gt;<BR>&gt; &gt;&gt; Follow this link to subscribe/unsubscribe:<BR>&gt; &gt;&gt; http://public.kitware.com/cgi-bin/mailman/listinfo/igstk-users<BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; Powered by www.kitware.com<BR>&gt; &gt; <BR>&gt; &gt; Visit other Kitware open-source projects at <BR>&gt; &gt; http://www.kitware.com/opensource/opensource.html<BR>&gt; &gt; <BR>&gt; &gt; Follow this link to subscribe/unsubscribe:<BR>&gt; &gt; http://public.kitware.com/cgi-bin/mailman/listinfo/igstk-users<BR>&gt; &gt; <BR>&gt; &gt; <BR>&gt; <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; _______________________________________________<BR>&gt; IGSTK-Users mailing list<BR>&gt; IGSTK-Users@public.kitware.com<BR>&gt; http://public.kitware.com/cgi-bin/mailman/listinfo/igstk-users<BR>&gt; <BR>&gt; End of IGSTK-Users Digest, Vol 38, Issue 2<BR>&gt; ******************************************<BR><br /><hr />Buddy is 10! Create a comic strip of your ultimate party and win $1,000!  <a href='http://discover.windowslive.com/en-sg/messenger/messengeris10/' target='_new'>Click here</a></body>
</html>