org.opencv.core.Core.phase_0()方法的使用及代码示例

x33g5p2x  于2022-01-18 转载在 其他  
字(8.6k)|赞(0)|评价(0)|浏览(147)

本文整理了Java中org.opencv.core.Core.phase_0()方法的一些代码示例,展示了Core.phase_0()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Core.phase_0()方法的具体详情如下:
包路径:org.opencv.core.Core
类名称:Core
方法名:phase_0

Core.phase_0介绍

暂无

代码示例

代码示例来源:origin: raulh82vlc/Image-Detection-Samples

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: kongqw/OpenCVForAndroid

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: SOFTPOWER1991/OpenCVCheck

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: akshika47/OpencvAndroid

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: farkam135/GoIV

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: tz28/Chinese-number-gestures-recognition

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: leadrien/opencv_native_androidstudio

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: hschott/Camdroid

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: DuckDeck/AndroidDemo

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: nroduit/Weasis

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: imistyrain/EasyPR4Android

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: ctodobom/OpenCV-3.1.0-Android

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: SouvDc/face-detection

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: InnoFang/Android-Code-Demos

  1. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  2. {
  3. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  4. return;
  5. }

代码示例来源:origin: abhn/marvel

  1. /**
  2. * <p>Calculates the rotation angle of 2D vectors.</p>
  3. *
  4. * <p>The function <code>phase</code> calculates the rotation angle of each 2D
  5. * vector that is formed from the corresponding elements of <code>x</code> and
  6. * <code>y</code> :</p>
  7. *
  8. * <p><em>angle(I) = atan2(y(I), x(I))</em></p>
  9. *
  10. * <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
  11. * the corresponding <code>angle(I)</code> is set to 0.</p>
  12. *
  13. * @param x input floating-point array of x-coordinates of 2D vectors.
  14. * @param y input array of y-coordinates of 2D vectors; it must have the same
  15. * size and the same type as <code>x</code>.
  16. * @param angle output array of vector angles; it has the same size and same
  17. * type as <code>x</code>.
  18. * @param angleInDegrees when true, the function calculates the angle in
  19. * degrees, otherwise, they are measured in radians.
  20. *
  21. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
  22. */
  23. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  24. {
  25. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  26. return;
  27. }

代码示例来源:origin: nu.pattern/opencv

  1. /**
  2. * <p>Calculates the rotation angle of 2D vectors.</p>
  3. *
  4. * <p>The function <code>phase</code> calculates the rotation angle of each 2D
  5. * vector that is formed from the corresponding elements of <code>x</code> and
  6. * <code>y</code> :</p>
  7. *
  8. * <p><em>angle(I) = atan2(y(I), x(I))</em></p>
  9. *
  10. * <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
  11. * the corresponding <code>angle(I)</code> is set to 0.</p>
  12. *
  13. * @param x input floating-point array of x-coordinates of 2D vectors.
  14. * @param y input array of y-coordinates of 2D vectors; it must have the same
  15. * size and the same type as <code>x</code>.
  16. * @param angle output array of vector angles; it has the same size and same
  17. * type as <code>x</code>.
  18. * @param angleInDegrees when true, the function calculates the angle in
  19. * degrees, otherwise, they are measured in radians.
  20. *
  21. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
  22. */
  23. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  24. {
  25. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  26. return;
  27. }

代码示例来源:origin: com.sikulix/sikulixapi

  1. /**
  2. * <p>Calculates the rotation angle of 2D vectors.</p>
  3. *
  4. * <p>The function <code>phase</code> calculates the rotation angle of each 2D
  5. * vector that is formed from the corresponding elements of <code>x</code> and
  6. * <code>y</code> :</p>
  7. *
  8. * <p><em>angle(I) = atan2(y(I), x(I))</em></p>
  9. *
  10. * <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
  11. * the corresponding <code>angle(I)</code> is set to 0.</p>
  12. *
  13. * @param x input floating-point array of x-coordinates of 2D vectors.
  14. * @param y input array of y-coordinates of 2D vectors; it must have the same
  15. * size and the same type as <code>x</code>.
  16. * @param angle output array of vector angles; it has the same size and same
  17. * type as <code>x</code>.
  18. * @param angleInDegrees when true, the function calculates the angle in
  19. * degrees, otherwise, they are measured in radians.
  20. *
  21. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
  22. */
  23. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  24. {
  25. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  26. return;
  27. }

代码示例来源:origin: jtsky/EasyPR_Android

  1. /**
  2. * <p>Calculates the rotation angle of 2D vectors.</p>
  3. *
  4. * <p>The function <code>phase</code> calculates the rotation angle of each 2D
  5. * vector that is formed from the corresponding elements of <code>x</code> and
  6. * <code>y</code> :</p>
  7. *
  8. * <p><em>angle(I) = atan2(y(I), x(I))</em></p>
  9. *
  10. * <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
  11. * the corresponding <code>angle(I)</code> is set to 0.</p>
  12. *
  13. * @param x input floating-point array of x-coordinates of 2D vectors.
  14. * @param y input array of y-coordinates of 2D vectors; it must have the same
  15. * size and the same type as <code>x</code>.
  16. * @param angle output array of vector angles; it has the same size and same
  17. * type as <code>x</code>.
  18. * @param angleInDegrees when true, the function calculates the angle in
  19. * degrees, otherwise, they are measured in radians.
  20. *
  21. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
  22. */
  23. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  24. {
  25. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  26. return;
  27. }

代码示例来源:origin: ytai/IOIOPlotter

  1. /**
  2. * <p>Calculates the rotation angle of 2D vectors.</p>
  3. *
  4. * <p>The function <code>phase</code> calculates the rotation angle of each 2D
  5. * vector that is formed from the corresponding elements of <code>x</code> and
  6. * <code>y</code> :</p>
  7. *
  8. * <p><em>angle(I) = atan2(y(I), x(I))</em></p>
  9. *
  10. * <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
  11. * the corresponding <code>angle(I)</code> is set to 0.</p>
  12. *
  13. * @param x input floating-point array of x-coordinates of 2D vectors.
  14. * @param y input array of y-coordinates of 2D vectors; it must have the same
  15. * size and the same type as <code>x</code>.
  16. * @param angle output array of vector angles; it has the same size and same
  17. * type as <code>x</code>.
  18. * @param angleInDegrees when true, the function calculates the angle in
  19. * degrees, otherwise, they are measured in radians.
  20. *
  21. * @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
  22. */
  23. public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
  24. {
  25. phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
  26. return;
  27. }

相关文章

Core类方法