reid from https://github.com/michuanhaohao/reid-strong-baseline
zhangmeng
2020-01-10 fd3d3dfc876e0d05d3a759ee81aa7d238f57d414
debug split
1个文件已修改
4 ■■■ 已修改文件
run.go 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
run.go
@@ -90,9 +90,9 @@
            msg, err = c.Recv()
            if err != nil {
                s.fnLogger("REID~~~~~~Recv Image Error : ", err)
                continue
            }
            i := &protomsg.Image{}
            err := proto.Unmarshal(msg, i)
            if err != nil {
@@ -103,6 +103,8 @@
                s.fnLogger("REID~~~~~~protomsg.Image data null")
                continue
            }
            s.fnLogger("REID~~~~~~Recv Image:", len(i.Data))
            feat := s.handle.Extract2(unsafe.Pointer(&i.Data[0]), int(i.Width), int(i.Height), 3)
            if feat == nil {