ITK/GDBPretty: Difference between revisions

From KitwarePublic
< ITK
Jump to navigationJump to search
No edit summary
 
(5 intermediate revisions by one other user not shown)
Line 1: Line 1:
== Repositories ==
GDB scripts for debugging ITK or tools based on ITK.  When 'printing' an image object in the debugger, it can, e.g., instantly render and display the image in memory.  A number of text printers also exist that mimic the object->Print( std::cout ) functionality.
 


== Documentation ==
== Documentation ==
Line 8: Line 9:


=== Examples ===
=== Examples ===
* [http://gitorious.org/gdb-pretty/gdb-pretty-libstdcxx/trees/thewtex/examples libstdcxx example]
* [http://gitorious.org/gdb-pretty/gdb-pretty-itk/trees/master/examples itk example]
* [https://github.com/antonin07130/itkCompareProject/tree/master/Testing/Code/GDBPretty/ itkCompareProject example]


=== Screencasts ===
=== Screencasts ===


* [http://www.archive.org/details/VisualDebuggingWithCustomPrettyPrinters Screencast demo]
* [http://www.archive.org/details/VisualDebuggingWithCustomPrettyPrinters Screencast demo]
* [http://www.archive.org/details/icpGui itkCompareProject demo]


== Installation ==
== Installation ==
Line 18: Line 24:
* [[ITK/GDBPretty/Installation/Mac | Mac]]
* [[ITK/GDBPretty/Installation/Mac | Mac]]
* [[ITK/GDBPretty/Installation/Windows | Windows]]
* [[ITK/GDBPretty/Installation/Windows | Windows]]
== Repositories ==
* [http://gitorious.org/~thewtex/gdb-python/archer-thewtex-python Custom GDB]
** There are some changes here until we have time to push them upstream.
* [http://gitorious.org/gdb-pretty/gdb-pretty-libstdcxx gdb-pretty-libstdcxx]
** Pretty printers by Tom Tromey from GDB for GNU implementation of the C++ standard library.
* [http://gitorious.org/gdb-pretty/gdb-pretty-science gdb-pretty-science]
** Pretty printers for "science" -- mostly image viewers at the moment.
* [http://gitorious.org/gdb-pretty/gdb-pretty-itk gdb-pretty-itk]
** Text and image viewer printers for the InsightToolkit.
* [https://github.com/gofigure2/QGoImageCompare QGoImageCompare]
** ITK image viewer pretty printer that synchronizes views over a session.
* [http://gitorious.org/gdb-pretty/gdb-pretty-itk-cmake gdb-pretty-itk-cmake]
** CMake module to register the ITK pretty printers in your project.


{{ITK/Template/Footer}}
{{ITK/Template/Footer}}

Latest revision as of 18:31, 25 January 2011

GDB scripts for debugging ITK or tools based on ITK. When 'printing' an image object in the debugger, it can, e.g., instantly render and display the image in memory. A number of text printers also exist that mimic the object->Print( std::cout ) functionality.


Documentation

Articles

Examples

Screencasts

Installation

Repositories

  • Custom GDB
    • There are some changes here until we have time to push them upstream.
  • gdb-pretty-libstdcxx
    • Pretty printers by Tom Tromey from GDB for GNU implementation of the C++ standard library.
  • gdb-pretty-science
    • Pretty printers for "science" -- mostly image viewers at the moment.
  • gdb-pretty-itk
    • Text and image viewer printers for the InsightToolkit.
  • QGoImageCompare
    • ITK image viewer pretty printer that synchronizes views over a session.
  • gdb-pretty-itk-cmake
    • CMake module to register the ITK pretty printers in your project.



ITK: [Welcome | Site Map]