Base Refelence at melito
Before Setup coremltools
$ export PATH="$HOME/miniconda2/bin:$PATH"
$ source activate coreml
<!doctype html> | |
<html> | |
<head> | |
<title>Camera Sample</title> | |
<style> | |
#viewer { | |
width: 720px; | |
height: 480px; | |
position: relative; | |
background-color: #000000; |
Base Refelence at melito
Before Setup coremltools
$ export PATH="$HOME/miniconda2/bin:$PATH"
$ source activate coreml
Reference to scipy.ndimage.maximum_filter
Get cat.bin
import CoreML
emcc -o zstd.js -O0 \
-s WASM=1 \
-s "MODULARIZE=1" \
using System.Collections; | |
using System.Collections.Generic; | |
using System.Runtime.InteropServices; | |
using System; | |
using UnityEngine; | |
using AOT; | |
namespace UnityEngine.XR.iOS | |
{ | |
public class Jetfire { |
using UnityEngine; | |
using Windows.Kinect; | |
using System.Runtime.InteropServices; | |
using System; | |
using System.Linq; | |
using UnityEngine.Rendering; | |
[RequireComponent(typeof(MeshRenderer))] | |
[RequireComponent(typeof(MeshFilter))] | |
public class KinectView : MonoBehaviour { |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
// https://www.csharpcodi.com/vs2/1607/MBINCompiler/MBINCompiler/HalfHelper.cs/ | |
public static class HalfHelper | |
{ | |
private static uint[] mantissaTable = GenerateMantissaTable(); | |
private static uint[] exponentTable = GenerateExponentTable(); |