-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
markjrzhang
committed
Jul 30, 2024
1 parent
ea7c875
commit ed078d6
Showing
20 changed files
with
420 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
src/main/java/com/qcloud/cos/model/ciModel/metaInsight/Aggregations.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/main/java/com/qcloud/cos/model/ciModel/persistence/FaceDetailInfos.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.qcloud.cos.model.ciModel.persistence; | ||
|
||
import com.qcloud.cos.model.ciModel.ai.FaceRect; | ||
import com.thoughtworks.xstream.annotations.XStreamImplicit; | ||
|
||
import java.util.List; | ||
|
||
public class FaceDetailInfos { | ||
@XStreamImplicit(itemFieldName = "FaceRect") | ||
List<FaceRect> faceRectList; | ||
|
||
public List<FaceRect> getFaceRectList() { | ||
return faceRectList; | ||
} | ||
|
||
public void setFaceRectList(List<FaceRect> faceRectList) { | ||
this.faceRectList = faceRectList; | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
src/main/java/com/qcloud/cos/model/ciModel/persistence/FacePlateMosaicObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package com.qcloud.cos.model.ciModel.persistence; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
|
||
public class FacePlateMosaicObject { | ||
@JsonProperty("is_pic_info") | ||
private int isPicInfo = 1; | ||
private List<RuleItem> rules; | ||
|
||
public int getIsPicInfo() { | ||
return isPicInfo; | ||
} | ||
|
||
public void setIsPicInfo(int isPicInfo) { | ||
this.isPicInfo = isPicInfo; | ||
} | ||
|
||
public List<RuleItem> getRules() { | ||
if (rules == null) { | ||
rules = new ArrayList<>(); | ||
} | ||
return rules; | ||
} | ||
|
||
public void setRules(List<RuleItem> rules) { | ||
this.rules = rules; | ||
} | ||
} | ||
|
38 changes: 38 additions & 0 deletions
38
src/main/java/com/qcloud/cos/model/ciModel/persistence/FailedMessage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
package com.qcloud.cos.model.ciModel.persistence; | ||
|
||
import com.thoughtworks.xstream.annotations.XStreamAlias; | ||
|
||
public class FailedMessage { | ||
@XStreamAlias("State") | ||
private String state; | ||
|
||
@XStreamAlias("ErrorCode") | ||
private String errorCode; | ||
|
||
@XStreamAlias("ErrorMsg") | ||
private String errorMsg; | ||
|
||
public String getState() { | ||
return state; | ||
} | ||
|
||
public void setState(String state) { | ||
this.state = state; | ||
} | ||
|
||
public String getErrorCode() { | ||
return errorCode; | ||
} | ||
|
||
public void setErrorCode(String errorCode) { | ||
this.errorCode = errorCode; | ||
} | ||
|
||
public String getErrorMsg() { | ||
return errorMsg; | ||
} | ||
|
||
public void setErrorMsg(String errorMsg) { | ||
this.errorMsg = errorMsg; | ||
} | ||
} |
Oops, something went wrong.