opencv/doc/tutorials/imgproc/shapedescriptors/moments/moments.markdown

57 lines
1.5 KiB
Markdown
Raw Normal View History

2014-11-27 20:39:05 +08:00
Image Moments {#tutorial_moments}
=============
2020-12-08 00:13:54 +08:00
@tableofcontents
2018-08-03 02:22:58 +08:00
@prev_tutorial{tutorial_bounding_rotated_ellipses}
@next_tutorial{tutorial_point_polygon_test}
2020-12-05 06:46:00 +08:00
| | |
| -: | :- |
| Original author | Ana Huamán |
| Compatibility | OpenCV >= 3.0 |
2014-11-27 20:39:05 +08:00
Goal
----
In this tutorial you will learn how to:
- Use the OpenCV function @ref cv::moments
- Use the OpenCV function @ref cv::contourArea
- Use the OpenCV function @ref cv::arcLength
Theory
------
Code
----
@add_toggle_cpp
2014-11-27 20:39:05 +08:00
This tutorial code's is shown lines below. You can also download it from
2021-12-22 21:01:26 +08:00
[here](https://github.com/opencv/opencv/tree/4.x/samples/cpp/tutorial_code/ShapeDescriptors/moments_demo.cpp)
@include samples/cpp/tutorial_code/ShapeDescriptors/moments_demo.cpp
@end_toggle
@add_toggle_java
This tutorial code's is shown lines below. You can also download it from
2021-12-22 21:01:26 +08:00
[here](https://github.com/opencv/opencv/tree/4.x/samples/java/tutorial_code/ShapeDescriptors/moments/MomentsDemo.java)
@include samples/java/tutorial_code/ShapeDescriptors/moments/MomentsDemo.java
@end_toggle
@add_toggle_python
This tutorial code's is shown lines below. You can also download it from
2021-12-22 21:01:26 +08:00
[here](https://github.com/opencv/opencv/tree/4.x/samples/python/tutorial_code/ShapeDescriptors/moments/moments_demo.py)
@include samples/python/tutorial_code/ShapeDescriptors/moments/moments_demo.py
@end_toggle
2014-11-27 20:39:05 +08:00
Explanation
-----------
Result
------
2014-11-28 21:21:28 +08:00
Here it is:
![](images/Moments_Source_Image.jpg)
![](images/Moments_Result1.jpg)
![](images/Moments_Result2.jpg)