Skip to content

Commit 00b2124

Browse files
committed
fixing more compile problems with Java bindings etc
1 parent 4530c7a commit 00b2124

27 files changed

+372
-367
lines changed

doc/tutorials/introduction/desktop_java/java_dev_intro.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ Now modify src/main/java/HelloOpenCV.java so it contains the following Java code
398398
399399
// Draw a bounding box around each face.
400400
for (Rect rect : faceDetections.toArray()) {
401-
Core.rectangle(image, new Point(rect.x, rect.y), new Point(rect.x + rect.width, rect.y + rect.height), new Scalar(0, 255, 0));
401+
Imgproc.rectangle(image, new Point(rect.x, rect.y), new Point(rect.x + rect.width, rect.y + rect.height), new Scalar(0, 255, 0));
402402
}
403403
404404
// Save the visualized detection.

modules/core/doc/core.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ core. The Core Functionality
1010
old_basic_structures
1111
dynamic_structures
1212
operations_on_arrays
13-
drawing_functions
1413
xml_yaml_persistence
1514
old_xml_yaml_persistence
1615
clustering

0 commit comments

Comments
 (0)