Skip to content

Instantly share code, notes, and snippets.

@natxopedreira
natxopedreira / setup OpenVINO 2019R3.txt
Created February 22, 2021 21:40 — forked from KunYi/setup OpenVINO 2019R3.txt
install OpenVINO 2019 R3 on Ubuntu 18.04 with Python3 for demo
# install steps for people_counting demo
# for Ubuntu 18.04 AMD64 & OpenVINO 2019R3
sudo apt update
sudo apt install vim curl wget apt-transport-https net-tools python3 python3-pip
cd Download
curl http://registrationcenter-download.intel.com/akdlm/irc_nas/15944/l_openvino_toolkit_p_2019.3.334.tgz
tar -xvzf l_openvino_toolkit_p_2019.3.334.tgz
cd l_openvino_toolkit_p_2019.3.334/
sudo ./install_GUI.sh
cd /opt/intel/openvino/install_dependencies/
/* set_window_front
On EWMH-compliant window managers, sets the _NET_WM_STATE of the given
window to _NET_WM_STATE_ABOVE to make it stay on top of all others besides
_NET_WM_STATE_FULLSCREEN. If the window manager is not EWMH-compliant,
nothing is done.
Arguments:
Display *disp - a pointer to the X display
Window wind - the window being moved to the front
*/
@natxopedreira
natxopedreira / annotation.xml
Created June 1, 2020 23:38 — forked from Prasad9/annotation.xml
A sample XML annotation file based on Pascal VOC format.
<annotation>
<folder>GeneratedData_Train</folder>
<filename>000001.png</filename>
<path>/my/path/GeneratedData_Train/000001.png</path>
<source>
<database>Unknown</database>
</source>
<size>
<width>224</width>
<height>224</height>
// TESTED ON nightly-build ver 0.8 (of_v20130813) in Visual Studio 2012 - Win64
// MAKE APP ALWAYS ON TOP
HWND AppWindow = GetActiveWindow();
SetWindowPos(AppWindow, HWND_TOPMOST, NULL, NULL, NULL, NULL, SWP_NOMOVE | SWP_NOSIZE);
// DISABLE FUNCTION DESCRIBED ABOVE
HWND AppWindow = GetActiveWindow();