├── .gitignore ├── Instructions ├── Labs │ ├── 01-analyze-images.md │ ├── 02-ocr.md │ ├── 03-face-service.md │ ├── 04-image-classification.md │ ├── 05-custom-vision-object-detection.md │ ├── 06-video-indexer.md │ ├── 08-gen-ai-vision.md │ ├── 09-dall-e.md │ └── media │ │ ├── ai-foundry-chat-playground.png │ │ ├── ai-foundry-home.png │ │ ├── ai-foundry-model-deployment.png │ │ ├── fruit.jpg │ │ ├── object-region.jpg │ │ ├── object-tag.jpg │ │ ├── object-tags.jpg │ │ ├── tagged-images.jpg │ │ ├── test-apple.jpg │ │ ├── upload_apples.jpg │ │ ├── video-indexer-custom-model.png │ │ ├── video-indexer-edit-name.png │ │ ├── video-indexer-insights.png │ │ ├── video-indexer-known-person.png │ │ ├── video-indexer-search.png │ │ ├── video-indexer-transcript.png │ │ ├── video-indexer-unknown-person.png │ │ ├── video-indexer-view-menu.png │ │ └── video-indexer-widgets.png └── media │ ├── Business-card.jpg │ ├── IMG_TEST_1.jpg │ ├── IMG_TEST_2.jpg │ ├── IMG_TEST_3.jpg │ ├── Lincoln.jpg │ ├── Note.jpg │ ├── ai-foundry-home.png │ ├── ai-foundry-project.png │ ├── building.jpg │ ├── chat-playground-image.png │ ├── custom-vision-metrics.png │ ├── detected_faces1.jpg │ ├── detected_faces2.jpg │ ├── detected_faces3.jpg │ ├── face1.jpg │ ├── face2.jpg │ ├── faces.jpg │ ├── fruit.jpg │ ├── images-playground.png │ ├── mystery-fruit.jpeg │ ├── object-detection-output.jpg │ ├── object-region.jpg │ ├── object-tag.jpg │ ├── object-tags.jpg │ ├── objects.jpg │ ├── orange.jpeg │ ├── people.jpg │ ├── person.jpg │ ├── produce.jpg │ ├── street.jpg │ ├── tagged-images.jpg │ ├── test-apple.jpg │ ├── test-object-detection.png │ ├── text.jpg │ ├── upload_apples.jpg │ ├── video-indexer-custom-model.png │ ├── video-indexer-edit-name.png │ ├── video-indexer-insights.png │ ├── video-indexer-known-person.png │ ├── video-indexer-search.png │ ├── video-indexer-transcript.png │ ├── video-indexer-unknown-person.png │ ├── video-indexer-view-menu.png │ └── video-indexer-widgets.png ├── LICENSE ├── Labfiles ├── analyze-images │ └── python │ │ ├── image-analysis │ │ ├── .env │ │ ├── image-analysis.py │ │ ├── images │ │ │ ├── building.jpg │ │ │ ├── person.jpg │ │ │ └── street.jpg │ │ └── requirements.txt │ │ └── readme.txt ├── dalle-client │ └── python │ │ ├── .env │ │ ├── dalle-client.py │ │ └── requirements.txt ├── face │ └── python │ │ ├── face-api │ │ ├── .env │ │ ├── analyze-faces.py │ │ ├── images │ │ │ ├── face1.jpg │ │ │ ├── face2.jpg │ │ │ └── faces.jpg │ │ └── requirements.txt │ │ └── readme.txt ├── gen-ai-vision │ ├── mango.jpeg │ ├── orange.jpeg │ └── python │ │ ├── .env │ │ ├── chat-app.py │ │ ├── mystery-fruit.jpeg │ │ └── requirements.txt ├── image-classification │ ├── python │ │ ├── readme.txt │ │ ├── test-classifier │ │ │ ├── .env │ │ │ ├── requirements.txt │ │ │ ├── test-classifier.py │ │ │ └── test-images │ │ │ │ ├── IMG_TEST_1.jpg │ │ │ │ ├── IMG_TEST_2.jpg │ │ │ │ └── IMG_TEST_3.jpg │ │ └── train-classifier │ │ │ ├── .env │ │ │ ├── more-training-images │ │ │ ├── apple │ │ │ │ ├── apple5.jpg │ │ │ │ └── apple7.jpg │ │ │ ├── banana │ │ │ │ ├── banana4.jpg │ │ │ │ └── banana6.jpg │ │ │ └── orange │ │ │ │ ├── orange8.jpg │ │ │ │ └── orange9.jpg │ │ │ ├── requirements.txt │ │ │ └── train-classifier.py │ ├── test-images │ │ ├── IMG_TEST_1.jpg │ │ ├── IMG_TEST_2.jpg │ │ └── IMG_TEST_3.jpg │ ├── training-images.zip │ └── training-images │ │ ├── apple │ │ ├── IMG_20200229_164759.jpg │ │ ├── IMG_20200229_164760.jpg │ │ ├── IMG_20200229_164804.jpg │ │ ├── IMG_20200229_164811.jpg │ │ ├── IMG_20200229_164819.jpg │ │ ├── IMG_20200229_164823.jpg │ │ ├── IMG_20200229_164830.jpg │ │ ├── IMG_20200229_164851.jpg │ │ ├── IMG_20200229_164901.jpg │ │ ├── IMG_20200229_164918.jpg │ │ ├── IMG_20200229_164919.jpg │ │ ├── IMG_20200229_164925.jpg │ │ ├── IMG_20200229_164926jpg.jpg │ │ ├── IMG_20200229_164932.jpg │ │ └── IMG_20200229_164936.jpg │ │ ├── banana │ │ ├── IMG_20200229_164947.jpg │ │ ├── IMG_20200229_164952.jpg │ │ ├── IMG_20200229_164957.jpg │ │ ├── IMG_20200229_164958.jpg │ │ ├── IMG_20200229_165001.jpg │ │ ├── IMG_20200229_165002.jpg │ │ ├── IMG_20200229_165008.jpg │ │ ├── IMG_20200229_165016.jpg │ │ ├── IMG_20200229_165020.jpg │ │ ├── IMG_20200229_165021.jpg │ │ ├── IMG_20200229_165026.jpg │ │ ├── IMG_20200229_165027.jpg │ │ ├── IMG_20200229_165033.jpg │ │ ├── IMG_20200229_165046.jpg │ │ └── IMG_20200229_165047.jpg │ │ └── orange │ │ ├── IMG_20200229_165108.jpg │ │ ├── IMG_20200229_165112.jpg │ │ ├── IMG_20200229_165115.jpg │ │ ├── IMG_20200229_165126.jpg │ │ ├── IMG_20200229_165132.jpg │ │ ├── IMG_20200229_165147.jpg │ │ ├── IMG_20200229_165152.jpg │ │ ├── IMG_20200229_165157.jpg │ │ ├── IMG_20200229_165202.jpg │ │ ├── IMG_20200229_165219.jpg │ │ ├── IMG_20200229_165220.jpg │ │ ├── IMG_20200229_165223.jpg │ │ ├── IMG_20200229_165232.jpg │ │ ├── IMG_20200229_165234.jpg │ │ └── IMG_20200229_165236.jpg ├── object-detection │ ├── IMG_TEST_OBJECTS.jpg │ ├── python │ │ ├── readme.txt │ │ ├── test-detector │ │ │ ├── .env │ │ │ ├── produce.jpg │ │ │ ├── requirements.txt │ │ │ └── test-detector.py │ │ └── train-detector │ │ │ ├── .env │ │ │ ├── add-tagged-images.py │ │ │ ├── images │ │ │ ├── image11.jpg │ │ │ ├── image12.jpg │ │ │ ├── image13.jpg │ │ │ ├── image14.jpg │ │ │ ├── image15.jpg │ │ │ ├── image16.jpg │ │ │ ├── image17.jpg │ │ │ ├── image18.jpg │ │ │ ├── image19.jpg │ │ │ ├── image20.jpg │ │ │ ├── image21.jpg │ │ │ ├── image22.jpg │ │ │ ├── image23.jpg │ │ │ ├── image24.jpg │ │ │ ├── image25.jpg │ │ │ ├── image26.jpg │ │ │ ├── image27.jpg │ │ │ ├── image28.jpg │ │ │ ├── image29.jpg │ │ │ ├── image30.jpg │ │ │ ├── image31.jpg │ │ │ ├── image32.jpg │ │ │ └── image33.jpg │ │ │ ├── requirements.txt │ │ │ └── tagged-images.json │ ├── training-images.zip │ └── training-images │ │ ├── image1.jpg │ │ ├── image10.jpg │ │ ├── image2.jpg │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ ├── image6.jpg │ │ ├── image7.jpg │ │ ├── image8.jpg │ │ └── image9.jpg ├── ocr │ └── python │ │ ├── read-text │ │ ├── .env │ │ ├── images │ │ │ ├── Business-card.jpg │ │ │ ├── Lincoln.jpg │ │ │ └── Note.jpg │ │ ├── read-text.py │ │ └── requirements.txt │ │ └── readme.txt └── video-indexer │ ├── analyze-video.html │ ├── get-videos.ps1 │ └── responsible_ai.mp4 ├── README.md ├── _build.yml ├── _config.yml └── index.md /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | bin 3 | *.sln -------------------------------------------------------------------------------- /Instructions/Labs/01-analyze-images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/01-analyze-images.md -------------------------------------------------------------------------------- /Instructions/Labs/02-ocr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/02-ocr.md -------------------------------------------------------------------------------- /Instructions/Labs/03-face-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/03-face-service.md -------------------------------------------------------------------------------- /Instructions/Labs/04-image-classification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/04-image-classification.md -------------------------------------------------------------------------------- /Instructions/Labs/05-custom-vision-object-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/05-custom-vision-object-detection.md -------------------------------------------------------------------------------- /Instructions/Labs/06-video-indexer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/06-video-indexer.md -------------------------------------------------------------------------------- /Instructions/Labs/08-gen-ai-vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/08-gen-ai-vision.md -------------------------------------------------------------------------------- /Instructions/Labs/09-dall-e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/09-dall-e.md -------------------------------------------------------------------------------- /Instructions/Labs/media/ai-foundry-chat-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/ai-foundry-chat-playground.png -------------------------------------------------------------------------------- /Instructions/Labs/media/ai-foundry-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/ai-foundry-home.png -------------------------------------------------------------------------------- /Instructions/Labs/media/ai-foundry-model-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/ai-foundry-model-deployment.png -------------------------------------------------------------------------------- /Instructions/Labs/media/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/fruit.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/object-region.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/object-region.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/object-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/object-tag.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/object-tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/object-tags.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/tagged-images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/tagged-images.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/test-apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/test-apple.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/upload_apples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/upload_apples.jpg -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-custom-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-custom-model.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-edit-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-edit-name.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-insights.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-known-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-known-person.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-search.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-transcript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-transcript.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-unknown-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-unknown-person.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-view-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-view-menu.png -------------------------------------------------------------------------------- /Instructions/Labs/media/video-indexer-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/Labs/media/video-indexer-widgets.png -------------------------------------------------------------------------------- /Instructions/media/Business-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/Business-card.jpg -------------------------------------------------------------------------------- /Instructions/media/IMG_TEST_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/IMG_TEST_1.jpg -------------------------------------------------------------------------------- /Instructions/media/IMG_TEST_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/IMG_TEST_2.jpg -------------------------------------------------------------------------------- /Instructions/media/IMG_TEST_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/IMG_TEST_3.jpg -------------------------------------------------------------------------------- /Instructions/media/Lincoln.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/Lincoln.jpg -------------------------------------------------------------------------------- /Instructions/media/Note.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/Note.jpg -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/ai-foundry-home.png -------------------------------------------------------------------------------- /Instructions/media/ai-foundry-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/ai-foundry-project.png -------------------------------------------------------------------------------- /Instructions/media/building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/building.jpg -------------------------------------------------------------------------------- /Instructions/media/chat-playground-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/chat-playground-image.png -------------------------------------------------------------------------------- /Instructions/media/custom-vision-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/custom-vision-metrics.png -------------------------------------------------------------------------------- /Instructions/media/detected_faces1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/detected_faces1.jpg -------------------------------------------------------------------------------- /Instructions/media/detected_faces2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/detected_faces2.jpg -------------------------------------------------------------------------------- /Instructions/media/detected_faces3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/detected_faces3.jpg -------------------------------------------------------------------------------- /Instructions/media/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/face1.jpg -------------------------------------------------------------------------------- /Instructions/media/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/face2.jpg -------------------------------------------------------------------------------- /Instructions/media/faces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/faces.jpg -------------------------------------------------------------------------------- /Instructions/media/fruit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/fruit.jpg -------------------------------------------------------------------------------- /Instructions/media/images-playground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/images-playground.png -------------------------------------------------------------------------------- /Instructions/media/mystery-fruit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/mystery-fruit.jpeg -------------------------------------------------------------------------------- /Instructions/media/object-detection-output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/object-detection-output.jpg -------------------------------------------------------------------------------- /Instructions/media/object-region.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/object-region.jpg -------------------------------------------------------------------------------- /Instructions/media/object-tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/object-tag.jpg -------------------------------------------------------------------------------- /Instructions/media/object-tags.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/object-tags.jpg -------------------------------------------------------------------------------- /Instructions/media/objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/objects.jpg -------------------------------------------------------------------------------- /Instructions/media/orange.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/orange.jpeg -------------------------------------------------------------------------------- /Instructions/media/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/people.jpg -------------------------------------------------------------------------------- /Instructions/media/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/person.jpg -------------------------------------------------------------------------------- /Instructions/media/produce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/produce.jpg -------------------------------------------------------------------------------- /Instructions/media/street.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/street.jpg -------------------------------------------------------------------------------- /Instructions/media/tagged-images.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/tagged-images.jpg -------------------------------------------------------------------------------- /Instructions/media/test-apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/test-apple.jpg -------------------------------------------------------------------------------- /Instructions/media/test-object-detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/test-object-detection.png -------------------------------------------------------------------------------- /Instructions/media/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/text.jpg -------------------------------------------------------------------------------- /Instructions/media/upload_apples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/upload_apples.jpg -------------------------------------------------------------------------------- /Instructions/media/video-indexer-custom-model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-custom-model.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-edit-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-edit-name.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-insights.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-known-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-known-person.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-search.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-transcript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-transcript.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-unknown-person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-unknown-person.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-view-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-view-menu.png -------------------------------------------------------------------------------- /Instructions/media/video-indexer-widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Instructions/media/video-indexer-widgets.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/LICENSE -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/image-analysis/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/analyze-images/python/image-analysis/.env -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/image-analysis/image-analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/analyze-images/python/image-analysis/image-analysis.py -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/image-analysis/images/building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/analyze-images/python/image-analysis/images/building.jpg -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/image-analysis/images/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/analyze-images/python/image-analysis/images/person.jpg -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/image-analysis/images/street.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/analyze-images/python/image-analysis/images/street.jpg -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/image-analysis/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | matplotlib 3 | pillow 4 | -------------------------------------------------------------------------------- /Labfiles/analyze-images/python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/dalle-client/python/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/dalle-client/python/.env -------------------------------------------------------------------------------- /Labfiles/dalle-client/python/dalle-client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/dalle-client/python/dalle-client.py -------------------------------------------------------------------------------- /Labfiles/dalle-client/python/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Labfiles/face/python/face-api/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/face/python/face-api/.env -------------------------------------------------------------------------------- /Labfiles/face/python/face-api/analyze-faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/face/python/face-api/analyze-faces.py -------------------------------------------------------------------------------- /Labfiles/face/python/face-api/images/face1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/face/python/face-api/images/face1.jpg -------------------------------------------------------------------------------- /Labfiles/face/python/face-api/images/face2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/face/python/face-api/images/face2.jpg -------------------------------------------------------------------------------- /Labfiles/face/python/face-api/images/faces.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/face/python/face-api/images/faces.jpg -------------------------------------------------------------------------------- /Labfiles/face/python/face-api/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | matplotlib 3 | pillow 4 | -------------------------------------------------------------------------------- /Labfiles/face/python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/gen-ai-vision/mango.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/gen-ai-vision/mango.jpeg -------------------------------------------------------------------------------- /Labfiles/gen-ai-vision/orange.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/gen-ai-vision/orange.jpeg -------------------------------------------------------------------------------- /Labfiles/gen-ai-vision/python/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/gen-ai-vision/python/.env -------------------------------------------------------------------------------- /Labfiles/gen-ai-vision/python/chat-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/gen-ai-vision/python/chat-app.py -------------------------------------------------------------------------------- /Labfiles/gen-ai-vision/python/mystery-fruit.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/gen-ai-vision/python/mystery-fruit.jpeg -------------------------------------------------------------------------------- /Labfiles/gen-ai-vision/python/requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv 2 | -------------------------------------------------------------------------------- /Labfiles/image-classification/python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/image-classification/python/test-classifier/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/test-classifier/.env -------------------------------------------------------------------------------- /Labfiles/image-classification/python/test-classifier/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | 3 | -------------------------------------------------------------------------------- /Labfiles/image-classification/python/test-classifier/test-classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/test-classifier/test-classifier.py -------------------------------------------------------------------------------- /Labfiles/image-classification/python/test-classifier/test-images/IMG_TEST_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/test-classifier/test-images/IMG_TEST_1.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/test-classifier/test-images/IMG_TEST_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/test-classifier/test-images/IMG_TEST_2.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/test-classifier/test-images/IMG_TEST_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/test-classifier/test-images/IMG_TEST_3.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/.env -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/more-training-images/apple/apple5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/more-training-images/apple/apple5.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/more-training-images/apple/apple7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/more-training-images/apple/apple7.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/more-training-images/banana/banana4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/more-training-images/banana/banana4.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/more-training-images/banana/banana6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/more-training-images/banana/banana6.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/more-training-images/orange/orange8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/more-training-images/orange/orange8.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/more-training-images/orange/orange9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/more-training-images/orange/orange9.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | 3 | -------------------------------------------------------------------------------- /Labfiles/image-classification/python/train-classifier/train-classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/python/train-classifier/train-classifier.py -------------------------------------------------------------------------------- /Labfiles/image-classification/test-images/IMG_TEST_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/test-images/IMG_TEST_1.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/test-images/IMG_TEST_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/test-images/IMG_TEST_2.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/test-images/IMG_TEST_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/test-images/IMG_TEST_3.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images.zip -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164759.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164759.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164760.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164760.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164804.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164804.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164811.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164811.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164819.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164819.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164823.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164823.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164830.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164830.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164851.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164851.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164901.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164901.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164918.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164918.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164919.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164919.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164925.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164925.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164926jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164926jpg.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164932.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164932.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/apple/IMG_20200229_164936.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/apple/IMG_20200229_164936.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_164947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_164947.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_164952.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_164952.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_164957.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_164957.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_164958.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_164958.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165001.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165002.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165008.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165016.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165020.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165021.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165026.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165027.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165033.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165033.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165046.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165046.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/banana/IMG_20200229_165047.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/banana/IMG_20200229_165047.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165108.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165108.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165112.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165115.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165126.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165126.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165132.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165147.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165147.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165152.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165152.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165157.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165157.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165202.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165219.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165219.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165220.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165220.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165223.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165232.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165232.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165234.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165234.jpg -------------------------------------------------------------------------------- /Labfiles/image-classification/training-images/orange/IMG_20200229_165236.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/image-classification/training-images/orange/IMG_20200229_165236.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/IMG_TEST_OBJECTS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/IMG_TEST_OBJECTS.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/object-detection/python/test-detector/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/test-detector/.env -------------------------------------------------------------------------------- /Labfiles/object-detection/python/test-detector/produce.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/test-detector/produce.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/test-detector/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | matplotlib 3 | -------------------------------------------------------------------------------- /Labfiles/object-detection/python/test-detector/test-detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/test-detector/test-detector.py -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/.env -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/add-tagged-images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/add-tagged-images.py -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image11.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image12.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image13.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image14.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image15.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image16.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image17.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image18.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image19.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image20.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image21.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image22.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image23.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image24.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image25.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image26.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image27.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image28.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image29.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image30.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image31.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image32.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/images/image33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/images/image33.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Labfiles/object-detection/python/train-detector/tagged-images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/python/train-detector/tagged-images.json -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images.zip -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image1.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image10.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image2.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image3.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image4.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image5.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image6.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image7.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image8.jpg -------------------------------------------------------------------------------- /Labfiles/object-detection/training-images/image9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/object-detection/training-images/image9.jpg -------------------------------------------------------------------------------- /Labfiles/ocr/python/read-text/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/ocr/python/read-text/.env -------------------------------------------------------------------------------- /Labfiles/ocr/python/read-text/images/Business-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/ocr/python/read-text/images/Business-card.jpg -------------------------------------------------------------------------------- /Labfiles/ocr/python/read-text/images/Lincoln.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/ocr/python/read-text/images/Lincoln.jpg -------------------------------------------------------------------------------- /Labfiles/ocr/python/read-text/images/Note.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/ocr/python/read-text/images/Note.jpg -------------------------------------------------------------------------------- /Labfiles/ocr/python/read-text/read-text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/ocr/python/read-text/read-text.py -------------------------------------------------------------------------------- /Labfiles/ocr/python/read-text/requirements.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | matplotlib 3 | pillow 4 | -------------------------------------------------------------------------------- /Labfiles/ocr/python/readme.txt: -------------------------------------------------------------------------------- 1 | This folder contains Python code -------------------------------------------------------------------------------- /Labfiles/video-indexer/analyze-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/video-indexer/analyze-video.html -------------------------------------------------------------------------------- /Labfiles/video-indexer/get-videos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/video-indexer/get-videos.ps1 -------------------------------------------------------------------------------- /Labfiles/video-indexer/responsible_ai.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/Labfiles/video-indexer/responsible_ai.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/README.md -------------------------------------------------------------------------------- /_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/_build.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-ai-vision/HEAD/index.md --------------------------------------------------------------------------------