Skip to content

Instantly share code, notes, and snippets.

View zst123's full-sized avatar

zst123 zst123

View GitHub Profile
@zst123
zst123 / app.py
Created August 24, 2020 04:20
Deep Learning Superhero challenge - Carpark System
import sys, os, cv2, time
import numpy as np, math
from argparse import ArgumentParser
try:
from armv7l.openvino.inference_engine import IENetwork, IEPlugin
except:
from openvino.inference_engine import IENetwork, IEPlugin
# sudo apt-get install python3.6-tk
@zst123
zst123 / webserver.c
Last active May 27, 2023 15:39
RT-Thread Global Tech Conference 2023: Build an embedded IoT web server quickly & easily using RT-Thread Studio. Download Slides: https://drive.google.com/file/d/1HjNO1hh-bPqBm1Z9kYkAjqO9Pfeclu5W
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <rtthread.h>
#include <rtdevice.h>
#include <webnet.h>
#include <wn_module.h>