Skip to content

Instantly share code, notes, and snippets.

View cristofima's full-sized avatar
🏠
Working from home

Cristopher Coronado cristofima

🏠
Working from home
View GitHub Profile
@cristofima
cristofima / Azure Form Recognizer.ipynb
Created July 5, 2023 16:25
Extract information from invoices, receipts, business cards and identity documents
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cristofima
cristofima / Azure Speech Services.ipynb
Created July 3, 2023 02:17
Text to Speech, Speech to Text, and Speech Translation using Azure Cognetive Services
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cristofima
cristofima / Number Plate Recognition.ipynb
Created June 14, 2023 20:04
Number Plate Recognition using Azure Custom Vision and Azure Computer Vision
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@cristofima
cristofima / gps.service.ts
Created June 27, 2021 15:37
Service to get coordinates from mobile GPS using Ionic framework
import { Injectable } from '@angular/core';
import { AndroidPermissions } from '@ionic-native/android-permissions/ngx';
import { LocationAccuracy } from '@ionic-native/location-accuracy/ngx';
import { Geolocation, GeolocationOptions } from '@ionic-native/geolocation/ngx';
import { Platform } from '@ionic/angular';
export interface ILatLng {
latitude: number;
longitude: number;
speed?: number;