Debugger Visualizer: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
==What is it== | == What is it == | ||
According to [http://msdn.microsoft.com/en-us/library/zayyhzts.aspx MSDN] | According to [http://msdn.microsoft.com/en-us/library/zayyhzts.aspx MSDN] | ||
Line 6: | Line 6: | ||
[[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. | [[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== | == How to Install == | ||
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 <code>C:\Program Files\Microsoft Visual Studio 9.0\Common7\Packages\Debugger\Visualizers</code> | * 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. | ||
== Using Debugger Visualizer == | |||
[[image:DebuggerVisualizerMatrix1.png |center|Debugger Visualizer for Matrix]] |
Revision as of 21:19, 7 July 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.
Using Debugger Visualizer
