4.x
cmake: function for application creation (#11736)
opencv: Use cv::AutoBuffer<>::data()
Fix spelling typos
Partially back-port #25075 to 4.x
made everything compile and even run somehow
Merge 2.4 into master
Several type of formal refactoring: 1. someMatrix.data -> someMatrix.prt() 2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex ) 3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>() 4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
Update haarfeatures.cpp
Fixed compilation errors: removed using namespace from hpp file. This led to pulling cv::ACCESS_MASK to global namespace where conflict with the same name in 'windows.h'
Fixes for QNX 6.6 Neitrino support.
Merge pull request #23594 from fdivitto:fdivitto-traincascade-patch
Edit spelling mistake in my previous pull request