mirror of https://github.com/opencv/opencv.git
Original pull requests: #996 from jet47:gpu-nvcuvid-libraries #995 from jet47:fix-bug-2985 #999 from snosov1:unreliable-results-fix #1005 from alekcac:doc_fix #1004 from jet47:fix-bug-3068 #987 from jet47:bug-3085-fix #969 from pengx17:2.4_binary_cache #929 from dominikrose:mingw-libdc1394-2-windows #1000 from ivan-korolev:fix_sift_bug_2892 #1001 from ivan-korolev:fix_stitching_bug_2405 #998 from asmorkalov:android_cmake_mips_fix #993 from ivan-korolev:fix_videostab_bug_3023 #988 from snosov1:3071-fix #986 from pengx17:2.4_initiated_context #982 from pengx17:2.4_fix_two_bugs #981 from SeninAndrew:ximea_camera_support_fix #991 from asmorkalov:android_javadoc_fix #972 from jet47:mog2-params-bug-2168 #980 from SpecLad:include-config #973 from pengx17:2.4_oclclahe #903 from aks2:2.4 #968 from asmorkalov:android_na_cproj_fix #971 from SpecLad:matchers-ctor #970 from asmorkalov:dshow_valid_check_fix #965 from apavlenko:fix_java_empty_mats Conflicts: cmake/OpenCVModule.cmake modules/core/src/matmul.cpp modules/gpu/CMakeLists.txt modules/ocl/include/opencv2/ocl/ocl.hpp modules/ocl/perf/perf_imgproc.cpp modules/ocl/src/imgproc.cpp modules/ocl/src/initialization.cpp modules/stitching/src/matchers.cpp modules/video/src/video_init.cpp modules/videostab/src/global_motion.cpppull/1015/head
commit
13cd0a0502
52 changed files with 1405 additions and 378 deletions
@ -0,0 +1,275 @@ |
|||||||
|
/*M/////////////////////////////////////////////////////////////////////////////////////// |
||||||
|
// |
||||||
|
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. |
||||||
|
// |
||||||
|
// By downloading, copying, installing or using the software you agree to this license. |
||||||
|
// If you do not agree to this license, do not download, install, |
||||||
|
// copy or use the software. |
||||||
|
// |
||||||
|
// |
||||||
|
// License Agreement |
||||||
|
// For Open Source Computer Vision Library |
||||||
|
// |
||||||
|
// Copyright (C) 2010-2012, Multicoreware, Inc., all rights reserved. |
||||||
|
// Copyright (C) 2010-2012, Advanced Micro Devices, Inc., all rights reserved. |
||||||
|
// Third party copyrights are property of their respective owners. |
||||||
|
// |
||||||
|
// @Authors |
||||||
|
// Sen Liu, swjtuls1987@126.com |
||||||
|
// |
||||||
|
// Redistribution and use in source and binary forms, with or without modification, |
||||||
|
// are permitted provided that the following conditions are met: |
||||||
|
// |
||||||
|
// * Redistribution's of source code must retain the above copyright notice, |
||||||
|
// this list of conditions and the following disclaimer. |
||||||
|
// |
||||||
|
// * Redistribution's in binary form must reproduce the above copyright notice, |
||||||
|
// this list of conditions and the following disclaimer in the documentation |
||||||
|
// and/or other oclMaterials provided with the distribution. |
||||||
|
// |
||||||
|
// * The name of the copyright holders may not be used to endorse or promote products |
||||||
|
// derived from this software without specific prior written permission. |
||||||
|
// |
||||||
|
// This software is provided by the copyright holders and contributors as is and |
||||||
|
// any express or implied warranties, including, but not limited to, the implied |
||||||
|
// warranties of merchantability and fitness for a particular purpose are disclaimed. |
||||||
|
// In no event shall the Intel Corporation or contributors be liable for any direct, |
||||||
|
// indirect, incidental, special, exemplary, or consequential damages |
||||||
|
// (including, but not limited to, procurement of substitute goods or services; |
||||||
|
// loss of use, data, or profits; or business interruption) however caused |
||||||
|
// and on any theory of liability, whether in contract, strict liability, |
||||||
|
// or tort (including negligence or otherwise) arising in any way out of |
||||||
|
// the use of this software, even if advised of the possibility of such damage. |
||||||
|
// |
||||||
|
//M*/ |
||||||
|
|
||||||
|
#ifndef WAVE_SIZE |
||||||
|
#define WAVE_SIZE 1 |
||||||
|
#endif |
||||||
|
|
||||||
|
int calc_lut(__local int* smem, int val, int tid) |
||||||
|
{ |
||||||
|
smem[tid] = val; |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid == 0) |
||||||
|
{ |
||||||
|
for (int i = 1; i < 256; ++i) |
||||||
|
{ |
||||||
|
smem[i] += smem[i - 1]; |
||||||
|
} |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
return smem[tid]; |
||||||
|
} |
||||||
|
|
||||||
|
#ifdef CPU |
||||||
|
void reduce(volatile __local int* smem, int val, int tid) |
||||||
|
{ |
||||||
|
smem[tid] = val; |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 128) |
||||||
|
{ |
||||||
|
smem[tid] = val += smem[tid + 128]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 64) |
||||||
|
{ |
||||||
|
smem[tid] = val += smem[tid + 64]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 32) |
||||||
|
{ |
||||||
|
smem[tid] += smem[tid + 32]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 16) |
||||||
|
{ |
||||||
|
smem[tid] += smem[tid + 16]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 8) |
||||||
|
{ |
||||||
|
smem[tid] += smem[tid + 8]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 4) |
||||||
|
{ |
||||||
|
smem[tid] += smem[tid + 4]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 2) |
||||||
|
{ |
||||||
|
smem[tid] += smem[tid + 2]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 1) |
||||||
|
{ |
||||||
|
smem[256] = smem[tid] + smem[tid + 1]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
} |
||||||
|
#else |
||||||
|
void reduce(__local volatile int* smem, int val, int tid) |
||||||
|
{ |
||||||
|
smem[tid] = val; |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 128) |
||||||
|
{ |
||||||
|
smem[tid] = val += smem[tid + 128]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 64) |
||||||
|
{ |
||||||
|
smem[tid] = val += smem[tid + 64]; |
||||||
|
} |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (tid < 32) |
||||||
|
{ |
||||||
|
smem[tid] += smem[tid + 32]; |
||||||
|
#if WAVE_SIZE < 32 |
||||||
|
} barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
if (tid < 16) { |
||||||
|
#endif |
||||||
|
smem[tid] += smem[tid + 16]; |
||||||
|
#if WAVE_SIZE < 16 |
||||||
|
} barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
if (tid < 8) { |
||||||
|
#endif |
||||||
|
smem[tid] += smem[tid + 8]; |
||||||
|
smem[tid] += smem[tid + 4]; |
||||||
|
smem[tid] += smem[tid + 2]; |
||||||
|
smem[tid] += smem[tid + 1]; |
||||||
|
} |
||||||
|
} |
||||||
|
#endif |
||||||
|
|
||||||
|
__kernel void calcLut(__global __const uchar * src, __global uchar * lut, |
||||||
|
const int srcStep, const int dstStep, |
||||||
|
const int2 tileSize, const int tilesX, |
||||||
|
const int clipLimit, const float lutScale) |
||||||
|
{ |
||||||
|
__local int smem[512]; |
||||||
|
|
||||||
|
const int tx = get_group_id(0); |
||||||
|
const int ty = get_group_id(1); |
||||||
|
const unsigned int tid = get_local_id(1) * get_local_size(0) |
||||||
|
+ get_local_id(0); |
||||||
|
|
||||||
|
smem[tid] = 0; |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
for (int i = get_local_id(1); i < tileSize.y; i += get_local_size(1)) |
||||||
|
{ |
||||||
|
__global const uchar* srcPtr = src + mad24( ty * tileSize.y + i, |
||||||
|
srcStep, tx * tileSize.x ); |
||||||
|
for (int j = get_local_id(0); j < tileSize.x; j += get_local_size(0)) |
||||||
|
{ |
||||||
|
const int data = srcPtr[j]; |
||||||
|
atomic_inc(&smem[data]); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
int tHistVal = smem[tid]; |
||||||
|
|
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
if (clipLimit > 0) |
||||||
|
{ |
||||||
|
// clip histogram bar |
||||||
|
|
||||||
|
int clipped = 0; |
||||||
|
if (tHistVal > clipLimit) |
||||||
|
{ |
||||||
|
clipped = tHistVal - clipLimit; |
||||||
|
tHistVal = clipLimit; |
||||||
|
} |
||||||
|
|
||||||
|
// find number of overall clipped samples |
||||||
|
|
||||||
|
reduce(smem, clipped, tid); |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
#ifdef CPU |
||||||
|
clipped = smem[256]; |
||||||
|
#else |
||||||
|
clipped = smem[0]; |
||||||
|
#endif |
||||||
|
|
||||||
|
// broadcast evaluated value |
||||||
|
|
||||||
|
__local int totalClipped; |
||||||
|
|
||||||
|
if (tid == 0) |
||||||
|
totalClipped = clipped; |
||||||
|
barrier(CLK_LOCAL_MEM_FENCE); |
||||||
|
|
||||||
|
// redistribute clipped samples evenly |
||||||
|
|
||||||
|
int redistBatch = totalClipped / 256; |
||||||
|
tHistVal += redistBatch; |
||||||
|
|
||||||
|
int residual = totalClipped - redistBatch * 256; |
||||||
|
if (tid < residual) |
||||||
|
++tHistVal; |
||||||
|
} |
||||||
|
|
||||||
|
const int lutVal = calc_lut(smem, tHistVal, tid); |
||||||
|
uint ires = (uint)convert_int_rte(lutScale * lutVal); |
||||||
|
lut[(ty * tilesX + tx) * dstStep + tid] = |
||||||
|
convert_uchar(clamp(ires, (uint)0, (uint)255)); |
||||||
|
} |
||||||
|
|
||||||
|
__kernel void transform(__global __const uchar * src, |
||||||
|
__global uchar * dst, |
||||||
|
__global uchar * lut, |
||||||
|
const int srcStep, const int dstStep, const int lutStep, |
||||||
|
const int cols, const int rows, |
||||||
|
const int2 tileSize, |
||||||
|
const int tilesX, const int tilesY) |
||||||
|
{ |
||||||
|
const int x = get_global_id(0); |
||||||
|
const int y = get_global_id(1); |
||||||
|
|
||||||
|
if (x >= cols || y >= rows) |
||||||
|
return; |
||||||
|
|
||||||
|
const float tyf = (convert_float(y) / tileSize.y) - 0.5f; |
||||||
|
int ty1 = convert_int_rtn(tyf); |
||||||
|
int ty2 = ty1 + 1; |
||||||
|
const float ya = tyf - ty1; |
||||||
|
ty1 = max(ty1, 0); |
||||||
|
ty2 = min(ty2, tilesY - 1); |
||||||
|
|
||||||
|
const float txf = (convert_float(x) / tileSize.x) - 0.5f; |
||||||
|
int tx1 = convert_int_rtn(txf); |
||||||
|
int tx2 = tx1 + 1; |
||||||
|
const float xa = txf - tx1; |
||||||
|
tx1 = max(tx1, 0); |
||||||
|
tx2 = min(tx2, tilesX - 1); |
||||||
|
|
||||||
|
const int srcVal = src[mad24(y, srcStep, x)]; |
||||||
|
|
||||||
|
float res = 0; |
||||||
|
|
||||||
|
res += lut[mad24(ty1 * tilesX + tx1, lutStep, srcVal)] * ((1.0f - xa) * (1.0f - ya)); |
||||||
|
res += lut[mad24(ty1 * tilesX + tx2, lutStep, srcVal)] * ((xa) * (1.0f - ya)); |
||||||
|
res += lut[mad24(ty2 * tilesX + tx1, lutStep, srcVal)] * ((1.0f - xa) * (ya)); |
||||||
|
res += lut[mad24(ty2 * tilesX + tx2, lutStep, srcVal)] * ((xa) * (ya)); |
||||||
|
|
||||||
|
uint ires = (uint)convert_int_rte(res); |
||||||
|
dst[mad24(y, dstStep, x)] = convert_uchar(clamp(ires, (uint)0, (uint)255)); |
||||||
|
} |
@ -1,75 +1,61 @@ |
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
||||||
<?fileVersion 4.0.0?> |
<?fileVersion 4.0.0?> |
||||||
|
|
||||||
<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> |
<cproject storage_type_id="org.eclipse.cdt.core.XmlProjectDescriptionStorage"> |
||||||
<storageModule moduleId="org.eclipse.cdt.core.settings"> |
<storageModule moduleId="org.eclipse.cdt.core.settings"> |
||||||
<cconfiguration id="0.129633445"> |
<cconfiguration id="0.882924228"> |
||||||
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="0.129633445" moduleId="org.eclipse.cdt.core.settings" name="Default"> |
<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="0.882924228" moduleId="org.eclipse.cdt.core.settings" name="Default"> |
||||||
<externalSettings/> |
<externalSettings/> |
||||||
<extensions> |
<extensions> |
||||||
<extension id="org.eclipse.cdt.core.VCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
<extension id="org.eclipse.cdt.core.VCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
||||||
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
<extension id="org.eclipse.cdt.core.GmakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
||||||
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> |
<extension id="org.eclipse.cdt.core.CWDLocator" point="org.eclipse.cdt.core.ErrorParser"/> |
||||||
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
||||||
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
||||||
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/> |
||||||
</extensions> |
</extensions> |
||||||
</storageModule> |
</storageModule> |
||||||
<storageModule moduleId="cdtBuildSystem" version="4.0.0"> |
<storageModule moduleId="cdtBuildSystem" version="4.0.0"> |
||||||
<configuration artifactName="${ProjName}" buildProperties="" description="" id="0.129633445" name="Default" parent="org.eclipse.cdt.build.core.prefbase.cfg"> |
<configuration artifactName="${ProjName}" buildProperties="" description="" id="0.882924228" name="Default" parent="org.eclipse.cdt.build.core.prefbase.cfg"> |
||||||
<folderInfo id="0.129633445." name="/" resourcePath=""> |
<folderInfo id="0.882924228." name="/" resourcePath=""> |
||||||
<toolChain id="org.eclipse.cdt.build.core.prefbase.toolchain.2006441180" name="No ToolChain" resourceTypeBasedDiscovery="false" superClass="org.eclipse.cdt.build.core.prefbase.toolchain"> |
<toolChain id="org.eclipse.cdt.build.core.prefbase.toolchain.1667980868" name="No ToolChain" resourceTypeBasedDiscovery="false" superClass="org.eclipse.cdt.build.core.prefbase.toolchain"> |
||||||
<targetPlatform id="org.eclipse.cdt.build.core.prefbase.toolchain.2006441180.527973180" name=""/> |
<targetPlatform id="org.eclipse.cdt.build.core.prefbase.toolchain.1667980868.2108168132" name=""/> |
||||||
<builder autoBuildTarget="" command="${NDKROOT}/ndk-build.cmd" enableAutoBuild="true" enableCleanBuild="false" id="org.eclipse.cdt.build.core.settings.default.builder.180541221" incrementalBuildTarget="" keepEnvironmentInBuildfile="false" managedBuildOn="false" name="Gnu Make Builder" superClass="org.eclipse.cdt.build.core.settings.default.builder"/> |
<builder autoBuildTarget="" command=""${NDKROOT}/ndk-build.cmd"" enableAutoBuild="true" enableCleanBuild="false" id="org.eclipse.cdt.build.core.settings.default.builder.328915772" incrementalBuildTarget="" keepEnvironmentInBuildfile="false" managedBuildOn="false" name="Gnu Make Builder" superClass="org.eclipse.cdt.build.core.settings.default.builder"/> |
||||||
<tool id="org.eclipse.cdt.build.core.settings.holder.libs.791069665" name="holder for library settings" superClass="org.eclipse.cdt.build.core.settings.holder.libs"/> |
<tool id="org.eclipse.cdt.build.core.settings.holder.libs.630148311" name="holder for library settings" superClass="org.eclipse.cdt.build.core.settings.holder.libs"/> |
||||||
<tool id="org.eclipse.cdt.build.core.settings.holder.1894181736" name="Assembly" superClass="org.eclipse.cdt.build.core.settings.holder"> |
<tool id="org.eclipse.cdt.build.core.settings.holder.525090327" name="Assembly" superClass="org.eclipse.cdt.build.core.settings.holder"> |
||||||
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.588929884" languageId="org.eclipse.cdt.core.assembly" languageName="Assembly" sourceContentType="org.eclipse.cdt.core.asmSource" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/> |
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.1491216279" languageId="org.eclipse.cdt.core.assembly" languageName="Assembly" sourceContentType="org.eclipse.cdt.core.asmSource" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/> |
||||||
</tool> |
</tool> |
||||||
<tool id="org.eclipse.cdt.build.core.settings.holder.303359177" name="GNU C++" superClass="org.eclipse.cdt.build.core.settings.holder"> |
<tool id="org.eclipse.cdt.build.core.settings.holder.1242729366" name="GNU C++" superClass="org.eclipse.cdt.build.core.settings.holder"> |
||||||
<option id="org.eclipse.cdt.build.core.settings.holder.incpaths.373249505" name="Include Paths" superClass="org.eclipse.cdt.build.core.settings.holder.incpaths" valueType="includePath"> |
<option id="org.eclipse.cdt.build.core.settings.holder.incpaths.881377735" name="Include Paths" superClass="org.eclipse.cdt.build.core.settings.holder.incpaths" valueType="includePath"> |
||||||
<listOptionValue builtIn="false" value=""${NDKROOT}/platforms/android-9/arch-arm/usr/include""/> |
<listOptionValue builtIn="false" value=""${NDKROOT}/platforms/android-9/arch-arm/usr/include""/> |
||||||
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/cxx-stl/gnu-libstdc++/4.6/include""/> |
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/cxx-stl/gnu-libstdc++/4.6/include""/> |
||||||
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi-v7a/include""/> |
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi-v7a/include""/> |
||||||
<listOptionValue builtIn="false" value=""${ProjDirPath}/../../sdk/native/jni/include""/> |
<listOptionValue builtIn="false" value=""${ProjDirPath}/../../sdk/native/jni/include""/> |
||||||
</option> |
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/android/native_app_glue""/> |
||||||
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.1424359063" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols"> |
</option> |
||||||
<listOptionValue builtIn="false" value="ANDROID=1"/> |
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.273216997" languageId="org.eclipse.cdt.core.g++" languageName="GNU C++" sourceContentType="org.eclipse.cdt.core.cxxSource,org.eclipse.cdt.core.cxxHeader" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/> |
||||||
</option> |
</tool> |
||||||
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.360067880" languageId="org.eclipse.cdt.core.g++" languageName="GNU C++" sourceContentType="org.eclipse.cdt.core.cxxSource,org.eclipse.cdt.core.cxxHeader" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/> |
<tool id="org.eclipse.cdt.build.core.settings.holder.1779128177" name="GNU C" superClass="org.eclipse.cdt.build.core.settings.holder"> |
||||||
</tool> |
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.1778510041" languageId="org.eclipse.cdt.core.gcc" languageName="GNU C" sourceContentType="org.eclipse.cdt.core.cSource,org.eclipse.cdt.core.cHeader" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/> |
||||||
<tool id="org.eclipse.cdt.build.core.settings.holder.1156172258" name="GNU C" superClass="org.eclipse.cdt.build.core.settings.holder"> |
</tool> |
||||||
<option id="org.eclipse.cdt.build.core.settings.holder.incpaths.149918263" name="Include Paths" superClass="org.eclipse.cdt.build.core.settings.holder.incpaths" valueType="includePath"> |
</toolChain> |
||||||
<listOptionValue builtIn="false" value=""${NDKROOT}/platforms/android-9/arch-arm/usr/include""/> |
</folderInfo> |
||||||
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/cxx-stl/gnu-libstdc++/4.6/include""/> |
</configuration> |
||||||
<listOptionValue builtIn="false" value=""${NDKROOT}/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi-v7a/include""/> |
</storageModule> |
||||||
<listOptionValue builtIn="false" value=""${ProjDirPath}/../../sdk/native/jni/include""/> |
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> |
||||||
</option> |
</cconfiguration> |
||||||
<option id="org.eclipse.cdt.build.core.settings.holder.symbols.719752707" name="Symbols" superClass="org.eclipse.cdt.build.core.settings.holder.symbols" valueType="definedSymbols"> |
</storageModule> |
||||||
<listOptionValue builtIn="false" value="ANDROID=1"/> |
<storageModule moduleId="cdtBuildSystem" version="4.0.0"> |
||||||
</option> |
<project id="CvNativeActivity.null.708321898" name="CvNativeActivity"/> |
||||||
<inputType id="org.eclipse.cdt.build.core.settings.holder.inType.232493949" languageId="org.eclipse.cdt.core.gcc" languageName="GNU C" sourceContentType="org.eclipse.cdt.core.cSource,org.eclipse.cdt.core.cHeader" superClass="org.eclipse.cdt.build.core.settings.holder.inType"/> |
</storageModule> |
||||||
</tool> |
<storageModule moduleId="scannerConfiguration"> |
||||||
</toolChain> |
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> |
||||||
</folderInfo> |
<scannerConfigBuildInfo instanceId="0.882924228"> |
||||||
<sourceEntries> |
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> |
||||||
<entry flags="VALUE_WORKSPACE_PATH" kind="sourcePath" name="jni"/> |
</scannerConfigBuildInfo> |
||||||
</sourceEntries> |
</storageModule> |
||||||
</configuration> |
<storageModule moduleId="refreshScope" versionNumber="1"> |
||||||
</storageModule> |
<resource resourceType="PROJECT" workspacePath="/CvNativeActivity"/> |
||||||
<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/> |
</storageModule> |
||||||
</cconfiguration> |
<storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/> |
||||||
</storageModule> |
</cproject> |
||||||
<storageModule moduleId="cdtBuildSystem" version="4.0.0"> |
|
||||||
<project id="OpenCV Sample - face-detection.null.1639518055" name="OpenCV Sample - face-detection"/> |
|
||||||
</storageModule> |
|
||||||
<storageModule moduleId="scannerConfiguration"> |
|
||||||
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> |
|
||||||
<scannerConfigBuildInfo instanceId="0.129633445"> |
|
||||||
<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId=""/> |
|
||||||
</scannerConfigBuildInfo> |
|
||||||
</storageModule> |
|
||||||
<storageModule moduleId="refreshScope" versionNumber="1"> |
|
||||||
<resource resourceType="PROJECT" workspacePath="/OpenCV Sample - face-detection"/> |
|
||||||
</storageModule> |
|
||||||
<storageModule moduleId="org.eclipse.cdt.internal.ui.text.commentOwnerProjectMappings"/> |
|
||||||
</cproject> |
|
||||||
|
Loading…
Reference in new issue