From bbb5de27a1ebc25b6b4f0dccc674729f27105680 Mon Sep 17 00:00:00 2001
From: liuxiaolong <736321739@qq.com>
Date: 星期四, 27 六月 2019 17:05:39 +0800
Subject: [PATCH] test

---
 service/FaceSdkService.go |   18 ++++++++++++------
 1 files changed, 12 insertions(+), 6 deletions(-)

diff --git a/service/FaceSdkService.go b/service/FaceSdkService.go
index 93935d1..9f1a09f 100644
--- a/service/FaceSdkService.go
+++ b/service/FaceSdkService.go
@@ -27,9 +27,10 @@
 
 func TestPushImgMsg() {
 	InitService()
-	proImg := readImgFile()
 
-	if b, err := proto.Marshal(&proImg);err !=nil{
+	i := readImgFile()
+	fmt.Printf("width:%d,height:%d,data.length:%d,timestamp:%s,id:%d\n",i.Width,i.Height,len(i.Data),i.Timestamp,i.Id)
+	if b, err := proto.Marshal(&i);err !=nil{
 		fmt.Println("protoImage marshal err")
 		return
 	} else {
@@ -70,12 +71,17 @@
 		fmt.Println("file not exist")
 		return i
 	}
+	width := int32(picMat.Rows())
+	height := int32(picMat.Cols())
+	data := picMat.ToBytes()
 	i = protomsg.Image{
-		Width:int32(picMat.Rows()),
-		Height:int32(picMat.Cols()),
-		Timestamp:formatTimeStr,
-		Data:[]byte(picMat.DataPtrUint8()),
+		Width: width,
+		Height: height,
+		Timestamp: formatTimeStr,
+		Data: data,
+		Id: timeUnix,
 	}
+	fmt.Println("gocv read img completed")
 	return i
 }
 

--
Gitblit v1.8.0