Debugger Visualizer: Difference between revisions

From EMGU
Jump to navigation Jump to search
New page: ==What is it== According to [http://msdn.microsoft.com/en-us/library/zayyhzts.aspx MSDN] : ''Visualizers are a new component of the Visual Studio debugger user interface. A visualizer cre...
 
Line 9: Line 9:
Download the [[Emgu CV]] binary (ver >= 2.0).  
Download the [[Emgu CV]] binary (ver >= 2.0).  
* For Visual Studio 2005, copy all the .dll files to <code>C:\Program Files\Microsoft Visual Studio 8\Common7\Packages\Debugger\Visualizers</code>
* For Visual Studio 2005, copy all the .dll files to <code>C:\Program Files\Microsoft Visual Studio 8\Common7\Packages\Debugger\Visualizers</code>
* For Visual Studio 2008, copy all the .dll files to ... (To Be Updated)
* For Visual Studio 2008, copy all the .dll files to <code>C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers</code>
That's it.
That's it.

Revision as of 02:42, 12 May 2009

What is it

According to MSDN

Visualizers are a new component of the Visual Studio debugger user interface. A visualizer creates a dialog box or other interface to displays a variable or object in a meaningful way that is appropriate to its data type.

Emgu CV ver >= 2.0 comes with a debugger visualizer for Visual Studio 2005 / 2008 to help you quickly debug your Image Processing application. The visualizer can be used to inspect Image and Matrix class during debug.

How to Install

Download the Emgu CV binary (ver >= 2.0).

  • For Visual Studio 2005, copy all the .dll files to C:\Program Files\Microsoft Visual Studio 8\Common7\Packages\Debugger\Visualizers
  • For Visual Studio 2008, copy all the .dll files to C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers

That's it.