本文整理了Java中org.opencv.core.Core.phase_0()
方法的一些代码示例,展示了Core.phase_0()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Core.phase_0()
方法的具体详情如下:
包路径:org.opencv.core.Core
类名称:Core
方法名:phase_0
暂无
代码示例来源:origin: raulh82vlc/Image-Detection-Samples
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: kongqw/OpenCVForAndroid
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: SOFTPOWER1991/OpenCVCheck
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: akshika47/OpencvAndroid
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: farkam135/GoIV
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: tz28/Chinese-number-gestures-recognition
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: leadrien/opencv_native_androidstudio
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: hschott/Camdroid
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: DuckDeck/AndroidDemo
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: nroduit/Weasis
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: imistyrain/EasyPR4Android
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: ctodobom/OpenCV-3.1.0-Android
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: SouvDc/face-detection
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: InnoFang/Android-Code-Demos
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: abhn/marvel
/**
* <p>Calculates the rotation angle of 2D vectors.</p>
*
* <p>The function <code>phase</code> calculates the rotation angle of each 2D
* vector that is formed from the corresponding elements of <code>x</code> and
* <code>y</code> :</p>
*
* <p><em>angle(I) = atan2(y(I), x(I))</em></p>
*
* <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
* the corresponding <code>angle(I)</code> is set to 0.</p>
*
* @param x input floating-point array of x-coordinates of 2D vectors.
* @param y input array of y-coordinates of 2D vectors; it must have the same
* size and the same type as <code>x</code>.
* @param angle output array of vector angles; it has the same size and same
* type as <code>x</code>.
* @param angleInDegrees when true, the function calculates the angle in
* degrees, otherwise, they are measured in radians.
*
* @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
*/
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: nu.pattern/opencv
/**
* <p>Calculates the rotation angle of 2D vectors.</p>
*
* <p>The function <code>phase</code> calculates the rotation angle of each 2D
* vector that is formed from the corresponding elements of <code>x</code> and
* <code>y</code> :</p>
*
* <p><em>angle(I) = atan2(y(I), x(I))</em></p>
*
* <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
* the corresponding <code>angle(I)</code> is set to 0.</p>
*
* @param x input floating-point array of x-coordinates of 2D vectors.
* @param y input array of y-coordinates of 2D vectors; it must have the same
* size and the same type as <code>x</code>.
* @param angle output array of vector angles; it has the same size and same
* type as <code>x</code>.
* @param angleInDegrees when true, the function calculates the angle in
* degrees, otherwise, they are measured in radians.
*
* @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
*/
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: com.sikulix/sikulixapi
/**
* <p>Calculates the rotation angle of 2D vectors.</p>
*
* <p>The function <code>phase</code> calculates the rotation angle of each 2D
* vector that is formed from the corresponding elements of <code>x</code> and
* <code>y</code> :</p>
*
* <p><em>angle(I) = atan2(y(I), x(I))</em></p>
*
* <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
* the corresponding <code>angle(I)</code> is set to 0.</p>
*
* @param x input floating-point array of x-coordinates of 2D vectors.
* @param y input array of y-coordinates of 2D vectors; it must have the same
* size and the same type as <code>x</code>.
* @param angle output array of vector angles; it has the same size and same
* type as <code>x</code>.
* @param angleInDegrees when true, the function calculates the angle in
* degrees, otherwise, they are measured in radians.
*
* @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
*/
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: jtsky/EasyPR_Android
/**
* <p>Calculates the rotation angle of 2D vectors.</p>
*
* <p>The function <code>phase</code> calculates the rotation angle of each 2D
* vector that is formed from the corresponding elements of <code>x</code> and
* <code>y</code> :</p>
*
* <p><em>angle(I) = atan2(y(I), x(I))</em></p>
*
* <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
* the corresponding <code>angle(I)</code> is set to 0.</p>
*
* @param x input floating-point array of x-coordinates of 2D vectors.
* @param y input array of y-coordinates of 2D vectors; it must have the same
* size and the same type as <code>x</code>.
* @param angle output array of vector angles; it has the same size and same
* type as <code>x</code>.
* @param angleInDegrees when true, the function calculates the angle in
* degrees, otherwise, they are measured in radians.
*
* @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
*/
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
代码示例来源:origin: ytai/IOIOPlotter
/**
* <p>Calculates the rotation angle of 2D vectors.</p>
*
* <p>The function <code>phase</code> calculates the rotation angle of each 2D
* vector that is formed from the corresponding elements of <code>x</code> and
* <code>y</code> :</p>
*
* <p><em>angle(I) = atan2(y(I), x(I))</em></p>
*
* <p>The angle estimation accuracy is about 0.3 degrees. When <code>x(I)=y(I)=0</code>,
* the corresponding <code>angle(I)</code> is set to 0.</p>
*
* @param x input floating-point array of x-coordinates of 2D vectors.
* @param y input array of y-coordinates of 2D vectors; it must have the same
* size and the same type as <code>x</code>.
* @param angle output array of vector angles; it has the same size and same
* type as <code>x</code>.
* @param angleInDegrees when true, the function calculates the angle in
* degrees, otherwise, they are measured in radians.
*
* @see <a href="http://docs.opencv.org/modules/core/doc/operations_on_arrays.html#phase">org.opencv.core.Core.phase</a>
*/
public static void phase(Mat x, Mat y, Mat angle, boolean angleInDegrees)
{
phase_0(x.nativeObj, y.nativeObj, angle.nativeObj, angleInDegrees);
return;
}
内容来源于网络,如有侵权,请联系作者删除!