Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation
This project
Loading...
Sign in
谢明辉
/
vion-label
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 7f6cb362
authored
May 10, 2022
by
翟柏林
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
[chg]提取匹配分数配置
1 parent
9df8b083
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
label-platform/src/main/java/com/viontech/label/platform/controller/web/ReidController.java
label-platform/src/main/java/com/viontech/label/platform/service/main/ReidService.java
label-platform/src/main/java/com/viontech/label/platform/controller/web/ReidController.java
View file @
7f6cb36
...
...
@@ -208,8 +208,9 @@ public class ReidController {
public
Object
getSimilarPerson
(
@RequestParam
Long
[]
picIdArr
,
@RequestParam
Long
packId
,
@RequestParam
Long
size
,
@RequestParam
(
required
=
false
)
Integer
timeInterval
,
@RequestParam
(
required
=
false
)
String
currentPerson
,
@RequestParam
(
required
=
false
,
defaultValue
=
"0"
)
Integer
recursion
)
{
Map
<
String
,
Map
<
String
,
List
<
SubTask
>>>
similarPerson
=
reidService
.
getSimilarPerson
(
picIdArr
,
packId
,
size
,
timeInterval
,
currentPerson
,
recursion
);
@RequestParam
(
required
=
false
,
defaultValue
=
"0"
)
Integer
recursion
,
@RequestParam
(
required
=
false
,
defaultValue
=
"60"
)
Integer
score
)
{
Map
<
String
,
Map
<
String
,
List
<
SubTask
>>>
similarPerson
=
reidService
.
getSimilarPerson
(
picIdArr
,
packId
,
size
,
timeInterval
,
currentPerson
,
recursion
,
score
);
return
JsonMessageUtil
.
getSuccessJsonMsg
(
"success"
,
similarPerson
);
}
...
...
label-platform/src/main/java/com/viontech/label/platform/service/main/ReidService.java
View file @
7f6cb36
...
...
@@ -507,7 +507,7 @@ public class ReidService {
/**
* 根据所选择的图片获取相似的人
*/
public
Map
<
String
,
Map
<
String
,
List
<
SubTask
>>>
getSimilarPerson
(
Long
[]
subTaskIdArr
,
Long
packId
,
Long
size
,
Integer
timeInterval
,
String
currentPerson
,
Integer
recursion
)
{
public
Map
<
String
,
Map
<
String
,
List
<
SubTask
>>>
getSimilarPerson
(
Long
[]
subTaskIdArr
,
Long
packId
,
Long
size
,
Integer
timeInterval
,
String
currentPerson
,
Integer
recursion
,
Integer
score
)
{
List
<
BodyFeature
>
bodyFeatures
=
new
ArrayList
<>();
String
reidPoolName
=
Constants
.
getReidPoolName
(
packId
);
Date
countTimeGTE
=
null
;
...
...
@@ -556,7 +556,7 @@ public class ReidService {
List
<
Person
>
matchBodies
=
result
.
getMatchBodies
();
for
(
Person
match
:
matchBodies
)
{
String
personId
=
match
.
getPersonId
();
if
(
match
.
getScore
()
<
60
F
||
personUnidSet
.
contains
(
personId
))
{
if
(
match
.
getScore
()
<
score
.
floatValue
()
||
personUnidSet
.
contains
(
personId
))
{
continue
;
}
personScoreMap
.
put
(
personId
,
match
.
getScore
());
...
...
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment