Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
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
submodule
opencv
Commits
83a4a41c
Commit
83a4a41c
authored
Jun 17, 2011
by
Alexander Mordvintsev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work on obj_detect sample
parent
6e38b6aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
80 additions
and
0 deletions
+80
-0
obj_detect.py
samples/python2/obj_detect.py
+80
-0
No files found.
samples/python2/obj_detect.py
0 → 100644
View file @
83a4a41c
import
numpy
as
np
import
cv2
,
cv
import
common
def
detect
(
img
,
cascade
):
min_size
=
(
20
,
20
)
haar_scale
=
1.1
min_neighbors
=
3
haar_flags
=
0
rects
=
cascade
.
detectMultiScale
(
img
,
haar_scale
,
min_neighbors
,
haar_flags
,
min_size
)
if
len
(
rects
)
==
0
:
return
rects
[:,
2
:]
+=
rects
[:,:
2
]
return
rects
def
detect_turned
(
img
,
cascade
):
img_t
=
cv2
.
transpose
(
img
)
img_cw
=
cv2
.
flip
(
img_t
,
1
)
img_ccw
=
cv2
.
flip
(
img_t
,
0
)
r
=
detect
(
img
,
cascade
)
r_cw
=
detect
(
img_cw
,
cascade
)
r_ccw
=
detect
(
img_ccw
,
cascade
)
h
,
w
=
img
.
shape
[:
2
]
if
r_cw
is
not
None
:
r_cw
[:,[
0
,
2
]]
=
h
-
r_cw
[:,[
0
,
2
]]
-
1
r_cw
=
r_cw
[:,[
1
,
0
,
3
,
2
]]
if
r_ccw
is
not
None
:
r_ccw
[:,[
1
,
3
]]
=
w
-
r_ccw
[:,[
1
,
3
]]
-
1
r_ccw
=
r_ccw
[:,[
1
,
0
,
3
,
2
]]
rects
=
np
.
vstack
(
[
a
for
a
in
[
r
,
r_cw
,
r_ccw
]
if
a
is
not
None
]
)
return
rects
def
process_image
(
fn
,
cascade
):
pass
if
__name__
==
'__main__'
:
import
sys
import
getopt
args
,
img_mask
=
getopt
.
getopt
(
sys
.
argv
[
1
:],
''
,
[
'cascade='
])
args
=
dict
(
args
)
cascade_fn
=
args
.
get
(
'--cascade'
,
"../../data/haarcascades/haarcascade_frontalface_alt.xml"
)
cascade
=
cv2
.
CascadeClassifier
(
cascade_fn
)
img
=
cv2
.
imread
(
'test.jpg'
)
h
,
w
=
img
.
shape
[:
2
]
r
=
512.0
/
max
(
h
,
w
)
small
=
cv2
.
resize
(
img
,
(
int
(
w
*
r
),
int
(
h
*
r
)),
interpolation
=
cv2
.
INTER_AREA
)
rects
=
detect_turned
(
small
,
cascade
)
print
rects
for
x1
,
y1
,
x2
,
y2
in
rects
:
cv2
.
rectangle
(
small
,
(
x1
,
y1
),
(
x2
,
y2
),
(
0
,
255
,
0
))
cv2
.
circle
(
small
,
(
x1
,
y1
),
2
,
(
0
,
0
,
255
),
-
1
)
cv2
.
imshow
(
'img'
,
small
)
cv2
.
waitKey
()
'''
img = cv2.imread('test.jpg')
h, w = img.shape[:2]
r = 512.0 / max(h, w)
small = cv2.resize(img, (w*r, h*r), interpolation=cv2.INTER_AREA)
cv2.imshow('img', small)
cv2.waitKey()
'''
\ No newline at end of file
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