17 Commits (3542c98d4524e3db268efeb8a15c56f76a4f2add)

Author SHA1 Message Date
Suleyman TURKMEN 29c186a022 Update min_enclosing_triangle.cpp 7 years ago
Suleyman TURKMEN b2673a19cf Updates min_enclosing_triangle.cpp 7 years ago
Suleyman TURKMEN 3f3e6ba739 Update min_enclosing_triangle.cpp 9 years ago
Ilya Lavrenov 37789f015a deleted excess semicolons, commas 11 years ago
Ovidiu Parvu 2bf36c312f Removed static variables which were not read-only and used more function parameters instead. 11 years ago
Ovidiu Parvu e324446c70 Changed the signature of the minEnclosingTriangle function such that it returns the area automatically. Moreover, the overloaded function was no longer required so it was removed. Sample code, documentation and unit tests were updated correspondingly. 11 years ago
Ovidiu Parvu 52cdae6e2b Removed the cvMinEnclosingTriangle function since the C API will be deprecated starting with OpenCV 3.0 11 years ago
Ovidiu Parvu 21390d806f Removed non-ASCII characters from the comments 11 years ago
Ovidiu Parvu 73f476bd4b Added a namespace and prefixed global variables with "G_" in order to prevent variable shadowing problems. 11 years ago
Ovidiu Parvu dc64dd7315 Made the following changes after code inspection (min_enclosing_triangle.cpp): 11 years ago
Ovidiu Parvu 130b4d8e26 Changed the return type of cvMinEnclosingTriangle to CVAPI(void). Added the implementation of the function to the min_enclosing_triangle.cpp source file. 11 years ago
Ovidiu Parvu 8bada4c751 Overloaded the minEnclosingTriangle function such that there is an alternative function with the same name which does not require the output parameter ``area''. 11 years ago
Ovidiu Parvu 0ed2f6201d Optimised one assert statement in the min_enclosing_triangle.cpp file. Added the minEnclosingTriangle functionality to the existing minarea.cpp sample file. 11 years ago
Ovidiu Parvu 9902affae6 Added some assert statements to constrain the type of the input and output parameters. Convert the input set of points to vector<Point2f> before passing it to the findMinimumAreaEnclosingTriangle function. 11 years ago
Ovidiu Parvu 4fce8e6b0e Changed the semantics of the minEnclosingTriangle function such that: 11 years ago
Ovidiu Parvu 510ad8e779 - Changed the type of the minEnclosingTriangle function parameters by using proxy classes InputArray/OutputArray instead of std::vector<T> 11 years ago
Ovidiu Parvu e6b58c4e79 - Added the minEnclosingTriangle function declaration to the imgproc header 11 years ago