opencv/samples/cpp/tutorial_code/ImgTrans
Adil Ibragimov 8a4a1bb018 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
2014-08-13 15:21:35 +04:00
..
CannyDetector_Demo.cpp Several type of formal refactoring: 2014-08-13 15:21:35 +04:00
copyMakeBorder_demo.cpp Several type of formal refactoring: 2014-08-13 15:21:35 +04:00
filter2D_demo.cpp Several type of formal refactoring: 2014-08-13 15:21:35 +04:00
Geometric_Transforms_Demo.cpp Extract imgcodecs module from highgui 2014-07-07 16:28:08 +04:00
HoughCircle_Demo.cpp Several type of formal refactoring: 2014-08-13 15:21:35 +04:00
HoughLines_Demo.cpp Extract imgcodecs module from highgui 2014-07-07 16:28:08 +04:00
Laplace_Demo.cpp Several type of formal refactoring: 2014-08-13 15:21:35 +04:00
Remap_Demo.cpp Extract imgcodecs module from highgui 2014-07-07 16:28:08 +04:00
Sobel_Demo.cpp Several type of formal refactoring: 2014-08-13 15:21:35 +04:00