Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gamera_videos_no_ui
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liusq
gamera_videos_no_ui
Commits
09a6a20f
Commit
09a6a20f
authored
Jan 10, 2025
by
“liusq”
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove ' RecognizedInfo.cpp' and ' RecognizedInfo.h'
parent
3dea4220
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
64 deletions
+0
-64
RecognizedInfo.cpp
+0
-39
RecognizedInfo.h
+0
-25
No files found.
RecognizedInfo.cpp
deleted
100644 → 0
View file @
3dea4220
#include " RecognizedInfo.h"
RecognizedInfo
::
RecognizedInfo
(){
}
RecognizedInfo
::
RecognizedInfo
(
const
QString
&
plate
,
qint64
time
,
QString
color
)
:
licensePlate
(
plate
),
recognizeTime
(
time
),
color
(
color
)
{
}
// Getter 方法
QString
RecognizedInfo
::
getLicensePlate
()
{
return
licensePlate
;
}
qint64
RecognizedInfo
::
getRecognizeTime
()
{
return
recognizeTime
;
}
QString
RecognizedInfo
::
getColor
(){
return
color
;
}
// Setter 方法
void
RecognizedInfo
::
setLicensePlate
(
const
QString
&
plate
)
{
this
->
licensePlate
=
plate
;
}
void
RecognizedInfo
::
setRecognizeTime
(
qint64
time
)
{
this
->
recognizeTime
=
time
;
}
void
RecognizedInfo
::
setColor
(
QString
&
color
){
this
->
color
=
color
;
}
RecognizedInfo
::~
RecognizedInfo
(){
}
RecognizedInfo.h
deleted
100644 → 0
View file @
3dea4220
#ifndef RECOGNITIONINFO_H
#define RECOGNITIONINFO_H
#include <QString>
#include <map>
class
RecognizedInfo
{
public
:
RecognizedInfo
(
const
QString
&
plate
,
qint64
time
,
QString
color
);
RecognizedInfo
();
~
RecognizedInfo
();
QString
getLicensePlate
();
qint64
getRecognizeTime
()
;
QString
getColor
();
void
setLicensePlate
(
const
QString
&
plate
);
void
setRecognizeTime
(
qint64
time
);
void
setColor
(
QString
&
color
);
private
:
QString
licensePlate
;
// 车牌号码
qint64
recognizeTime
;
// 识别时间
QString
color
;
};
#endif // RECOGNITIONINFO_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment