2017-04-17から1日間の記事一覧

Rpiで複数のWebカメラを使う

http://www.pyimagesearch.com/2016/01/18/multiple-cameras-with-the-raspberry-pi-and-opencv/https://www.raspberrypi.org/forums/viewtopic.php?f=43&t=50142https://raspberrypi.stackexchange.com/questions/33791/multiple-webcams-on-a-single-raspb…

OpenCVの記事

機械学習のためのOpenCV入門 http://qiita.com/icoxfog417/items/53e61496ad980c41a08e必見「OpenCV-Python Tutorials」2 http://qiita.com/nonbiri15/items/7e9e0bce90f04f40dd57画像処理ってなんだ。OpenCvを少し動かしてみる。mac or linux http://qiita…

RPiで動くファームウェア

http://diy3dprinting.blogspot.jp/2014/10/diy-3d-printers-controlled-with.html Owen Jeffreys の The World's First Raspberry PI 3D Printer Printipi: https://devpost.com/software/printipi piPrint: https://github.com/iandouglas96/piPrint

u-bootのブートコマンド

環境変数bootcmdにセットしとけば自動で実行されるらしい 試しにZYBOの${bootcmd}を覗いてみると、run ${modeboot} = run sdbootが入っていた。u-boot-Digilent-Dev/board/xilinx/zynq/board.c case ZYNQ_BM_SD: setenv("modeboot", "sdboot"); break; これ…

Rで異常検知

https://github.com/twitter/AnomalyDetection https://blog.twitter.com/2015/introducing-practical-and-robust-anomaly-detection-in-a-time-series data(raw_data) res = AnomalyDetectionTs(raw_data, max_anoms=0.02, direction='both', plot=TRUE) re…