Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
D
datang
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhaoyunfei
datang
Commits
26243a88
Commit
26243a88
authored
Feb 23, 2021
by
wanghailong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加配置版抛撒初始化,测试抛撒和yolo共存没结果的问题
parent
ad865bfd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
63 additions
and
41 deletions
+63
-41
DetectAnomaly.cpp
DetectAnomaly.cpp
+21
-2
DetectAnomaly.h
DetectAnomaly.h
+9
-8
ObjLeftDetect.cpp
ObjLeftDetect.cpp
+1
-1
ObjLeftDetect.h
ObjLeftDetect.h
+1
-1
main.cpp
main.cpp
+31
-29
No files found.
DetectAnomaly.cpp
View file @
26243a88
...
@@ -39,7 +39,26 @@ bool DetectAnomaly::detectAnomaly(cv::Mat img, vector<vector<int>>* resultLocati
...
@@ -39,7 +39,26 @@ bool DetectAnomaly::detectAnomaly(cv::Mat img, vector<vector<int>>* resultLocati
/************************************************************************/
/************************************************************************/
/* abandoned object detection algorithm */
/* abandoned object detection algorithm */
/************************************************************************/
/************************************************************************/
obj_left
=
_objleft
.
process
(
myimg1
,
yolo_test
,
resultLocation
);
obj_left
=
_objleft
.
process
(
myimg1
,
resultLocation
);
return
obj_left
;
}
bool
DetectAnomaly
::
detectAnomaly
(
config
cfg
,
cv
::
Mat
img
,
vector
<
vector
<
int
>>*
resultLocation
)
{
//cv::Rect rect(0,610,2400,910);
cv
::
Rect
rect
(
0
,
img
.
rows
-
cfg
.
image_height
,
cfg
.
image_width
,
cfg
.
image_height
);
img
=
img
(
rect
);
//cv::resize(img, img,cv::Size(2400*0.25, 910*0.25), cv::INTER_CUBIC);
cv
::
resize
(
img
,
img
,
cv
::
Size
(
cfg
.
image_width
*
cfg
.
input_resize
,
cfg
.
image_height
*
cfg
.
input_resize
),
cv
::
INTER_CUBIC
);
img
.
copyTo
(
myimg
);
medianBlur
(
mat_myimg
,
mat_myimg
,
3
);
opencv_2_myImage
(
myimg
,
myimg1
);
//transfer opencv data to myimage data
/************************************************************************/
/* abandoned object detection algorithm */
/************************************************************************/
obj_left
=
_objleft
.
process
(
myimg1
,
resultLocation
);
return
obj_left
;
return
obj_left
;
}
}
...
@@ -236,7 +255,7 @@ DetectAnomaly::DetectAnomaly(config cfg) : cfgAnomaly(cfg)
...
@@ -236,7 +255,7 @@ DetectAnomaly::DetectAnomaly(config cfg) : cfgAnomaly(cfg)
opencv_2_myImage
(
mask
,
mymask
);
opencv_2_myImage
(
mask
,
mymask
);
#ifdef DEBUG
#ifdef DEBUG
cv
::
imwrite
(
"mask.jpg"
,
Image1
);
//
cv::imwrite("mask.jpg", Image1);
cv
::
waitKey
(
1
);
cv
::
waitKey
(
1
);
//cvReleaseImage(&Image1);
//cvReleaseImage(&Image1);
#endif
#endif
...
...
DetectAnomaly.h
View file @
26243a88
...
@@ -10,18 +10,18 @@
...
@@ -10,18 +10,18 @@
typedef
struct
ConfigAnomaly
typedef
struct
ConfigAnomaly
{
{
int
owner_search_roi
;
int
owner_search_roi
=
10
;
int
gmm_learn_frame
;
//frame number for GMM initialization
int
gmm_learn_frame
;
//frame number for GMM initialization
int
max_sfg
;
int
max_sfg
=
15625
;
int
min_sfg
;
int
min_sfg
=
15
;
int
max_fg
;
int
max_fg
=
75000
;
int
min_fg
;
int
min_fg
=
50
;
int
buffer_length
;
int
buffer_length
;
int
image_height
;
int
image_height
;
int
image_width
;
int
image_width
;
double
gmm_long_learn_rate
;
double
gmm_long_learn_rate
=
0
.
0001
;
double
gmm_short_learn_rate
;
double
gmm_short_learn_rate
=
0
.
002
;
double
input_resize
;
double
input_resize
=
0
.
25
;
int
top_left_x
;
int
top_left_x
;
int
top_left_y
;
int
top_left_y
;
...
@@ -58,6 +58,7 @@ private:
...
@@ -58,6 +58,7 @@ private:
int
arr
[
1
];
int
arr
[
1
];
public
:
public
:
bool
detectAnomaly
(
config
cfg
,
cv
::
Mat
img
,
vector
<
vector
<
int
>>*
resultLocation
);
bool
detectAnomaly
(
cv
::
Mat
img
,
vector
<
vector
<
int
>>*
resultLocation
);
bool
detectAnomaly
(
cv
::
Mat
img
,
vector
<
vector
<
int
>>*
resultLocation
);
DetectAnomaly
();
DetectAnomaly
();
DetectAnomaly
(
config
cfg
);
DetectAnomaly
(
config
cfg
);
...
...
ObjLeftDetect.cpp
View file @
26243a88
...
@@ -90,7 +90,7 @@ void ObjLeftDetect::initialize()
...
@@ -90,7 +90,7 @@ void ObjLeftDetect::initialize()
}
}
bool
ObjLeftDetect
::
process
(
myImage
*
input
,
cv
::
Mat
show_pic
,
vector
<
vector
<
int
>>*
resultLocation
)
bool
ObjLeftDetect
::
process
(
myImage
*
input
,
vector
<
vector
<
int
>>*
resultLocation
)
{
{
cv
::
Mat
test
;
cv
::
Mat
test
;
test
=
cv
::
Mat
(
cv
::
Size
(
new_width
,
new_height
),
CV_8UC3
);
test
=
cv
::
Mat
(
cv
::
Size
(
new_width
,
new_height
),
CV_8UC3
);
...
...
ObjLeftDetect.h
View file @
26243a88
...
@@ -28,7 +28,7 @@ public:
...
@@ -28,7 +28,7 @@ public:
ObjLeftDetect
();
ObjLeftDetect
();
ObjLeftDetect
(
myImage
*
input
,
int
set_MOG_LearnFrame
,
int
set_min_area
,
int
set_buffer_len
,
myImage
*
mask
);
ObjLeftDetect
(
myImage
*
input
,
int
set_MOG_LearnFrame
,
int
set_min_area
,
int
set_buffer_len
,
myImage
*
mask
);
~
ObjLeftDetect
();
~
ObjLeftDetect
();
bool
process
(
myImage
*
input
,
cv
::
Mat
show_pic
,
vector
<
vector
<
int
>>*
resultLocation
);
bool
process
(
myImage
*
input
,
vector
<
vector
<
int
>>*
resultLocation
);
CBM_model
*
_CBM_model
;
CBM_model
*
_CBM_model
;
//cv::VideoWriter _writer1, _writer2;
//cv::VideoWriter _writer1, _writer2;
cv
::
Mat
A
,
B
;
cv
::
Mat
A
,
B
;
...
...
main.cpp
View file @
26243a88
...
@@ -27,20 +27,21 @@ int main()
...
@@ -27,20 +27,21 @@ int main()
cv
::
Mat
qImg
;
cv
::
Mat
qImg
;
//抛洒物
//抛洒物
// config opt;
config
opt
;
// opt.image_height = 910;
opt
.
image_height
=
910
;
// opt.image_width = 2400;
opt
.
image_width
=
2400
;
// opt.buffer_length = 200;
opt
.
buffer_length
=
200
;
// opt.gmm_learn_frame = 600;
opt
.
gmm_learn_frame
=
600
;
// opt.top_left_x = 1136;
opt
.
top_left_x
=
1136
;
// opt.top_left_y = 3;
opt
.
top_left_y
=
3
;
// opt.top_right_x = 1340;
opt
.
top_right_x
=
1340
;
// opt.top_right_y = 10;
opt
.
top_right_y
=
10
;
// opt.bottom_left_x = 198;
opt
.
bottom_left_x
=
198
;
// opt.bottom_left_y = 853;
opt
.
bottom_left_y
=
853
;
// opt.bottom_right_x = 2168;
opt
.
bottom_right_x
=
2168
;
// opt.bottom_right_y = 842;
opt
.
bottom_right_y
=
842
;
DetectAnomaly
detect
;
//DetectAnomaly* detect = new DetectAnomaly(opt);
DetectAnomaly
*
detect
=
new
DetectAnomaly
();
int
pic_num
=
0
;
int
pic_num
=
0
;
#ifdef DEBUG
#ifdef DEBUG
//cv::VideoWriter _writer;
//cv::VideoWriter _writer;
...
@@ -64,19 +65,20 @@ int main()
...
@@ -64,19 +65,20 @@ int main()
// continue;
// continue;
// }
// }
obj_left
=
detect
.
detectAnomaly
(
qImg
,
&
resultLocation
);
//obj_left = detect->detectAnomaly(opt,qImg,&resultLocation);
obj_left
=
detect
->
detectAnomaly
(
qImg
,
&
resultLocation
);
//yolo_infer
//
//
yolo_infer
//
vector<cv::Mat>* input_mats = new vector<cv::Mat>;
vector
<
cv
::
Mat
>*
input_mats
=
new
vector
<
cv
::
Mat
>
;
//
input_mats->push_back(qImg.clone());
input_mats
->
push_back
(
qImg
.
clone
());
//
std::map<int,Results*> results_map;
std
::
map
<
int
,
Results
*>
results_map
;
//
Results* results = new Results;
Results
*
results
=
new
Results
;
//
results_map.insert(std::make_pair(0,results));
results_map
.
insert
(
std
::
make_pair
(
0
,
results
));
//
inference(&results_map,input_mats);
inference
(
&
results_map
,
input_mats
);
//
delete results_map[0];
delete
results_map
[
0
];
//
delete input_mats;
delete
input_mats
;
#ifdef DEBUG
#ifdef DEBUG
// if (obj_left == true)
// if (obj_left == true)
// {
// {
...
@@ -85,9 +87,9 @@ int main()
...
@@ -85,9 +87,9 @@ int main()
// for(int i = 0; i < resultLocation.size();i++){
// for(int i = 0; i < resultLocation.size();i++){
// int x0 = resultLocation[i][0] * 4;
// int x0 = resultLocation[i][0] * 4;
// int y0 = resultLocation[i][1] * 4 +
75
0;
// int y0 = resultLocation[i][1] * 4 +
61
0;
// int x1 = resultLocation[i][2] * 4;
// int x1 = resultLocation[i][2] * 4;
// int y1 = resultLocation[i][3] * 4 +
75
0;
// int y1 = resultLocation[i][3] * 4 +
61
0;
// cv::Point p1(x0, y0);
// cv::Point p1(x0, y0);
// cv::Point p2(x1, y1);
// cv::Point p2(x1, y1);
...
@@ -95,7 +97,7 @@ int main()
...
@@ -95,7 +97,7 @@ int main()
// }
// }
// stringstream ss1;
// stringstream ss1;
// string outFile;
// string outFile;
// ss1 << "
yolov3
_"
// ss1 << "
abanoned
_"
// << "show"
// << "show"
// << count
// << count
// << ".jpg";
// << ".jpg";
...
@@ -109,12 +111,12 @@ int main()
...
@@ -109,12 +111,12 @@ int main()
gettimeofday
(
&
end
,
NULL
);
gettimeofday
(
&
end
,
NULL
);
time
=
(
1000000
*
(
end
.
tv_sec
-
start
.
tv_sec
)
+
end
.
tv_usec
-
start
.
tv_usec
)
/
time
=
(
1000000
*
(
end
.
tv_sec
-
start
.
tv_sec
)
+
end
.
tv_usec
-
start
.
tv_usec
)
/
(
1000.0
);
(
1000.0
);
cout
<<
"total time = "
<<
time
<<
"ms"
<<
endl
;
//
cout << "total time = " << time << "ms" << endl;
#ifdef DEBUG
#ifdef DEBUG
printf
(
"Finished detec, then release ...
\n
"
);
printf
(
"Finished detec, then release ...
\n
"
);
#endif
#endif
delete
detect
;
//system("pause");
//system("pause");
return
0
;
return
0
;
}
}
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