Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Code Computer Vision
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PolySTAR
RoboMaster
Computer Vision
Code Computer Vision
Commits
71a75c1f
Commit
71a75c1f
authored
5 years ago
by
antonin boucarut
Browse files
Options
Downloads
Patches
Plain Diff
changes to run script correctly
parent
34aab4ed
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
common/research/dataset/twitch/new_vision.py
+12
-51
12 additions, 51 deletions
common/research/dataset/twitch/new_vision.py
common/research/dataset/twitch/robots_views_extractor.py
+1
-1
1 addition, 1 deletion
common/research/dataset/twitch/robots_views_extractor.py
with
13 additions
and
52 deletions
common/research/dataset/twitch/new_vision.py
+
12
−
51
View file @
71a75c1f
import
cv2
from
pathlib
import
Path
import
numpy
import
math
import
math
import
time
from
pathlib
import
Path
from
research.constants
import
TWITCH_DSET
RES_DIR
:
Path
=
TWITCH_DSET
/
'
robots-views
'
t1
=
time
.
time
()
import
cv2
Y_MIN_Z1
=
20
Y_MIN_Z1
=
20
Y_MAX_Z1
=
70
Y_MAX_Z1
=
70
...
@@ -26,19 +21,19 @@ B = 2
...
@@ -26,19 +21,19 @@ B = 2
class
Zone
:
class
Zone
:
def
__init__
(
self
,
y_min
,
y_max
,
threshold
,
img
_pixels
,
image_mask
):
def
__init__
(
self
,
y_min
,
y_max
,
threshold
,
active
_pixels
,
image_mask
):
self
.
y_min
=
y_min
self
.
y_min
=
y_min
self
.
y_max
=
y_max
self
.
y_max
=
y_max
self
.
pixels
=
[
self
.
pixels
=
[
(
pix
[
0
],
pix
[
1
])
(
pix
[
0
],
pix
[
1
])
for
pix
in
img
_pixels
for
pix
in
active
_pixels
if
20
<
pix
[
1
]
<
70
if
self
.
y_min
<
pix
[
1
]
<
self
.
y_max
]
]
self
.
moyenne_
R
=
self
.
get_moyenne
(
R
,
image_mask
)
self
.
moyenne_
r
=
self
.
get_moyenne
(
R
,
image_mask
)
self
.
moyenne_
G
=
self
.
get_moyenne
(
G
,
image_mask
)
self
.
moyenne_
g
=
self
.
get_moyenne
(
G
,
image_mask
)
self
.
moyenne_
B
=
self
.
get_moyenne
(
B
,
image_mask
)
self
.
moyenne_
b
=
self
.
get_moyenne
(
B
,
image_mask
)
self
.
threshold
=
threshold
self
.
threshold
=
threshold
def
get_moyenne
(
self
,
color
,
img
):
def
get_moyenne
(
self
,
color
,
img
):
...
@@ -83,49 +78,15 @@ def process_frame_moyennes(frame, mask):
...
@@ -83,49 +78,15 @@ def process_frame_moyennes(frame, mask):
def
process_zone_moyennes
(
frame
,
zone
):
# calculer la diff avec la moyenne des bonnes immages
def
process_zone_moyennes
(
frame
,
zone
):
# calculer la diff avec la moyenne des bonnes immages
moy_r
,
moy_g
,
moy_b
=
zone
.
get_moyennes
(
frame
)
moy_r
,
moy_g
,
moy_b
=
zone
.
get_moyennes
(
frame
)
if
math
.
sqrt
(
pow
(
moy_r
-
zone
.
moyenne_
R
,
2
)
+
pow
(
moy_g
-
zone
.
moyenne_
G
,
2
)
+
pow
(
moy_b
-
zone
.
moyenne_
B
,
2
))
<
zone
.
threshold
:
if
math
.
sqrt
(
pow
(
moy_r
-
zone
.
moyenne_
r
,
2
)
+
pow
(
moy_g
-
zone
.
moyenne_
g
,
2
)
+
pow
(
moy_b
-
zone
.
moyenne_
b
,
2
))
<
zone
.
threshold
:
return
1
return
1
else
:
else
:
return
0
return
0
def
is_image_from_robot_view
(
frame
):
def
is_image_from_robot_view
(
frame
):
return
process_frame_moyennes
(
frame
,
mask_img
)
return
process_frame_moyennes
(
frame
,
mask
)
# Opens the Video file
mask_img
=
Mask
(
f
'
{
__file__
}
/../mask.jpg
'
)
video_path
=
TWITCH_DSET
/
'
videos
'
/
'
Rm.mp4
'
cap
=
cv2
.
VideoCapture
(
str
(
video_path
))
i
=
0
while
cap
.
isOpened
():
ret
,
rframe
=
cap
.
read
()
if
not
ret
:
break
if
i
%
15
==
0
:
if
process_frame_moyennes
(
rframe
,
mask_img
):
cv2
.
imwrite
(
f
"
{
RES_DIR
}
/NewVisionAlone/-frame-
{
i
+
1
:
06
}
.jpg
"
,
rframe
)
i
+=
1
# t1 = time.time()
# for i in range (0, 10000):
# processframemoyennes(frame, mask) # 7.43s 10.17s
# print("FinishedFM", time.time() - t1)
#
# t1 = time.time()
# for i in range (0 , 10000):
# processframe(frame, mask) # 11.26s ou 15.2s
# print("FinishedF", time.time() - t1)
# t1 = time.time()
# for i in range (0 , 10000): # 41.54s
# ret, frame = cap.read()
# print("FinishedCap", time.time() - t1)
print
(
"
Finished New Vision Alone
"
,
time
.
time
()
-
t1
)
cap
.
release
()
cv2
.
destroyAllWindows
()
mask
=
Mask
(
str
(
Path
(
__file__
).
parent
/
'
mask.jpg
'
))
This diff is collapsed.
Click to expand it.
common/research/dataset/twitch/robots_views_extractor.py
+
1
−
1
View file @
71a75c1f
...
@@ -6,7 +6,7 @@ import numpy as np
...
@@ -6,7 +6,7 @@ import numpy as np
from
tqdm
import
tqdm
from
tqdm
import
tqdm
from
research.constants
import
TWITCH_DSET
from
research.constants
import
TWITCH_DSET
from
research.dataset.twitch.
robot_view
import
is_image_from_robot_view
from
research.dataset.twitch.
new_vision
import
is_image_from_robot_view
from
research.dataset.twitch.video_frame_generator
import
VideoFrameGenerator
from
research.dataset.twitch.video_frame_generator
import
VideoFrameGenerator
RES_DIR
:
Path
=
TWITCH_DSET
/
'
robots-views
'
RES_DIR
:
Path
=
TWITCH_DSET
/
'
robots-views
'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment