Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
809c13bc
Commit
809c13bc
authored
Aug 07, 2014
by
Bellaktris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
more error fixes
parent
f213d65d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
10 deletions
+6
-10
structured_edge_detection.hpp
...oc/include/opencv2/ximpgroc/structured_edge_detection.hpp
+1
-4
structured_edge_detection.cpp
modules/ximpgroc/src/structured_edge_detection.cpp
+1
-2
CMakeLists.txt
modules/xphoto/CMakeLists.txt
+2
-2
dct_image_denoising.cpp
modules/xphoto/src/dct_image_denoising.cpp
+1
-1
dct_image_denoising.cpp
modules/xphoto/test/dct_image_denoising.cpp
+1
-1
No files found.
modules/ximpgroc/include/opencv2/ximpgroc/structured_edge_detection.hpp
View file @
809c13bc
...
...
@@ -87,10 +87,7 @@ public:
const
int
gradNum
)
const
=
0
;
};
/*!
* ...
*/
CV_EXPORTS_W
Ptr
<
RFFeatureGetter
>
createRFFeatureGetter
();
CV_EXPORTS_W
Ptr
<
RFFeatureGetter
>
createRFFeatureGetter
(
void
);
...
...
modules/ximpgroc/src/structured_edge_detection.cpp
View file @
809c13bc
...
...
@@ -280,8 +280,7 @@ public:
* \param outNum : __rf.options.numberOfOutputChannels
* \param gradNum : __rf.options.numberOfGradientOrientations
*/
virtual
void
getFeatures
(
const
cv
::
Mat
&
src
,
NChannelsMat
&
features
,
const
int
gnrmRad
,
const
int
gsmthRad
,
virtual
void
getFeatures
(
const
cv
::
Mat
&
src
,
Mat
&
features
,
const
int
gnrmRad
,
const
int
gsmthRad
,
const
int
shrink
,
const
int
outNum
,
const
int
gradNum
)
const
{
cv
::
Mat
luvImg
=
rgb2luv
(
src
);
...
...
modules/xphoto/CMakeLists.txt
View file @
809c13bc
set
(
the_description
"Addon to basic photo module"
)
ocv_define_module
(
xphoto opencv_core opencv_imgproc opencv_stitching OPTIONAL opencv_photo opencv_highgui
)
\ No newline at end of file
ocv_define_module
(
xphoto opencv_core opencv_imgproc opencv_photo OPTIONAL opencv_photo opencv_highgui
)
\ No newline at end of file
modules/xphoto/src/dct_image_denoising.cpp
View file @
809c13bc
...
...
@@ -80,7 +80,7 @@ namespace cv
grayDctDenoisingInvoker
::
grayDctDenoisingInvoker
(
const
Mat
&
_src
,
std
::
vector
<
Mat
>
&
_patches
,
const
double
_sigma
,
const
int
_psize
)
:
src
(
_src
),
patches
(
_patches
),
sigma
(
_sigma
),
thresh
(
3
*
_sigma
),
psize
(
_psize
)
{}
:
src
(
_src
),
patches
(
_patches
),
psize
(
_psize
),
sigma
(
_sigma
),
thresh
(
3
*
_sigma
)
{}
void
grayDctDenoisingInvoker
::
operator
()
(
const
Range
&
range
)
const
{
...
...
modules/xphoto/test/dct_image_denoising.cpp
View file @
809c13bc
...
...
@@ -7,7 +7,7 @@ namespace cvtest
cv
::
String
dir
=
cvtest
::
TS
::
ptr
()
->
get_data_path
()
+
"dct_image_denoising/"
;
int
nTests
=
1
;
float
thresholds
[]
=
{
0.1
};
double
thresholds
[]
=
{
0.1
};
int
psize
[]
=
{
8
};
double
sigma
[]
=
{
9.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