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
059b79f7
Commit
059b79f7
authored
Jun 01, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged the trunk r8542:8544
parent
8159ea33
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
11 deletions
+24
-11
features2d.hpp
modules/features2d/include/opencv2/features2d/features2d.hpp
+3
-1
features2d_init.cpp
modules/features2d/src/features2d_init.cpp
+9
-2
cap.cpp
modules/highgui/src/cap.cpp
+4
-7
cap_ffmpeg_impl.hpp
modules/highgui/src/cap_ffmpeg_impl.hpp
+4
-0
cap_qtkit.mm
modules/highgui/src/cap_qtkit.mm
+3
-1
video_init.cpp
modules/video/src/video_init.cpp
+1
-0
No files found.
modules/features2d/include/opencv2/features2d/features2d.hpp
View file @
059b79f7
...
...
@@ -508,12 +508,14 @@ public:
* gridRows Grid rows count.
* gridCols Grid column count.
*/
CV_WRAP
GridAdaptedFeatureDetector
(
const
Ptr
<
FeatureDetector
>&
detector
,
CV_WRAP
GridAdaptedFeatureDetector
(
const
Ptr
<
FeatureDetector
>&
detector
=
0
,
int
maxTotalKeypoints
=
1000
,
int
gridRows
=
4
,
int
gridCols
=
4
);
// TODO implement read/write
virtual
bool
empty
()
const
;
AlgorithmInfo
*
info
()
const
;
protected
:
virtual
void
detectImpl
(
const
Mat
&
image
,
vector
<
KeyPoint
>&
keypoints
,
const
Mat
&
mask
=
Mat
()
)
const
;
...
...
modules/features2d/src/features2d_init.cpp
View file @
059b79f7
...
...
@@ -133,15 +133,22 @@ CV_INIT_ALGORITHM(DenseFeatureDetector, "Feature2D.Dense",
obj
.
info
()
->
addParam
(
obj
,
"varyXyStepWithScale"
,
obj
.
varyXyStepWithScale
);
obj
.
info
()
->
addParam
(
obj
,
"varyImgBoundWithScale"
,
obj
.
varyImgBoundWithScale
));
CV_INIT_ALGORITHM
(
GridAdaptedFeatureDetector
,
"Feature2D.Grid"
,
obj
.
info
()
->
addParam
(
obj
,
"detector"
,
(
Ptr
<
Algorithm
>&
)
obj
.
detector
);
obj
.
info
()
->
addParam
(
obj
,
"maxTotalKeypoints"
,
obj
.
maxTotalKeypoints
);
obj
.
info
()
->
addParam
(
obj
,
"gridRows"
,
obj
.
gridRows
);
obj
.
info
()
->
addParam
(
obj
,
"gridCols"
,
obj
.
gridCols
));
bool
initModule_features2d
(
void
)
{
Ptr
<
Algorithm
>
brief
=
createBriefDescriptorExtractor
(),
orb
=
createORB
(),
star
=
createStarDetector
(),
fastd
=
createFastFeatureDetector
(),
mser
=
createMSER
(),
dense
=
createDenseFeatureDetector
(),
gftt
=
createGFTTDetector
(),
harris
=
createHarrisDetector
();
dense
=
createDenseFeatureDetector
(),
gftt
=
createGFTTDetector
(),
harris
=
createHarrisDetector
(),
grid
=
createGridAdaptedFeatureDetector
();
return
brief
->
info
()
!=
0
&&
orb
->
info
()
!=
0
&&
star
->
info
()
!=
0
&&
fastd
->
info
()
!=
0
&&
mser
->
info
()
!=
0
&&
dense
->
info
()
!=
0
&&
gftt
->
info
()
!=
0
&&
harris
->
info
()
!=
0
;
gftt
->
info
()
!=
0
&&
harris
->
info
()
!=
0
&&
grid
->
info
()
!=
0
;
}
}
...
...
modules/highgui/src/cap.cpp
View file @
059b79f7
...
...
@@ -494,19 +494,16 @@ bool VideoCapture::retrieve(Mat& image, int channel)
bool
VideoCapture
::
read
(
Mat
&
image
)
{
if
(
!
grab
())
image
.
release
();
else
if
(
grab
())
retrieve
(
image
);
else
image
.
release
();
return
!
image
.
empty
();
}
VideoCapture
&
VideoCapture
::
operator
>>
(
Mat
&
image
)
{
if
(
!
grab
())
image
.
release
();
else
retrieve
(
image
);
read
(
image
);
return
*
this
;
}
...
...
modules/highgui/src/cap_ffmpeg_impl.hpp
View file @
059b79f7
...
...
@@ -438,6 +438,10 @@ bool CvCapture_FFMPEG::grabFrame()
const
int
max_number_of_attempts
=
1
<<
16
;
if
(
!
ic
||
!
video_st
)
return
false
;
if
(
ic
->
streams
[
video_stream
]
->
nb_frames
>
0
&&
frame_number
>
ic
->
streams
[
video_stream
]
->
nb_frames
)
return
false
;
av_free_packet
(
&
packet
);
...
...
modules/highgui/src/cap_qtkit.mm
View file @
059b79f7
...
...
@@ -316,7 +316,9 @@ int CvCaptureCAM::startCaptureDevice(int cameraNum) {
capture = [[CaptureDelegate alloc] init];
QTCaptureDevice *device;
NSArray* devices = [QTCaptureDevice inputDevicesWithMediaType:QTMediaTypeVideo];
NSArray* devices = [[[QTCaptureDevice inputDevicesWithMediaType:QTMediaTypeVideo]
arrayByAddingObjectsFromArray:[QTCaptureDevice inputDevicesWithMediaType:QTMediaTypeMuxed]] retain];
if ([devices count] == 0) {
cout << "QTKit didn't find any attached Video Input Devices!" << endl;
[localpool drain];
...
...
modules/video/src/video_init.cpp
View file @
059b79f7
...
...
@@ -57,6 +57,7 @@ CV_INIT_ALGORITHM(BackgroundSubtractorMOG, "BackgroundSubtractor.MOG",
CV_INIT_ALGORITHM
(
BackgroundSubtractorMOG2
,
"BackgroundSubtractor.MOG2"
,
obj
.
info
()
->
addParam
(
obj
,
"history"
,
obj
.
history
);
obj
.
info
()
->
addParam
(
obj
,
"nmixtures"
,
obj
.
nmixtures
);
obj
.
info
()
->
addParam
(
obj
,
"varThreshold"
,
obj
.
varThreshold
);
obj
.
info
()
->
addParam
(
obj
,
"detectShadows"
,
obj
.
bShadowDetection
));
...
...
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