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
c4fb0e9d
Commit
c4fb0e9d
authored
Aug 06, 2013
by
Alexander Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
few changes for compilation
parent
4c0f7f9e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
5 deletions
+7
-5
hdr_imaging.rst
modules/photo/doc/hdr_imaging.rst
+6
-5
cv2.cpp
modules/python/src2/cv2.cpp
+1
-0
No files found.
modules/photo/doc/hdr_imaging.rst
View file @
c4fb0e9d
...
...
@@ -16,6 +16,7 @@ Tonemap::process
Tonemaps image
.. ocv:function:: void Tonemap::process(InputArray src, OutputArray dst)
:param src: source image - 32-bit 3-channel Mat
:param dst: destination image - 32-bit 3-channel Mat with values in [0, 1] range
...
...
@@ -23,7 +24,7 @@ createTonemap
------------------
Creates simple linear mapper with gamma correction
.. ocv:function:: Ptr<Tonemap> createTonemap(float gamma = 1.0f)
;
.. ocv:function:: Ptr<Tonemap> createTonemap(float gamma = 1.0f)
:param gamma: gamma value for gamma correction
...
...
@@ -37,7 +38,7 @@ createTonemapDrago
------------------
Creates TonemapDrago object
.. ocv:function:: Ptr<TonemapDrago> createTonemapDrago(float gamma = 1.0f, float bias = 0.85f)
;
.. ocv:function:: Ptr<TonemapDrago> createTonemapDrago(float gamma = 1.0f, float bias = 0.85f)
:param gamma: gamma value for gamma correction
...
...
@@ -57,7 +58,7 @@ createTonemapDurand
------------------
Creates TonemapDurand object
.. ocv:function:: Ptr<TonemapDurand> createTonemapDurand(float gamma = 1.0f, float contrast = 4.0f, float saturation = 1.0f, float sigma_space = 2.0f, float sigma_color = 2.0f)
;
.. ocv:function:: Ptr<TonemapDurand> createTonemapDurand(float gamma = 1.0f, float contrast = 4.0f, float saturation = 1.0f, float sigma_space = 2.0f, float sigma_color = 2.0f)
:param gamma: gamma value for gamma correction
...
...
@@ -99,7 +100,7 @@ createTonemapMantiuk
------------------
Creates TonemapMantiuk object
.. ocv:function::
CV_EXPORTS_W Ptr<TonemapMantiuk> createTonemapMantiuk(float gamma = 1.0f, float scale = 0.7f, float saturation = 1.0f);
.. ocv:function::
Ptr<TonemapMantiuk> createTonemapMantiuk(float gamma = 1.0f, float scale = 0.7f, float saturation = 1.0f)
:param gamma: gamma value for gamma correction
...
...
@@ -243,7 +244,7 @@ createMergeDebevec
------------------
Creates MergeDebevec object
.. ocv:function:: Ptr<MergeDebevec> createMergeDebevec()
;
.. ocv:function:: Ptr<MergeDebevec> createMergeDebevec()
MergeMertens
--------
...
...
modules/python/src2/cv2.cpp
View file @
c4fb0e9d
...
...
@@ -135,6 +135,7 @@ typedef Ptr<Tonemap> Ptr_Tonemap;
typedef
Ptr
<
TonemapDrago
>
Ptr_TonemapDrago
;
typedef
Ptr
<
TonemapReinhardDevlin
>
Ptr_TonemapReinhardDevlin
;
typedef
Ptr
<
TonemapDurand
>
Ptr_TonemapDurand
;
typedef
Ptr
<
TonemapMantiuk
>
Ptr_TonemapMantiuk
;
typedef
Ptr
<
AlignMTB
>
Ptr_AlignMTB
;
typedef
Ptr
<
CalibrateDebevec
>
Ptr_CalibrateDebevec
;
typedef
Ptr
<
MergeDebevec
>
Ptr_MergeDebevec
;
...
...
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