博文

AI and openCV doc

http://aishack.in/tutorials/ AI with Opencv:  http://bytefish.de/blog/machine_learning_opencv/ http://www.learnopencv.com ANN Example with openCV http://areshopencv.blogspot.com/2011/07/artificial-intelligence-multilayered.html http://neuralnetworksanddeeplearning.com

self driving car

http://www.businessinsider. com/amazing-learn-how-to- build-a-self-driving-car-in-7- weeks-2012-2 http://www.dailydot.com/debug/ hacker-giving-away-self- driving-car-code/ http://makezine.com/projects/ build-android-powered- autonomous-rc-car/ http://blog.davidsingleton. org/nnrccar/

Android Object Detection

https://www.intorobotics.com/how-to-detect-and-track-object-with-opencv/ https://medium.com/@akshikawijesundara/object-recognition-with-opencv-on-android-6435277ab285#.qh15p81qg https://github.com/tzutalin/Android-Object-Detection Nural Network http://pjreddie.com/darknet/

100-ionic-framework-resources

Ionic grab and move: http://codepen.io/mhartington/pen/ByzabQ Audio player: http://arielfaur.github.io/ionic-audio/ native audio plugin https://github.com/floatinghotpot/cordova-plugin-nativeaudio#demo video player: http://plnkr.co/edit/C9vWoszT3FmfcATmZZ81?p=preview http://mcgivery.com/100-ionic-framework-resources/

have controller start after ionic is ready

http://stackoverflow.com/questions/34749202/how-to-load-the-run-before-the-controller $ionicPlatform.ready  is not the first thing to be executed in your ionic application. The  $ionicPlatform.ready  function is called to tell you that the cordova APIs are ready to be used (it is a wrapper for the cordova deviceReady event). This means that Angular will start bootstrapping your app as soon as the library is loaded without waiting for the  $ionicPlatform.ready  callback.  You can fix this by removing the  ng-app="starter"  tag from your html body declaration as this instructs angular to immediately bootstrap your application. And instead bootstrap the application manually after  ionic.Platform.ready  is fired and you have done all of your initialisation. Here a sample code var ionicApp = angular . module ( 'starter' , [ 'ionic' ]); ionicApp . controller ( 'first-select' , function ( $scope ){ $scope . select = function ()...

daemon program using free pascal

{--------------------------------------------------------------------------- CncWare (c) Copyright 2000 --------------------------------------------------------------------------- Filename..: daemon.pp Programmer: Ken J. Wright Date......: 03/21/2000 Purpose - Program to demonstrate construction of a Linux daemon. Usage: 1) Compile this program. 2) Run it. You will be immediately returned to a command prompt. 3) Issue the command: ps ax|grep daemon. This will show you the process id of the program "daemon" that you just ran. 4) Issue the command: tail -f daemon.log. This let's you watch the log file being filled with the message in the code below. Press Ctrl/c to break out of the tail command. 5) Issue the command: kill -HUP pid. pid is the process number you saw with the ps command above. You will see that a new log file has been created. ...

implement a microsecond resolution Delay? (微秒级延迟)

implement a microsecond resolution Delay? (微秒级延迟) https://github.com/fundamentalslib/fundamentals5/tree/master/Source http://robotics.stackexchange.com/questions/7502/control-both-velocity-and-position-linear-actuator/7512#7512 http://electronics.stackexchange.com/questions/38573/smooth-a-motor-movement http://delphi.cjcsoft.net//viewthread.php?tid=391 http://guy.carpenter.id.au/gaugette/2012/01/26/simplified-acceleration-model/ implement a microsecond resolution Delay?  Author: Lemy   Homepage: http://www.swissdelphicenter.com  0 Comments to this tip [Write new comment]  [ Print tip ]      Tip Rating (8):            epicTimer.pas // Wait 0.2ms procedure PerformanceDelay; var   hrRes, hrT1, hrT2, dif: Int64; begin   if QueryPerformanceFrequency(hrRes) then   begin     QueryPerformanceCounter(hrT1);     repeat       Qu...