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
# Maintainer: Fabrice aneche <[email protected]> | |
pkgname=s2geometry-git | |
pkgver=r136 | |
pkgrel=1 | |
pkgdesc="Computational geometry and spatial indexing on the sphere" | |
arch=('i686' 'x86_64') | |
url="https://s2geometry.io/" | |
license=('APACHE2') | |
depends=('openssl-1.0' 'gflags' 'google-glog' 'python') |
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
# Maintainer: Maxime Morel <[email protected]> | |
pkgname=opentrack-git | |
pkgver=r4730 | |
pkgrel=1 | |
pkgdesc="An application dedicated to tracking user's head movements and relaying the information to games and flight simulation software" | |
arch=('i686' 'x86_64') | |
url="https://github.com/opentrack/opentrack/" | |
license=('GPL3') | |
depends=('qt5-base' 'opencv') |
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
pkgname=opentrack-aruco-git | |
pkgver=r44.2adf990 | |
pkgrel=1 | |
pkgdesc="Augmented reality library based on OpenCV" | |
arch=('i686' 'x86_64') | |
url="https://www.uco.es/investiga/grupos/ava/node/26" | |
license=('BSD') | |
depends=(opencv) | |
makedepends=(cmake) | |
source=("git+https://github.com/opentrack/aruco.git#commit=2adf990b93742593a06df699ed32c20a9796b434") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
var exists = struct{}{} | |
type int64Set struct { | |
m map[int64]struct{} | |
} | |
type stringSet struct { | |
m map[string]struct{} | |
} |
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
pkgname=aruco-git | |
pkgver=2.0.19.5675 | |
pkgrel=1 | |
pkgdesc="Augmented reality library based on OpenCV" | |
arch=('i686' 'x86_64') | |
url="https://www.uco.es/investiga/grupos/ava/node/26" | |
license=('BSD') | |
depends=(opencv) | |
makedepends=(cmake) | |
source=("git+https://github.com/opentrack/aruco.git#commit=567503cf3a1feed334b6eaf95dbcbcdc39952feb") |
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
"highway" = 'primary' OR "highway" = 'primary_link' OR | |
"highway" = 'trunk' OR "highway" = 'trunk_link' OR | |
"highway" = 'motorway' OR "highway" = 'motorway_link' OR | |
"highway" = 'secondary' OR "highway" = 'secondary_link' OR | |
"highway" = 'tertiary' OR "highway" = 'tertiary_link' OR | |
"highway" = 'residential' OR "highway" = 'unclassified' | |
https://wiki.openstreetmap.org/wiki/Routing#Routing_considerations |
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 gpiozero import MotionSensor | |
from picamera import PiCamera | |
from datetime import datetime | |
from phue import Bridge | |
import subprocess | |
b = Bridge('192.168.xxx.xxx') | |
b.connect() | |
camera = PiCamera() | |
camera.rotation = 180 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
/* | |
The MIT License (MIT) | |
Copyright (c) 2016 Fabrice Aneche | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is |