博文

目前显示的是 一月, 2017的博文

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 ()...