추론수정
This commit is contained in:
@@ -292,7 +292,7 @@ public class InferenceResultDto {
|
|||||||
return (double) (this.detectingEndCnt / this.detectingCnt) * 100.0;
|
return (double) (this.detectingEndCnt / this.detectingCnt) * 100.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getM1DurationFormatted() {
|
public String getM1Duration() {
|
||||||
if (this.m1ModelStartDttm == null || this.m1ModelEndDttm == null) {
|
if (this.m1ModelStartDttm == null || this.m1ModelEndDttm == null) {
|
||||||
return "00:00:00";
|
return "00:00:00";
|
||||||
}
|
}
|
||||||
@@ -304,7 +304,7 @@ public class InferenceResultDto {
|
|||||||
return String.format("%02d:%02d:%02d", hours, minutes, seconds);
|
return String.format("%02d:%02d:%02d", hours, minutes, seconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getM2DurationFormatted() {
|
public String getM2Duration() {
|
||||||
if (this.m2ModelStartDttm == null || this.m2ModelEndDttm == null) {
|
if (this.m2ModelStartDttm == null || this.m2ModelEndDttm == null) {
|
||||||
return "00:00:00";
|
return "00:00:00";
|
||||||
}
|
}
|
||||||
@@ -316,7 +316,7 @@ public class InferenceResultDto {
|
|||||||
return String.format("%02d:%02d:%02d", hours, minutes, seconds);
|
return String.format("%02d:%02d:%02d", hours, minutes, seconds);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getM3DurationFormatted() {
|
public String getM3Duration() {
|
||||||
if (this.m3ModelStartDttm == null || this.m3ModelEndDttm == null) {
|
if (this.m3ModelStartDttm == null || this.m3ModelEndDttm == null) {
|
||||||
return "00:00:00";
|
return "00:00:00";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user