Generate standalone JavaDoc reference for Java API (Feature #1847)
Description
It can be either included into the Android binary package or placed on web under 'opencv.itseez.com'.
See details on this web page
Issue hierarchy
Associated revisions
Merge pull request #1847 from ilya-lavrenov:ocl_imgproc_fix
History
Updated by Kirill Kornyakov almost 13 years ago
Here is an example command which allows you to generate javadoc. Download the binary package, go to the OpenCV-2.4 folder and run:
javadoc -sourcepath src -d javadoc -subpackages org.opencv -header "OpenCV 2.4" -nodeprecated -footer "<a href="http://docs.opencv.org">Official OpenCV 2.4 Documentation</a>"
- replace opencv.itseez.com links to docs.opencv.org
- <em></em> instead of "" for mathematics
- <br> or <p> instead of blank lines
- <cоde></cоde> instead of ""
- leave multiline code segments but with //C++ comments
* <pre> * {@code * //C++ * for(int y = roi.y; y < roi.y + rect.height; y++) * for(int x = roi.x; x < roi.x + rect.width; x++) * { * // ... * } * } * </pre>
- <ul><li><li></ul> instead of * for bullet lists
Updated by Andrey Kamaev almost 13 years ago
1-4 done
5 - moved to future version (#1861)
6 - mostly done
- Status changed from Open to Done
- Assignee changed from Andrey Pavlenko to Andrey Kamaev
Updated by Alexander Smorkalov over 12 years ago
- % Done changed from 0 to 100