Projections
This file contains hidden or 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
// (c) Denis Trofimov, derofim, 2017 | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text.RegularExpressions; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Security.Cryptography; |
This file contains hidden or 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
// (c) Denis Trofimov, derofim, 2017 | |
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Text.RegularExpressions; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Security.Cryptography; |
Script tested on Windows 10 64bit.
- Install git bash from https://git-for-windows.github.io/
Git allows to use linux commands on windows. - Open Git Bash Command Line
Simply right-click on a folder in Windows Explorer to access the BASH or GUI.
https://git-for-windows.github.io/img/gw1.png - You can use "mv" command to rename "VeryLongFileName.ext" to "shortFileName.ext" like this:
mv "VeryLongFileName.ext" "shortFileName.ext" - If you need to rename a lot of files in folder use shorten.sh below.
Creating Video material & Sound.
Adding "MOB1_M1_Stand_Relaxed_to_Crouch" animation sequence to "SK_Infiltrator_Skeleton".
Features2D + Homography to find a known object http://docs.opencv.org/3.2.0/d9/d97/tutorial_table_of_content_features2d.html ported to OpenCV 3.2.0
- git clone -b 3.2.0 --depth 1 --recursive https://github.com/opencv/opencv_contrib.git
- git clone -b 3.2.0 --depth 1 --recursive https://github.com/opencv/opencv.git
- Create bat script (Windows):
@echo off
REM git clone -b 3.2.0 --depth 1 --recursive https://github.com/opencv/opencv_contrib.git
REM OR Download https://github.com/opencv/opencv_contrib/archive/3.2.0.zip
This file contains hidden or 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
PREFIX owl: <http://www.w3.org/2002/07/owl#> | |
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX foaf: <http://www.semanticweb.org/катерина/ontologies/2017/2/dynamicStructures#> | |
SELECT ?x ?val ?idx WHERE { | |
. {?x foaf:belongs foaf:Array1 } | |
OPTIONAL {?x foaf:value ?val} | |
OPTIONAL {?x foaf:Index ?idx} |
This file contains hidden or 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
<?xml version="1.0"?> | |
<Ontology xmlns="http://www.w3.org/2002/07/owl#" | |
xml:base="http://www.semanticweb.org/denis/ontologies/2017/2/web" | |
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | |
xmlns:xml="http://www.w3.org/XML/1998/namespace" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema#" | |
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" | |
ontologyIRI="http://www.semanticweb.org/denis/ontologies/2017/2/web"> | |
<Prefix name="" IRI="http://www.semanticweb.org/denis/ontologies/2017/2/web"/> | |
<Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/> |
This file contains hidden or 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
from collections import Counter | |
import operator | |
import os | |
import os.path | |
import glob | |
from collections import Counter | |
import operator | |
import re | |
from os import listdir, walk | |
from os.path import isfile, isdir, join, getsize |