You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
884 B

  1. # objectImageIdentifierAI
  2. - imagesToDataset
  3. - From two directories ('object' and 'noobject'), gets all the images inside the directories and generates the dataset
  4. - nnTrain
  5. - From the dataset file generated in the previous step, train the Neural Network
  6. - serverPredictor
  7. - Runs a server API, that with the Neural Network classifies the incoming images
  8. - smartphoneApp
  9. - Take photo and upload to the server, to get the response (object or no object)
  10. ![hotdognohotdog](https://raw.githubusercontent.com/arnaucode/objectImageIdentifierAI/master/hotdognohotdog.png "hotdognohotdog")
  11. ## Real steps
  12. - download images
  13. - for example, can be done with https://github.com/arnaucode/imgDownloader.git
  14. - In /serverPredictor directory
  15. ```
  16. python classifierChooser.py
  17. ```
  18. This will generate the model.pkl. Then, run the serverPredictor.py
  19. ```
  20. python serverPredictor.py
  21. ```