File size: 10,732 Bytes
bbd25eb bdab942 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb dbe97fd bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 68765d4 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 58dd36a bbd25eb 73abbea bbd25eb 73abbea bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 58dd36a bbd25eb 58dd36a 7d17e14 58dd36a 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 68765d4 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 79d5148 fbcf6e3 bbd25eb 79d5148 fbcf6e3 bbd25eb 68765d4 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb b5a6af4 bbd25eb 7d17e14 bbd25eb 7d17e14 bbd25eb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
using UnityEngine;
using Unity.Sentis;
using UnityEngine.Video;
using UnityEngine.UI;
using Lays = Unity.Sentis.Layers;
/*
* Blaze Face Inference
* ====================
*
* Basic inference script for blaze face
*
* Put this script on the Main Camera
* Put blazeface.sentis in the Assets/StreamingAssets folder
* Create a RawImage in the scene
* Put a link to that image in previewUI
* Put a video in Assets/StreamingAssets folder and put the name of it int videoName
* Or put a test image in inputImage
* Set inputType to appropriate input
*/
public class RunBlazeFace : MonoBehaviour
{
//Drag a link to a raw image here:
public RawImage previewUI = null;
// Put your bounding box sprite image here
public Sprite faceTexture;
// 6 optional sprite images (left eye, right eye, nose, mouth, left ear, right ear)
public Sprite[] markerTextures;
public string videoName = "chatting.mp4";
//
public Texture2D inputImage;
public InputType inputType = InputType.Video;
Vector2Int resolution = new Vector2Int(640, 640);
WebCamTexture webcam;
VideoPlayer video;
const BackendType backend = BackendType.GPUCompute;
RenderTexture targetTexture;
public enum InputType { Image, Video, Webcam };
//Some adjustable parameters for the model
[SerializeField, Range(0, 1)] float iouThreshold = 0.5f;
[SerializeField, Range(0, 1)] float scoreThreshold = 0.5f;
int maxOutputBoxes = 64;
IWorker worker;
//Holds input image size
int size = 128;
Ops ops;
ITensorAllocator allocator;
Model model;
//webcam device name:
const string deviceName = "";
bool closing = false;
public struct BoundingBox
{
public float centerX;
public float centerY;
public float width;
public float height;
}
void Start()
{
allocator = new TensorCachingAllocator();
//(Note: if using a webcam on mobile get permissions here first)
targetTexture = new RenderTexture(resolution.x, resolution.y, 0);
SetupInput();
SetupModel();
SetupEngine();
}
void SetupInput()
{
switch (inputType)
{
case InputType.Webcam:
{
webcam = new WebCamTexture(deviceName, resolution.x, resolution.y);
webcam.requestedFPS = 30;
webcam.Play();
break;
}
case InputType.Video:
{
video = gameObject.AddComponent<VideoPlayer>();//new VideoPlayer();
video.renderMode = VideoRenderMode.APIOnly;
video.source = VideoSource.Url;
video.url = Application.streamingAssetsPath + "/"+videoName;
video.isLooping = true;
video.Play();
break;
}
default:
{
Graphics.Blit(inputImage, targetTexture);
}
break;
}
}
void Update()
{
if (inputType == InputType.Webcam)
{
// Format video input
if (!webcam.didUpdateThisFrame) return;
var aspect1 = (float)webcam.width / webcam.height;
var aspect2 = (float)resolution.x / resolution.y;
var gap = aspect2 / aspect1;
var vflip = webcam.videoVerticallyMirrored;
var scale = new Vector2(gap, vflip ? -1 : 1);
var offset = new Vector2((1 - gap) / 2, vflip ? 1 : 0);
Graphics.Blit(webcam, targetTexture, scale, offset);
}
if (inputType == InputType.Video)
{
var aspect1 = (float)video.width / video.height;
var aspect2 = (float)resolution.x / resolution.y;
var gap = aspect2 / aspect1;
var vflip = false;
var scale = new Vector2(gap, vflip ? -1 : 1);
var offset = new Vector2((1 - gap) / 2, vflip ? 1 : 0);
Graphics.Blit(video.texture, targetTexture, scale, offset);
}
if (inputType == InputType.Image)
{
Graphics.Blit(inputImage, targetTexture);
}
if (Input.GetKeyDown(KeyCode.Escape))
{
closing = true;
Application.Quit();
}
if (Input.GetKeyDown(KeyCode.P))
{
previewUI.enabled = !previewUI.enabled;
}
}
void LateUpdate()
{
if (!closing)
{
RunInference(targetTexture);
}
}
//Calculate the centers of the grid squares for two 16x16 grids and six 8x8 grids
//The positions of the faces are given relative to these "anchor points"
float[] GetGridBoxCoords()
{
var offsets = new float[896 * 4];
int n = 0;
AddGrid(offsets, 16, 2, 8, ref n);
AddGrid(offsets, 8, 6, 16, ref n);
return offsets;
}
void AddGrid(float[] offsets, int rows, int repeats, int cellWidth, ref int n)
{
for (int j = 0; j < repeats * rows * rows; j++)
{
offsets[n++] = cellWidth * ((j / repeats) % rows - (rows - 1) * 0.5f);
offsets[n++] = cellWidth * ((j / repeats / rows) - (rows - 1) * 0.5f);
n += 2;
}
}
void SetupModel()
{
float[] offsets = GetGridBoxCoords();
model = ModelLoader.Load(Application.streamingAssetsPath + "/blazeface.sentis");
//We need to add extra layers to the model in order to aggregate the box predicions:
size = model.inputs[0].shape.ToTensorShape()[1]; // Input tensor width
model.AddConstant(new Lays.Constant("0", new int[] { 0 }));
model.AddConstant(new Lays.Constant("2", new int[] { 2 }));
model.AddConstant(new Lays.Constant("4", new int[] { 4 }));
model.AddConstant(new Lays.Constant("offsets", new TensorFloat(new TensorShape(1, 896, 4), offsets)));
model.AddLayer(new Lays.Slice("boxes", "regressors", "0", "4", "2"));
model.AddLayer(new Lays.Transpose("scores", "classificators", new int[] { 0, 2, 1 }));
model.AddLayer(new Lays.Add("boxCoords", "boxes", "offsets"));
model.AddOutput("boxCoords");
model.AddConstant(new Lays.Constant("maxOutputBoxes", new int[] { maxOutputBoxes }));
model.AddConstant(new Lays.Constant("iouThreshold", new float[] { iouThreshold }));
model.AddConstant(new Lays.Constant("scoreThreshold", new float[] { scoreThreshold }));
model.AddLayer(new Lays.NonMaxSuppression("NMS", "boxCoords", "scores",
"maxOutputBoxes", "iouThreshold", "scoreThreshold",
centerPointBox: Lays.CenterPointBox.Center
));
model.AddOutput("NMS");
}
public void SetupEngine()
{
worker = WorkerFactory.CreateWorker(backend, model);
ops = WorkerFactory.CreateOps(backend, allocator);
}
void DrawFaces(TensorFloat index3, TensorFloat regressors, int NMAX, Vector2 scale)
{
for (int n = 0; n < NMAX; n++)
{
//Draw bounding box of face
var box = new BoundingBox
{
centerX = index3[0, n, 0] * scale.x,
centerY = index3[0, n, 1] * scale.y,
width = index3[0, n, 2] * scale.x,
height = index3[0, n, 3] * scale.y
};
DrawBox(box, faceTexture);
if (regressors == null) continue;
//Draw markers for eyes, ears, nose, mouth:
for (int j = 0; j < 6; j++)
{
var marker = new BoundingBox
{
centerX = box.centerX + (regressors[0, n, 4 + j * 2] - regressors[0, n, 0]) * scale.x,
centerY = box.centerY + (regressors[0, n, 4 + j * 2 + 1] - regressors[0, n, 1]) * scale.y,
width = 8.0f * scale.x,
height = 8.0f * scale.y,
};
DrawBox(marker, j < markerTextures.Length ? markerTextures[j] : faceTexture);
}
}
}
void ExecuteML(Texture source)
{
var transform = new TextureTransform();
transform.SetDimensions(size, size, 3);
transform.SetTensorLayout(0, 3, 1, 2);
using var image0 = TextureConverter.ToTensor(source, transform);
// Pre-process the image to make input in range (-1..1)
using var image = ops.Mad(image0, 2f, -1f);
worker.Execute(image);
using var boxCoords = worker.PeekOutput("boxCoords") as TensorFloat; //face coords
using var regressors = worker.PeekOutput("regressors") as TensorFloat; //contains markers
var NM1 = worker.PeekOutput("NMS") as TensorInt;
using var boxCoords2 = ops.Reshape(boxCoords, boxCoords.shape.Unsqueeze(0));
using var output = ops.GatherND(boxCoords2, NM1, 0);
using var regressors2 = ops.Reshape(regressors,regressors.shape.Unsqueeze(0));
using var markersOutput = ops.GatherND(regressors2, NM1, 0);
output.MakeReadable();
markersOutput.MakeReadable();
ClearAnnotations();
Vector2 markerScale = previewUI.rectTransform.rect.size / size;
DrawFaces(output, markersOutput, output.shape[0], markerScale);
}
void RunInference(Texture input)
{
// Face detection
ExecuteML(input);
previewUI.texture = input;
}
public void DrawBox(BoundingBox box, Sprite sprite)
{
var panel = new GameObject("ObjectBox");
panel.AddComponent<CanvasRenderer>();
panel.AddComponent<Image>();
panel.transform.SetParent(previewUI.transform, false);
var img = panel.GetComponent<Image>();
img.color = Color.white;
img.sprite = sprite;
img.type = Image.Type.Sliced;
panel.transform.localPosition = new Vector3(box.centerX, -box.centerY);
RectTransform rt = panel.GetComponent<RectTransform>();
rt.sizeDelta = new Vector2(box.width, box.height);
}
public void ClearAnnotations()
{
foreach (Transform child in previewUI.transform)
{
Destroy(child.gameObject);
}
}
void CleanUp()
{
closing = true;
ops?.Dispose();
allocator?.Dispose();
if (webcam) Destroy(webcam);
if (video) Destroy(video);
RenderTexture.active = null;
targetTexture.Release();
worker?.Dispose();
worker = null;
}
void OnDestroy()
{
CleanUp();
}
}
|