Skip to content

Instantly share code, notes, and snippets.

View symisc's full-sized avatar

PixLab | Symisc Systems symisc

View GitHub Profile
@symisc
symisc / pixlab-docscan-passport-scan-js-example.js
Last active November 28, 2024 22:49
Scan over 11K ID Documents from over 197 countries using the PixLab DOCSCAN API Endpoint documented at: https://ekyc.pixlab.io/docscan
/*
* Scan over 11K ID Documents from over 197 countries using the PixLab DOCSCAN API Endpoint
* documented at: https://ekyc.pixlab.io/docscan
*
* In this example, given a Passport document, extract the passport holder face and convert/parse all Machine Readable Zone
* to textual content ready to be consumed by your application.
*
* PixLab recommend that you connect your AWS S3 bucket via the dashboard at https://console.pixlab.io
* so that any extracted face or MRZ crop is automatically stored on your S3 bucket rather than the PixLab one.
* This feature should give you full control over your analyzed media files.
@symisc
symisc / faceio_change_pin_code.py
Last active November 18, 2023 03:10
Change the PIN Code of a given Facial ID on a FACEIO application - Refer to: https://faceio.net/rest-api#setfacialidpincode for additional information
import requests
import json
# Change the PIN Code of a given Facial ID on a FACEIO application
# Refer to: https://faceio.net/rest-api#setfacialidpincode for the official documentation & expected parameters
req = requests.post('https://api.faceio.net/setfacialidpincode',json={
"fid": "FACIAL_ID", # Target Facial ID to change the PIN code for
"pin": "1234", # New PIN Code for this user. Must be a numeric STRING!
"key": "FACEIO_APP_API_KEY" # Your FACEIO Application API Key. Retrieve this key from the Application Manager on the console at: https://console.faceio.net
})
@symisc
symisc / gaussian_blur_image.c
Last active July 24, 2023 03:45
Apply Gaussian Blur Filter to a given RGB image using the SOD Embedded Computer Vision Library - https://sod.pixlab.io
/*
* Programming introduction with the SOD Embedded Image Processing API.
* Copyright (C) PixLab | Symisc Systems, https://sod.pixlab.io
*/
/*
* Compile this file together with the SOD embedded source code to generate
* the executable. For example:
*
* gcc sod.c gaussian_blur_image.c -lm -Ofast -march=native -Wall -std=c99 -o sod_img_proc
*
@symisc
symisc / malaysia_mykad_id_scanner_api.py
Last active September 28, 2024 23:55
Python Code Sample for Scanning Malaysian ID Card (MyKAD) using the PixLab DOCSCAN API - Extract Face, and all ID Fields - https://ekyc.pixlab.io/
import requests
import json
# Scan over 11K ID Documents from over 197 countries using the PixLab DOCSCAN API Endpoint
# documented at: https://ekyc.pixlab.io/docscan
#
# In this example, given a Passport document, extract the passport holder face and convert/parse all Machine Readable Zone
# to textual content ready to be consumed by your application.
#
# PixLab recommend that you connect your AWS S3 bucket via the dashboard at https://console.pixlab.io
@symisc
symisc / malaysia_mykad_id_scanner_api.php
Last active September 28, 2024 23:56
Scan Malaysia ID Card (MyKAD) using the PixLab DOCSCAN API - Extract Face, and all ID Fields - https://ekyc.pixlab.io/
<?php
/*
* Usage sample of the ID card scanner from PixLab. In this sample, we shall scan
* ID Card from Malaysia (MyKAD); therefore we will extract the user's face, date of birth,
* full name, address, and religion if available.
*/
/*
* PixLab PHP Client which is just a single class PHP file without any dependency that you can get from Github
* https://github.com/symisc/pixlab-php
*/
@symisc
symisc / scan_passport_pixlab_api.py
Last active June 27, 2024 23:59
Scan over 11K ID Documents from over 197 countries using the PixLab DOCSCAN API Endpoint documented at: https://ekyc.pixlab.io/docscan
import requests
import json
# Scan over 11K ID Documents from over 197 countries using the PixLab DOCSCAN API Endpoint
# documented at: https://ekyc.pixlab.io/docscan
#
# In this example, given a Passport document, extract the passport holder face and convert/parse all Machine Readable Zone
# to textual content ready to be consumed by your application.
#
# PixLab recommend that you connect your AWS S3 bucket via the dashboard at https://console.pixlab.io
@symisc
symisc / tiny_dream_boilerplate.cpp
Last active August 30, 2023 00:15
Tiny Dream C++ Integration Boilerplate - Refer to https://pixlab.io/tiny-dream for the official documentation
/*
* Tiny Dream Integration Boilerplate.
*
* Compile this file together with the Tiny Dream header (tinydream.hpp) to generate
* the executable. Example of heavy optimized compilation under g++:
*
* g++ -o tinydream boileplate.cpp -funsafe-math-optimizations -Ofast -flto=auto -funroll-all-loops -pipe -march=native -std=c++17 -Wall -Wextra `pkg-config --cflags --libs ncnn` -lstdc++ -pthread -Wl -flto -fopt-info-vec-optimized
*
* To run the program simply type:
*
@s-macke
s-macke / gpt-4-tokens.txt
Last active September 2, 2024 20:59
All 100k GPT-4 Tokens. New lines are replaced with \n and carriage returns with \r. The index of the token is (index=line-1). The list is extracted using https://github.com/openai/tiktoken
!
"
#
$
%
&
'
(
)
*
@symisc
symisc / check_facial_id.py
Last active January 3, 2023 02:13
Perform authenticity check of a given Facial ID - Refer to the FACEIO documentation at https://faceio.net/rest-api for additional information
import requests
import json
# Perform authenticity check of a given Facial ID.
# In other words, make sure the supplied Facial ID is valid & registered on this FACEIO application.
# Refer to https://faceio.net/rest-api for additional information
req = requests.get('https://api.faceio.net/checkfacialid',params={
"fid":"FACIAL_ID", # Target Facial ID being checked
"key": "FACEIO_APP_API_KEY" # Your FACEIO Application API Key. Retrieve this key from the Application Manager on the console at: https://console.faceio.net
})
@hrishiksh
hrishiksh / App.css
Created July 28, 2022 08:23
FaceIO reactjs gist
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
section {