From da6994753d009838e06b46f4ead5b67e1890dcae Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Wed, 20 May 2020 00:42:04 +0900 Subject: [PATCH] Cosmetic change --- _example/blazeface/main.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/_example/blazeface/main.go b/_example/blazeface/main.go index 957b0d71..2b5ad9f9 100644 --- a/_example/blazeface/main.go +++ b/_example/blazeface/main.go @@ -28,21 +28,10 @@ var ( type ssdResult struct { loc []float32 - clazz []float32 score []float32 mat gocv.Mat } -type ssdClass struct { - loc []float32 - score float64 - index int -} - -type result interface { - Image() image.Image -} - func copySlice(f []float32) []float32 { ff := make([]float32, len(f), len(f)) copy(ff, f)