Home
last modified time | relevance | path

Searched refs:Core (Results 1 – 25 of 374) sorted by relevance

12345678910>>...15

/external/opencv3/modules/core/misc/java/test/
DCoreTest.java7 import org.opencv.core.Core;
8 import org.opencv.core.Core.MinMaxLocResult;
27 Core.absdiff(gray128, gray255, dst); in testAbsdiff()
33 Core.add(gray128, gray128, dst); in testAddMatMatMat()
39 Core.add(gray0, gray1, dst, gray1, CvType.CV_32F); in testAddMatMatMatMatInt()
46 Core.addWeighted(gray1, 120.0, gray127, 1.0, 10.0, dst); in testAddWeightedMatDoubleMatDoubleDoubleMat()
52 Core.addWeighted(gray1, 126.0, gray127, 1.0, 2.0, dst, CvType.CV_32F); in testAddWeightedMatDoubleMatDoubleDoubleMatInt()
59 Core.bitwise_and(gray127, gray3, dst); in testBitwise_andMatMatMat()
65 Core.bitwise_and(gray3, gray1, dst, gray255); in testBitwise_andMatMatMatMat()
71 Core.bitwise_not(gray255, dst); in testBitwise_notMatMat()
[all …]
/external/eigen/Eigen/
DCore15 #include "src/Core/util/DisableStupidWarnings.h"
20 #include "src/Core/util/Macros.h"
32 #include "src/Core/util/MKL_support.h"
93 …// so, to avoid compile errors when windows.h is included after Eigen/Core, ensure intrinsics are …
241 /** \defgroup Core_Module Core module
247 * #include <Eigen/Core>
251 #include "src/Core/util/Constants.h"
252 #include "src/Core/util/ForwardDeclarations.h"
253 #include "src/Core/util/Meta.h"
254 #include "src/Core/util/StaticAssert.h"
[all …]
DArray4 // include Core first to handle Eigen2 support macros
5 #include "Core"
8 … Eigen/Array header does no longer exist in Eigen3. All that functionality has moved to Eigen/Core.
DHouseholder4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
20 #include "src/Core/util/ReenableStupidWarnings.h"
DLeastSquares11 #include "Core"
13 #include "src/Core/util/DisableStupidWarnings.h"
28 #include "src/Core/util/ReenableStupidWarnings.h"
DQtAlignedMalloc5 #include "Core"
9 #include "src/Core/util/DisableStupidWarnings.h"
29 #include "src/Core/util/ReenableStupidWarnings.h"
DJacobi4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
22 #include "src/Core/util/ReenableStupidWarnings.h"
DSparseCore4 #include "Core"
6 #include "src/Core/util/DisableStupidWarnings.h"
26 * This module depends on: Core.
61 #include "src/Core/util/ReenableStupidWarnings.h"
/external/deqp/framework/platform/win32/
DtcuWGL.hpp158 class Core class
161 Core (HINSTANCE instance);
162 ~Core (void);
171 Core (const Core& other);
172 Core& operator= (const Core& other);
190 Context (const Core* core, HDC deviceCtx, glu::ContextType ctxType, int pixelFormat);
204 const Core* m_core;
210 int choosePixelFormat (const Core& wgl, HDC deviceCtx, const glu::RenderConfig& config);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonShuffler.cpp238 if (ISJ->Core.getUnits() == slotSingleLoad) in check()
251 if (ISJ->Core.getUnits() == slotSingleStore) in check()
294 if (!ISJ->Core.getUnits()) { in check()
303 ISJ->Core.setUnits(ISJ->Core.getUnits() & ~slotOne); in check()
308 ISJ->Core.setUnits(ISJ->Core.getUnits() & ~slotOne); in check()
321 ISJ->Core.setUnits(ISJ->Core.getUnits() & slotJump); in check()
330 ISJ->Core.setUnits(ISJ->Core.getUnits() & slotSingleLoad); in check()
337 ISJ->Core.setUnits(ISJ->Core.getUnits() & slotSingleStore); in check()
345 ISJ->Core.setUnits(ISJ->Core.getUnits() & slotLoadStore); in check()
358 if (ISJ->Core.getUnits() == slotThree) in check()
[all …]
DHexagonShuffler.h98 HexagonResource Core; variable
105 : ID(id), Extender(Extender), Core(s), CVI(MCII, s, id), in ID()
116 return (HexagonResource::lessWeight(B.Core, Core));
120 return (HexagonResource::lessUnits(A.Core, B.Core)); in lessCore()
/external/opencv3/modules/java/android_test/src/org/opencv/test/android/
DUtilsTest.java4 import org.opencv.core.Core;
37 double maxDiff = Core.norm(m16, m32, Core.NORM_INF); in testBitmapToMat()
81 maxDiff = Core.norm(imgRGBA, m16, Core.NORM_INF); in testMatToBitmap()
87 maxDiff = Core.norm(imgRGBA, m32, Core.NORM_INF); in testMatToBitmap()
99 maxDiff = Core.norm(imgRGBA, m16, Core.NORM_INF); in testMatToBitmap()
105 maxDiff = Core.norm(imgRGBA, m32, Core.NORM_INF); in testMatToBitmap()
118 Core.extractChannel(m16, tmp, 0); in testMatToBitmap()
119 maxDiff = Core.norm(imgGray, tmp, Core.NORM_INF); in testMatToBitmap()
126 Core.extractChannel(m32, tmp, 0); in testMatToBitmap()
127 maxDiff = Core.norm(imgGray, tmp, Core.NORM_INF); in testMatToBitmap()
[all …]
/external/webrtc/webrtc/modules/desktop_capture/
Dshared_desktop_frame.cc18 class SharedDesktopFrame::Core { class in webrtc::SharedDesktopFrame
20 Core(DesktopFrame* frame) : frame_(frame) {} in Core() function in webrtc::SharedDesktopFrame::Core
39 virtual ~Core() {} in ~Core()
44 RTC_DISALLOW_COPY_AND_ASSIGN(Core);
52 rtc::scoped_refptr<Core> core(new Core(desktop_frame)); in Wrap()
72 SharedDesktopFrame::SharedDesktopFrame(rtc::scoped_refptr<Core> core) in SharedDesktopFrame()
Dshared_desktop_frame.h38 class Core;
40 SharedDesktopFrame(rtc::scoped_refptr<Core> core);
42 rtc::scoped_refptr<Core> core_;
/external/opencv3/samples/java/
Dopencv_version.java1 import org.opencv.core.Core;
5 static { System.loadLibrary(Core.NATIVE_LIBRARY_NAME); }
11 System.out.println(Core.getBuildInformation()); in main()
19 System.out.println("Welcome to OpenCV " + Core.VERSION); in main()
/external/toybox/toys/lsb/
DREADME4 http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic/cmdbehav.html
7 http://refspecs.linuxfoundation.org/LSB_4.1.0/LSB-Core-generic/LSB-Core-generic.html
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java7 import org.opencv.core.Core;
145 assertEquals(src.rows(), Core.countNonZero(dst)); in testAdaptiveThreshold()
179 Imgproc.bilateralFilter(gray255, dst, 5, 10, 5, Core.BORDER_REFLECT); in testBilateralFilterMatMatIntDoubleDoubleInt()
201 Imgproc.blur(gray0, dst, size, anchorPoint, Core.BORDER_REFLECT); in testBlurMatMatSizePointInt()
231 Imgproc.boxFilter(gray255, dst, 8, size, anchorPoint, false, Core.BORDER_REFLECT); in testBoxFilterMatMatIntSizePointBooleanInt()
244 Core.normalize(hist, hist); in testCalcBackProject()
250 assertFalse(0 == Core.countNonZero(dst)); in testCalcBackProject()
303 Core.merge(histList, hist3D); in testCalcHistListOfMatListOfIntegerMatMatListOfIntegerListOfFloat3D()
500 Imgproc.cornerEigenValsAndVecs(src, dst, blockSize, ksize, Core.BORDER_REFLECT); in testCornerEigenValsAndVecsMatMatIntIntInt()
524 Imgproc.cornerHarris(gray255, dst, blockSize, ksize, k, Core.BORDER_REFLECT); in testCornerHarrisMatMatIntIntDoubleInt()
[all …]
/external/opencv3/samples/android/image-manipulations/src/org/opencv/samples/imagemanipulations/
DImageManipulationsActivity.java9 import org.opencv.core.Core;
228 Core.normalize(hist, hist, sizeRgba.height/2, 0, Core.NORM_INF); in onCameraFrame()
241 Core.normalize(hist, hist, sizeRgba.height/2, 0, Core.NORM_INF); in onCameraFrame()
251 Core.normalize(hist, hist, sizeRgba.height/2, 0, Core.NORM_INF); in onCameraFrame()
273 Core.convertScaleAbs(mIntermediateMat, mIntermediateMat, 10, 0); in onCameraFrame()
281 Core.transform(rgbaInnerWindow, rgbaInnerWindow, mSepiaKernel); in onCameraFrame()
311 Core.convertScaleAbs(rgbaInnerWindow, mIntermediateMat, 1./16, 0); in onCameraFrame()
312 Core.convertScaleAbs(mIntermediateMat, rgbaInnerWindow, 16, 0); in onCameraFrame()
/external/opencv3/modules/java/generator/src/java/
Dandroid+FpsMeter.java5 import org.opencv.core.Core;
28 mFrequency = Core.getTickFrequency(); in init()
29 mprevFrameTime = Core.getTickCount(); in init()
44 long time = Core.getTickCount(); in measure()
/external/opencv3/samples/java/eclipse/HelloCV/src/
DMain.java1 import org.opencv.core.Core;
8 System.out.println("Welcome to OpenCV " + Core.VERSION); in main()
9 System.loadLibrary(Core.NATIVE_LIBRARY_NAME); in main()
/external/opencv3/samples/winrt/ImageManipulations/common/
DLayoutAwarePage.h77 …void WindowSizeChanged(Platform::Object^ sender, Windows::UI::Core::WindowSizeChangedEventArgs^ e);
81 void CoreDispatcher_AcceleratorKeyActivated(Windows::UI::Core::CoreDispatcher^ sender,
82 Windows::UI::Core::AcceleratorKeyEventArgs^ args);
83 void CoreWindow_PointerPressed(Windows::UI::Core::CoreWindow^ sender,
84 Windows::UI::Core::PointerEventArgs^ args);
/external/valgrind/
Dglibc-2.4.supp27 ## Suppressions for Fedora Core 5 on ppc32/amd64 (glibc-2.3.90)
30 Fedora-Core-5-hack1
37 Fedora-Core-5-hack2
46 Fedora-Core-5-hack2a
55 Fedora-Core-5-hack3
64 Fedora-Core-5-__strcpy_chk-64bit-hack-TODO-fix-this-properly
72 Fedora-Core-5-hack3-ld24
80 Fedora-Core-5-yet-another-ppc32-hack
/external/opencv3/samples/java/ant/src/
DSimpleSample.java1 import org.opencv.core.Core;
8 static{ System.loadLibrary(Core.NATIVE_LIBRARY_NAME); }
11 System.out.println("Welcome to OpenCV " + Core.VERSION); in main()
/external/opencv3/modules/photo/misc/java/test/
DPhotoTest.java3 import org.opencv.core.Core;
14 Imgproc.circle(gray255, p, 2, colorBlack, Core.FILLED); in testInpaint()
15 Imgproc.circle(gray0, p, 2, colorWhite, Core.FILLED); in testInpaint()
/external/opencv3/samples/android/camera-calibration/src/org/opencv/samples/cameracalibration/
DCameraCalibrator.java7 import org.opencv.core.Core;
69 mIsCalibrated = Core.checkRange(mCameraMatrix) in calibrate()
70 && Core.checkRange(mDistortionCoefficients); in calibrate()
112 error = Core.norm(mCornersBuffer.get(i), cornersProjected, Core.NORM_L2); in computeReprojectionErrors()
144 Core.FONT_HERSHEY_SIMPLEX, 1.0, new Scalar(255, 255, 0)); in renderFrame()

12345678910>>...15