Maksim Shabunin
1aaf6e1c8b
Merge pull request #3638 from mshabunin:doc-upgrade
...
Documentation transition to fresh Doxygen #3638
Merge with https://github.com/opencv/opencv/pull/25042
1 year ago
harshitnagar22
535139725c
fix:3639
1 year ago
Alexander Smorkalov
e963ec2e10
Wstringop-overflow warning fix in bio inspired module.
2 years ago
Gary Allen
9d0a451bee
Merge pull request #3296 from gvcallen:4.x
...
Allow new glog in SFM CMake Project
* Allow new glog in SFM CMakeLists.txt
* Fix typo
* Fixed missing bracket
3 years ago
Jochen Sprickerhof
377e856803
Fix file ending
3 years ago
Stephen McDowell
ed199a3498
remove executable bit for various files
4 years ago
atinfinity
0a8d841bb3
Merge pull request #2412 from atinfinity:fixed-typo
...
* fixed typo
* fixed document
5 years ago
Brian Wignall
078c45633d
Fix typos
...
backport commit 8c09249352
5 years ago
Tomoaki Teshima
d4c6159f38
fix program build failure
6 years ago
lichun
9267b4850d
push frame when videoCapture opened
6 years ago
Ahmed Ashour
cd7276f41f
Merge pull request #2131 from asashour:param
...
* doc: fix return parameter for void method
* docs: add missing parameter description
6 years ago
kartoffelsalat
17bb12da48
make python example work
...
Hey there, completely new to `openCV` in general and to the `bioinspired` module in particular. I wanted to give this module a try with python and found that the example source code doesn't work with current openCV (that's 3.4.1 on my Fedora machine). Apparently, there was a change in how a `Retina` object is created. I fixed the python source code correspondingly. I also changed the C++ source code in this doc file, although I think this needs further updating as there are more changes in the actual source code.
6 years ago
tompollok
fcb266f728
refactoring catching all exceptions as const ref
7 years ago
soyer
6ca4d391b7
bioinspired: remove the non-existent opencv_ocl module from CMakeList
7 years ago
Hamdi Sahloul
c880b7ea4d
Utilize CV_UNUSED macro
7 years ago
Alexander Alekhin
b9d83609de
build: eliminate GCC8 warnings
7 years ago
Alexander Alekhin
ebc142b1d8
Merge pull request #1623 from alalek:android_pack_fix_contrib
...
* android: fix build warnings
* build: fix warnings
7 years ago
Alexander Alekhin
06de054482
bioinspired: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
edfdf12c31
tests: refactor test files
7 years ago
Maksim Shabunin
c99d1c3b04
Fixed several warnings produced by clang-6.0.0
7 years ago
Alexander Alekhin
57ff363389
python: 'cv2.' -> 'cv.' via 'import cv2 as cv'
7 years ago
Maksim Shabunin
b16d9dbcc5
Fixed several warnings produced by GCC 7
7 years ago
Alexander Alekhin
6f322a893d
bioinspired(ocl): refactor OpenCL conditions
7 years ago
Vladislav Sovrasov
53b82426e8
bioinspired: move all factories into corresponding classes
8 years ago
Vladislav Sovrasov
6adf012e9a
bioinspired: prevent call ocl implementation when log sampling is enabled in retina (there is no log sampling kernel)
8 years ago
Vladislav Sovrasov
5bbca68d7a
bioinspired: add time measurement in sample
8 years ago
Vladislav Sovrasov
ca7683eed9
bioinspired: prevent zero output when OCL is enabled but Mat was passed as buffer instead of UMat
8 years ago
Vladislav Sovrasov
8dc1920bef
bioinspired: cleanup in samples
8 years ago
Vladislav Sovrasov
ec6ab8cdd5
bioinspired: remove register specifier to prevent possible warnings from cxx11 compilers
8 years ago
Li Peng
966b2f55b9
Overhaul bioinspired opencl implementation
...
This patch update bioinspired opencl code to make it working
with latest opencv, major changes include:
1. data structure update, e.g. oclMat to UMat.
2. opencl kernel optimization to get it running faster
3. accuracy and perf test update.
Signed-off-by: Li Peng <peng.li@intel.com>
8 years ago
catree
af26ce3af2
Bioinspired module: remove printSetup to avoid unnecessary printing in the console, fix some typos. ( #905 )
8 years ago
Amro
4e0b7f394d
quick fix to avoid CMake 3.5 crashing in cl2cpp.cmake
...
see https://github.com/Itseez/opencv/issues/6370
9 years ago
Andrea Merello
6bd381cf4b
Tutorial: add a new bioispired tutorial about reproducing optical illusions
...
This new tutorial shows how the Adelson checkerboard optical illusion can
be reproduced with the bioinspired module. It will be put aside the
already-existent bioinspired tutorial.
Also-by: Antonio Cuni <anto.cuni@gmail.com>
9 years ago
Patrick Snape
c8986b13fc
Complex issue around const valarray indexing
...
Fixes https://github.com/Itseez/opencv_contrib/issues/332
Relevant material:
http://stackoverflow.com/questions/6066273/pointer-into-vector-but-not-into-a-valarray
http://objectmix.com/c/40001-address-first-member-valarray.html
http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#389
I have to admit my naivety here, this issue is was complex for me
to diagnose. It appears that in the MSVC 2008/2010 implementation
of std::valarray, when indexing and assigning to a const variable,
that the const version of the member function
valarray<T>::operator[](size_t) returns a value instead of a
const-reference. Therefore, taking the address of this is a
compiler error as you can't take the address of an lvalue. By
performing a const_cast on the array we change which function
is called and thus we actually do recieve a const-reference.
This should not effect other compilers.
10 years ago
Vadim Pisarevsky
e3995236ed
added test for http://code.opencv.org/issues/3943 ;
...
replaced "const InputArray" with "InputArray" to avoid warnings about "const const _InputArray&"
10 years ago
root
8591272666
trying to solve pyhton warnings
10 years ago
Alexandre Benoit
ecbc652e2e
trying to fix python wrapper warning on win64
10 years ago
Alexandre Benoit
bce2fca9ec
text enhancement
10 years ago
Alexandre Benoit
ad9c379a0d
fixed warning
10 years ago
Alexandre Benoit
45c49d802e
added stdout welcome message and fixed warning
10 years ago
Alexandre Benoit
03c9e232e8
figure update
10 years ago
Alexandre Benoit
60cbf17abd
added python support and completed documentation
10 years ago
Maksim Shabunin
67a2066c4b
Java and python wrappers for contrib modules
10 years ago
Maksim Shabunin
7d9bbdcaad
Remove all sphinx files
10 years ago
Maksim Shabunin
61f36de542
Doxygen tutorials support
10 years ago
Maksim Shabunin
2b74ca6f12
Added opencv_contrib_world module and fixed some compilation warnings on iOS
10 years ago
Maksim Shabunin
a20c5c8dd9
Doxygen documentation for all modules
10 years ago
Maksim Shabunin
bad3cd2427
Fixed some existing doxygen comments
11 years ago
Maksim Shabunin
185836bc51
Java wrappers for bioinspired module
11 years ago
StevenPuttemans
c20ea8e7e8
adding more clear documentation
11 years ago