This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# To autoload this file into GDB, put the following line in ~/.gdbinit: | |
# | |
# python execfile("/path/to/icu_unicodestring_prettyprinter.py") | |
# | |
# You can also run that line of code in the GDB console without adding it to ~/.gdbinit. | |
from __future__ import print_function | |
from array import array | |
import re |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include <SDKDDKVer.h> | |
#include <Windows.h> | |
#include <stdio.h> | |
#include <iostream> | |
// for OpenCV2 | |
#include <opencv2/gpu/gpu.hpp> | |
#include <opencv2/imgproc/imgproc.hpp> |