Difference between revisions of "TB3 Movidius Applications"

From wikidb
Jump to: navigation, search
(Install App Zoo)
(Live Image Classifier)
Line 14: Line 14:
 
    
 
    
 
   $ make run
 
   $ make run
 +
      ...
 +
      making compile
 +
      mvNCCompile -w bvlc_alexnet.caffemodel -s 12 deploy.prototxt
 +
      mvNCCompile v02.00, Copyright @ Movidius Ltd 2016
 +
 
 +
      /usr/local/bin/ncsdk/Controllers/FileIO.py:52: UserWarning: You are using a large type. Consider reducing your data sizes for best performance
 +
        "Consider reducing your data sizes for best performance\033[0m")
 +
      make[1]: Leaving directory '/home/eepp/workspace/ncappzoo/caffe/AlexNet'
 +
 
 +
      Running log-image-classifier.py
 +
      python3 log-image-classifier.py
 +
 
 +
 +
      Pre-processing images...
 +
      /usr/local/lib/python3.5/dist-packages/skimage/transform/_warps.py:84: UserWarning: The default mode, 'constant', will be changed to 'reflect' in skimage 0.15.
 +
        warn("The default mode, 'constant', will be changed to 'reflect' in "
 +
 +
      Performing inference on a lot of images...
 +
 
 +
      Inference complete! View results in ./inferences.csv.

Revision as of 13:11, 29 May 2018

Reference

Install App Zoo

 $ cd ~/workspace/ 
 
 $ git clone https://github.com/movidius/ncappzoo

Live Image Classifier

 $ cd ~/workspace/ncappzoo/apps/log-image-classifier/
 
 $ make run
     ...
     making compile
     mvNCCompile -w bvlc_alexnet.caffemodel -s 12 deploy.prototxt
     mvNCCompile v02.00, Copyright @ Movidius Ltd 2016
 
     /usr/local/bin/ncsdk/Controllers/FileIO.py:52: UserWarning: You are using a large type. Consider reducing your data sizes for best performance
       "Consider reducing your data sizes for best performance\033[0m")
     make[1]: Leaving directory '/home/eepp/workspace/ncappzoo/caffe/AlexNet'
 
     Running log-image-classifier.py
     python3 log-image-classifier.py
 
     Pre-processing images...
     /usr/local/lib/python3.5/dist-packages/skimage/transform/_warps.py:84: UserWarning: The default mode, 'constant', will be changed to 'reflect' in skimage 0.15.
       warn("The default mode, 'constant', will be changed to 'reflect' in "
     Performing inference on a lot of images...
 
     Inference complete! View results in ./inferences.csv.