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
2c1fb5fd
Commit
2c1fb5fd
authored
Jun 13, 2013
by
alexandre benoit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor correction after buildbot warnings
parent
7bff79bb
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
5 additions
and
23 deletions
+5
-23
bioinspired.rst
modules/bioinspired/doc/bioinspired.rst
+2
-2
index.rst
modules/bioinspired/doc/retina/index.rst
+0
-0
retina.hpp
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
+0
-1
retinafasttonemapping.hpp
...red/include/opencv2/bioinspired/retinafasttonemapping.hpp
+3
-4
basicretinafilter.hpp
modules/bioinspired/src/basicretinafilter.hpp
+0
-2
magnoretinafilter.cpp
modules/bioinspired/src/magnoretinafilter.cpp
+0
-2
magnoretinafilter.hpp
modules/bioinspired/src/magnoretinafilter.hpp
+0
-2
parvoretinafilter.cpp
modules/bioinspired/src/parvoretinafilter.cpp
+0
-1
parvoretinafilter.hpp
modules/bioinspired/src/parvoretinafilter.hpp
+0
-1
retina.cpp
modules/bioinspired/src/retina.cpp
+0
-2
retinacolor.hpp
modules/bioinspired/src/retinacolor.hpp
+0
-2
retinafasttonemapping.cpp
modules/bioinspired/src/retinafasttonemapping.cpp
+0
-0
templatebuffer.hpp
modules/bioinspired/src/templatebuffer.hpp
+0
-3
test_precomp.hpp
modules/bioinspired/test/test_precomp.hpp
+0
-1
retinaInput.jpg
modules/contrib/doc/retina/images/retinaInput.jpg
+0
-0
retinaOutput_default.jpg
modules/contrib/doc/retina/images/retinaOutput_default.jpg
+0
-0
retinaOutput_realistic.jpg
modules/contrib/doc/retina/images/retinaOutput_realistic.jpg
+0
-0
index.rst
modules/contrib/doc/retina/index.rst
+0
-0
No files found.
modules/bioinspired/doc/bioinspired.rst
View file @
2c1fb5fd
*******************************************************************
*******************************************************************
*
bioinspired. Biologically inspired vision models and derivated tools
*******************************************************************
*******************************************************************
*
The module provides biological visual systems models (human visual system and others). It also provides derivated objects that take advantage of those bio-inspired models.
...
...
modules/bioinspired/doc/retina/index.rst
View file @
2c1fb5fd
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
View file @
2c1fb5fd
...
...
@@ -327,4 +327,3 @@ CV_EXPORTS Ptr<Retina> createRetina(Size inputSize, const bool colorMode, RETINA
}
}
#endif
/* __OPENCV_BIOINSPIRED_RETINA_HPP__ */
modules/bioinspired/include/opencv2/bioinspired/retinafasttonemapping.hpp
View file @
2c1fb5fd
...
...
@@ -64,8 +64,8 @@
** the use of this software, even if advised of the possibility of such damage.
*******************************************************************************/
#ifndef __OPENCV_
CONTRIB
_RETINAFASTTONEMAPPING_HPP__
#define __OPENCV_
CONTRIB
_RETINAFASTTONEMAPPING_HPP__
#ifndef __OPENCV_
BIOINSPIRED
_RETINAFASTTONEMAPPING_HPP__
#define __OPENCV_
BIOINSPIRED
_RETINAFASTTONEMAPPING_HPP__
/*
* retinafasttonemapping.hpp
...
...
@@ -119,5 +119,4 @@ CV_EXPORTS Ptr<RetinaFastToneMapping> createRetinaFastToneMapping(Size inputSize
}
}
#endif
/* __OPENCV_CONTRIB_RETINAFASTTONEMAPPING_HPP__ */
#endif
/* __OPENCV_BIOINSPIRED_RETINAFASTTONEMAPPING_HPP__ */
modules/bioinspired/src/basicretinafilter.hpp
View file @
2c1fb5fd
...
...
@@ -655,5 +655,3 @@ namespace hvstools
}
// end of namespace hvstools
}
// end of namespace cv
#endif
modules/bioinspired/src/magnoretinafilter.cpp
View file @
2c1fb5fd
...
...
@@ -210,5 +210,3 @@ const std::valarray<float> &MagnoRetinaFilter::runFilter(const std::valarray<flo
}
}
// end of namespace hvstools
}
// end of namespace cv
modules/bioinspired/src/magnoretinafilter.hpp
View file @
2c1fb5fd
...
...
@@ -243,5 +243,3 @@ namespace hvstools
}
// end of namespace cv
#endif
/*MagnoRetinaFilter_H_*/
modules/bioinspired/src/parvoretinafilter.cpp
View file @
2c1fb5fd
...
...
@@ -231,4 +231,3 @@ void ParvoRetinaFilter::_OPL_OnOffWaysComputing() // WARNING : this method requi
}
}
// end of namespace hvstools
}
// end of namespace cv
modules/bioinspired/src/parvoretinafilter.hpp
View file @
2c1fb5fd
...
...
@@ -261,4 +261,3 @@ private:
}
// end of namespace hvstools
}
// end of namespace cv
#endif
modules/bioinspired/src/retina.cpp
View file @
2c1fb5fd
...
...
@@ -671,7 +671,6 @@ bool _convertCvMat2ValarrayBuffer(InputArray inputMat, std::valarray<float> &out
typedef
float
T
;
// define here the target pixel format, here, float
const
int
dsttype
=
DataType
<
T
>::
depth
;
// output buffer is float format
const
unsigned
int
nbPixels
=
inputMat
.
getMat
().
rows
*
inputMat
.
getMat
().
cols
;
const
unsigned
int
doubleNBpixels
=
inputMat
.
getMat
().
rows
*
inputMat
.
getMat
().
cols
*
2
;
...
...
@@ -720,4 +719,3 @@ void RetinaImpl::activateContoursProcessing(const bool activate){_retinaFilter->
}
// end of namespace hvstools
}
// end of namespace cv
modules/bioinspired/src/retinacolor.hpp
View file @
2c1fb5fd
...
...
@@ -387,5 +387,3 @@ namespace hvstools
}
// end of namespace cv
#endif
/*RETINACOLOR_HPP_*/
modules/bioinspired/src/retinafasttonemapping.cpp
View file @
2c1fb5fd
modules/bioinspired/src/templatebuffer.hpp
View file @
2c1fb5fd
...
...
@@ -553,6 +553,3 @@ public:
}
// end of namespace hvstools
}
// end of namespace cv
#endif
modules/bioinspired/test/test_precomp.hpp
View file @
2c1fb5fd
...
...
@@ -14,4 +14,3 @@
#include <iostream>
#endif
modules/contrib/doc/retina/images/retinaInput.jpg
deleted
100644 → 0
View file @
7bff79bb
13.3 KB
modules/contrib/doc/retina/images/retinaOutput_default.jpg
deleted
100644 → 0
View file @
7bff79bb
21.9 KB
modules/contrib/doc/retina/images/retinaOutput_realistic.jpg
deleted
100644 → 0
View file @
7bff79bb
18.7 KB
modules/contrib/doc/retina/index.rst
deleted
100644 → 0
View file @
7bff79bb
This diff is collapsed.
Click to expand it.
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