├── .gitattributes ├── .gitignore ├── 3rdParty ├── Python │ ├── Include │ │ ├── PC │ │ │ ├── clinic │ │ │ │ ├── _msi.c.h │ │ │ │ ├── _testconsole.c.h │ │ │ │ ├── msvcrtmodule.c.h │ │ │ │ ├── winreg.c.h │ │ │ │ └── winsound.c.h │ │ │ ├── errmap.h │ │ │ ├── pyconfig.h │ │ │ └── python_ver_rc.h │ │ ├── Python.h │ │ ├── README.rst │ │ ├── abstract.h │ │ ├── bltinmodule.h │ │ ├── boolobject.h │ │ ├── bytearrayobject.h │ │ ├── bytesobject.h │ │ ├── ceval.h │ │ ├── codecs.h │ │ ├── compile.h │ │ ├── complexobject.h │ │ ├── cpython │ │ │ ├── abstract.h │ │ │ ├── bytearrayobject.h │ │ │ ├── bytesobject.h │ │ │ ├── cellobject.h │ │ │ ├── ceval.h │ │ │ ├── classobject.h │ │ │ ├── code.h │ │ │ ├── compile.h │ │ │ ├── complexobject.h │ │ │ ├── context.h │ │ │ ├── descrobject.h │ │ │ ├── dictobject.h │ │ │ ├── fileobject.h │ │ │ ├── fileutils.h │ │ │ ├── floatobject.h │ │ │ ├── frameobject.h │ │ │ ├── funcobject.h │ │ │ ├── genobject.h │ │ │ ├── import.h │ │ │ ├── initconfig.h │ │ │ ├── listobject.h │ │ │ ├── longintrepr.h │ │ │ ├── longobject.h │ │ │ ├── methodobject.h │ │ │ ├── modsupport.h │ │ │ ├── object.h │ │ │ ├── objimpl.h │ │ │ ├── odictobject.h │ │ │ ├── picklebufobject.h │ │ │ ├── pthread_stubs.h │ │ │ ├── pyctype.h │ │ │ ├── pydebug.h │ │ │ ├── pyerrors.h │ │ │ ├── pyfpe.h │ │ │ ├── pyframe.h │ │ │ ├── pylifecycle.h │ │ │ ├── pymem.h │ │ │ ├── pystate.h │ │ │ ├── pythonrun.h │ │ │ ├── pythread.h │ │ │ ├── pytime.h │ │ │ ├── setobject.h │ │ │ ├── sysmodule.h │ │ │ ├── traceback.h │ │ │ ├── tupleobject.h │ │ │ ├── unicodeobject.h │ │ │ ├── warnings.h │ │ │ └── weakrefobject.h │ │ ├── datetime.h │ │ ├── descrobject.h │ │ ├── dictobject.h │ │ ├── dynamic_annotations.h │ │ ├── enumobject.h │ │ ├── errcode.h │ │ ├── exports.h │ │ ├── fileobject.h │ │ ├── fileutils.h │ │ ├── floatobject.h │ │ ├── frameobject.h │ │ ├── genericaliasobject.h │ │ ├── import.h │ │ ├── internal │ │ │ ├── pycore_abstract.h │ │ │ ├── pycore_accu.h │ │ │ ├── pycore_asdl.h │ │ │ ├── pycore_ast.h │ │ │ ├── pycore_ast_state.h │ │ │ ├── pycore_atomic.h │ │ │ ├── pycore_atomic_funcs.h │ │ │ ├── pycore_bitutils.h │ │ │ ├── pycore_blocks_output_buffer.h │ │ │ ├── pycore_bytes_methods.h │ │ │ ├── pycore_bytesobject.h │ │ │ ├── pycore_call.h │ │ │ ├── pycore_ceval.h │ │ │ ├── pycore_code.h │ │ │ ├── pycore_compile.h │ │ │ ├── pycore_condvar.h │ │ │ ├── pycore_context.h │ │ │ ├── pycore_dict.h │ │ │ ├── pycore_dtoa.h │ │ │ ├── pycore_emscripten_signal.h │ │ │ ├── pycore_exceptions.h │ │ │ ├── pycore_fileutils.h │ │ │ ├── pycore_floatobject.h │ │ │ ├── pycore_format.h │ │ │ ├── pycore_frame.h │ │ │ ├── pycore_function.h │ │ │ ├── pycore_gc.h │ │ │ ├── pycore_genobject.h │ │ │ ├── pycore_getopt.h │ │ │ ├── pycore_gil.h │ │ │ ├── pycore_global_objects.h │ │ │ ├── pycore_global_strings.h │ │ │ ├── pycore_hamt.h │ │ │ ├── pycore_hashtable.h │ │ │ ├── pycore_import.h │ │ │ ├── pycore_initconfig.h │ │ │ ├── pycore_interp.h │ │ │ ├── pycore_interpreteridobject.h │ │ │ ├── pycore_list.h │ │ │ ├── pycore_long.h │ │ │ ├── pycore_moduleobject.h │ │ │ ├── pycore_namespace.h │ │ │ ├── pycore_object.h │ │ │ ├── pycore_opcode.h │ │ │ ├── pycore_parser.h │ │ │ ├── pycore_pathconfig.h │ │ │ ├── pycore_pyarena.h │ │ │ ├── pycore_pyerrors.h │ │ │ ├── pycore_pyhash.h │ │ │ ├── pycore_pylifecycle.h │ │ │ ├── pycore_pymath.h │ │ │ ├── pycore_pymem.h │ │ │ ├── pycore_pystate.h │ │ │ ├── pycore_runtime.h │ │ │ ├── pycore_runtime_init.h │ │ │ ├── pycore_signal.h │ │ │ ├── pycore_sliceobject.h │ │ │ ├── pycore_strhex.h │ │ │ ├── pycore_structseq.h │ │ │ ├── pycore_symtable.h │ │ │ ├── pycore_sysmodule.h │ │ │ ├── pycore_traceback.h │ │ │ ├── pycore_tuple.h │ │ │ ├── pycore_typeobject.h │ │ │ ├── pycore_ucnhash.h │ │ │ ├── pycore_unicodeobject.h │ │ │ ├── pycore_unionobject.h │ │ │ └── pycore_warnings.h │ │ ├── intrcheck.h │ │ ├── iterobject.h │ │ ├── listobject.h │ │ ├── longobject.h │ │ ├── marshal.h │ │ ├── memoryobject.h │ │ ├── methodobject.h │ │ ├── modsupport.h │ │ ├── moduleobject.h │ │ ├── object.h │ │ ├── objimpl.h │ │ ├── opcode.h │ │ ├── osdefs.h │ │ ├── osmodule.h │ │ ├── patchlevel.h │ │ ├── py_curses.h │ │ ├── pybuffer.h │ │ ├── pycapsule.h │ │ ├── pydtrace.h │ │ ├── pyerrors.h │ │ ├── pyexpat.h │ │ ├── pyframe.h │ │ ├── pyhash.h │ │ ├── pylifecycle.h │ │ ├── pymacconfig.h │ │ ├── pymacro.h │ │ ├── pymath.h │ │ ├── pymem.h │ │ ├── pyport.h │ │ ├── pystate.h │ │ ├── pystrcmp.h │ │ ├── pystrtod.h │ │ ├── pythonrun.h │ │ ├── pythread.h │ │ ├── pytypedefs.h │ │ ├── rangeobject.h │ │ ├── setobject.h │ │ ├── sliceobject.h │ │ ├── structmember.h │ │ ├── structseq.h │ │ ├── sysmodule.h │ │ ├── token.h │ │ ├── traceback.h │ │ ├── tracemalloc.h │ │ ├── tupleobject.h │ │ ├── typeslots.h │ │ ├── unicodeobject.h │ │ ├── warnings.h │ │ └── weakrefobject.h │ └── lib │ │ └── x64 │ │ ├── _asyncio.lib │ │ ├── _asyncio_d.lib │ │ ├── _bz2.lib │ │ ├── _bz2_d.lib │ │ ├── _ctypes.lib │ │ ├── _ctypes_d.lib │ │ ├── _ctypes_test.lib │ │ ├── _ctypes_test_d.lib │ │ ├── _decimal.lib │ │ ├── _decimal_d.lib │ │ ├── _elementtree.lib │ │ ├── _elementtree_d.lib │ │ ├── _hashlib.lib │ │ ├── _hashlib_d.lib │ │ ├── _lzma.lib │ │ ├── _lzma_d.lib │ │ ├── _msi.lib │ │ ├── _msi_d.lib │ │ ├── _multiprocessing.lib │ │ ├── _multiprocessing_d.lib │ │ ├── _overlapped.lib │ │ ├── _overlapped_d.lib │ │ ├── _queue.lib │ │ ├── _queue_d.lib │ │ ├── _socket.lib │ │ ├── _socket_d.lib │ │ ├── _sqlite3.lib │ │ ├── _sqlite3_d.lib │ │ ├── _ssl.lib │ │ ├── _ssl_d.lib │ │ ├── _testbuffer.lib │ │ ├── _testbuffer_d.lib │ │ ├── _testcapi.lib │ │ ├── _testcapi_d.lib │ │ ├── _testconsole.lib │ │ ├── _testconsole_d.lib │ │ ├── _testimportmultiple.lib │ │ ├── _testimportmultiple_d.lib │ │ ├── _testinternalcapi.lib │ │ ├── _testinternalcapi_d.lib │ │ ├── _testmultiphase.lib │ │ ├── _testmultiphase_d.lib │ │ ├── _tkinter.lib │ │ ├── _tkinter_d.lib │ │ ├── _uuid.lib │ │ ├── _uuid_d.lib │ │ ├── _zoneinfo.lib │ │ ├── _zoneinfo_d.lib │ │ ├── liblzma.lib │ │ ├── liblzma_d.lib │ │ ├── pyexpat.lib │ │ ├── pyexpat_d.lib │ │ ├── pyshellext.lib │ │ ├── pyshellext_d.lib │ │ ├── python3.lib │ │ ├── python311.lib │ │ ├── python311_d.lib │ │ ├── python3_d.lib │ │ ├── select.lib │ │ ├── select_d.lib │ │ ├── sqlite3.lib │ │ ├── sqlite3_d.lib │ │ ├── unicodedata.lib │ │ ├── unicodedata_d.lib │ │ ├── winsound.lib │ │ └── winsound_d.lib └── opencv │ ├── include │ └── opencv2 │ │ ├── aruco.hpp │ │ ├── aruco │ │ ├── aruco_calib.hpp │ │ └── charuco.hpp │ │ ├── bgsegm.hpp │ │ ├── bioinspired.hpp │ │ ├── bioinspired │ │ ├── bioinspired.hpp │ │ ├── retina.hpp │ │ ├── retinafasttonemapping.hpp │ │ └── transientareassegmentationmodule.hpp │ │ ├── calib3d.hpp │ │ ├── calib3d │ │ ├── calib3d.hpp │ │ └── calib3d_c.h │ │ ├── ccalib.hpp │ │ ├── ccalib │ │ ├── multicalib.hpp │ │ ├── omnidir.hpp │ │ └── randpattern.hpp │ │ ├── core.hpp │ │ ├── core │ │ ├── affine.hpp │ │ ├── async.hpp │ │ ├── base.hpp │ │ ├── bindings_utils.hpp │ │ ├── bufferpool.hpp │ │ ├── check.hpp │ │ ├── core.hpp │ │ ├── core_c.h │ │ ├── cuda.hpp │ │ ├── cuda.inl.hpp │ │ ├── cuda │ │ │ ├── block.hpp │ │ │ ├── border_interpolate.hpp │ │ │ ├── color.hpp │ │ │ ├── common.hpp │ │ │ ├── datamov_utils.hpp │ │ │ ├── detail │ │ │ │ ├── color_detail.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ ├── transform_detail.hpp │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ └── vec_distance_detail.hpp │ │ │ ├── dynamic_smem.hpp │ │ │ ├── emulation.hpp │ │ │ ├── filters.hpp │ │ │ ├── funcattrib.hpp │ │ │ ├── functional.hpp │ │ │ ├── limits.hpp │ │ │ ├── reduce.hpp │ │ │ ├── saturate_cast.hpp │ │ │ ├── scan.hpp │ │ │ ├── simd_functions.hpp │ │ │ ├── transform.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── utility.hpp │ │ │ ├── vec_distance.hpp │ │ │ ├── vec_math.hpp │ │ │ ├── vec_traits.hpp │ │ │ ├── warp.hpp │ │ │ ├── warp_reduce.hpp │ │ │ └── warp_shuffle.hpp │ │ ├── cuda_stream_accessor.hpp │ │ ├── cuda_types.hpp │ │ ├── cv_cpu_dispatch.h │ │ ├── cv_cpu_helper.h │ │ ├── cvdef.h │ │ ├── cvstd.hpp │ │ ├── cvstd.inl.hpp │ │ ├── cvstd_wrapper.hpp │ │ ├── detail │ │ │ ├── async_promise.hpp │ │ │ ├── dispatch_helper.impl.hpp │ │ │ └── exception_ptr.hpp │ │ ├── directx.hpp │ │ ├── dualquaternion.hpp │ │ ├── dualquaternion.inl.hpp │ │ ├── eigen.hpp │ │ ├── fast_math.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ ├── interface.h │ │ │ ├── intrin.hpp │ │ │ ├── intrin_avx.hpp │ │ │ ├── intrin_avx512.hpp │ │ │ ├── intrin_cpp.hpp │ │ │ ├── intrin_forward.hpp │ │ │ ├── intrin_lasx.hpp │ │ │ ├── intrin_msa.hpp │ │ │ ├── intrin_neon.hpp │ │ │ ├── intrin_rvv.hpp │ │ │ ├── intrin_rvv071.hpp │ │ │ ├── intrin_rvv_010_compat_non-policy.hpp │ │ │ ├── intrin_rvv_010_compat_overloaded-non-policy.hpp │ │ │ ├── intrin_rvv_compat_overloaded.hpp │ │ │ ├── intrin_rvv_scalable.hpp │ │ │ ├── intrin_sse.hpp │ │ │ ├── intrin_sse_em.hpp │ │ │ ├── intrin_vsx.hpp │ │ │ ├── intrin_wasm.hpp │ │ │ ├── msa_macros.h │ │ │ └── simd_utils.impl.hpp │ │ ├── mat.hpp │ │ ├── mat.inl.hpp │ │ ├── matx.hpp │ │ ├── neon_utils.hpp │ │ ├── ocl.hpp │ │ ├── ocl_genbase.hpp │ │ ├── opencl │ │ │ ├── ocl_defs.hpp │ │ │ ├── opencl_info.hpp │ │ │ ├── opencl_svm.hpp │ │ │ └── runtime │ │ │ │ ├── autogenerated │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ ├── opencl_core.hpp │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ ├── opencl_gl.hpp │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ ├── opencl_core.hpp │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ ├── opencl_gl.hpp │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ ├── opengl.hpp │ │ ├── operations.hpp │ │ ├── optim.hpp │ │ ├── ovx.hpp │ │ ├── parallel │ │ │ ├── backend │ │ │ │ ├── parallel_for.openmp.hpp │ │ │ │ └── parallel_for.tbb.hpp │ │ │ └── parallel_backend.hpp │ │ ├── persistence.hpp │ │ ├── quaternion.hpp │ │ ├── quaternion.inl.hpp │ │ ├── saturate.hpp │ │ ├── simd_intrinsics.hpp │ │ ├── softfloat.hpp │ │ ├── sse_utils.hpp │ │ ├── traits.hpp │ │ ├── types.hpp │ │ ├── types_c.h │ │ ├── utility.hpp │ │ ├── utils │ │ │ ├── allocator_stats.hpp │ │ │ ├── allocator_stats.impl.hpp │ │ │ ├── filesystem.hpp │ │ │ ├── fp_control_utils.hpp │ │ │ ├── instrumentation.hpp │ │ │ ├── logger.defines.hpp │ │ │ ├── logger.hpp │ │ │ ├── logtag.hpp │ │ │ ├── tls.hpp │ │ │ └── trace.hpp │ │ ├── va_intel.hpp │ │ ├── version.hpp │ │ └── vsx_utils.hpp │ │ ├── core_detect.hpp │ │ ├── cudaarithm.hpp │ │ ├── cudabgsegm.hpp │ │ ├── cudacodec.hpp │ │ ├── cudafeatures2d.hpp │ │ ├── cudafilters.hpp │ │ ├── cudaimgproc.hpp │ │ ├── cudalegacy.hpp │ │ ├── cudalegacy │ │ ├── NCV.hpp │ │ ├── NCVBroxOpticalFlow.hpp │ │ ├── NCVHaarObjectDetection.hpp │ │ ├── NCVPyramid.hpp │ │ └── NPP_staging.hpp │ │ ├── cudaobjdetect.hpp │ │ ├── cudaoptflow.hpp │ │ ├── cudastereo.hpp │ │ ├── cudawarping.hpp │ │ ├── cudev.hpp │ │ ├── cudev │ │ ├── block │ │ │ ├── block.hpp │ │ │ ├── detail │ │ │ │ ├── reduce.hpp │ │ │ │ └── reduce_key_val.hpp │ │ │ ├── dynamic_smem.hpp │ │ │ ├── reduce.hpp │ │ │ ├── scan.hpp │ │ │ └── vec_distance.hpp │ │ ├── common.hpp │ │ ├── expr │ │ │ ├── binary_func.hpp │ │ │ ├── binary_op.hpp │ │ │ ├── color.hpp │ │ │ ├── deriv.hpp │ │ │ ├── expr.hpp │ │ │ ├── per_element_func.hpp │ │ │ ├── reduction.hpp │ │ │ ├── unary_func.hpp │ │ │ ├── unary_op.hpp │ │ │ └── warping.hpp │ │ ├── functional │ │ │ ├── color_cvt.hpp │ │ │ ├── detail │ │ │ │ └── color_cvt.hpp │ │ │ ├── functional.hpp │ │ │ └── tuple_adapter.hpp │ │ ├── grid │ │ │ ├── copy.hpp │ │ │ ├── detail │ │ │ │ ├── copy.hpp │ │ │ │ ├── histogram.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── minmaxloc.hpp │ │ │ │ ├── pyr_down.hpp │ │ │ │ ├── pyr_up.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── reduce_to_column.hpp │ │ │ │ ├── reduce_to_row.hpp │ │ │ │ ├── split_merge.hpp │ │ │ │ ├── transform.hpp │ │ │ │ └── transpose.hpp │ │ │ ├── histogram.hpp │ │ │ ├── integral.hpp │ │ │ ├── pyramids.hpp │ │ │ ├── reduce.hpp │ │ │ ├── reduce_to_vec.hpp │ │ │ ├── split_merge.hpp │ │ │ ├── transform.hpp │ │ │ └── transpose.hpp │ │ ├── ptr2d │ │ │ ├── constant.hpp │ │ │ ├── deriv.hpp │ │ │ ├── detail │ │ │ │ └── gpumat.hpp │ │ │ ├── extrapolation.hpp │ │ │ ├── glob.hpp │ │ │ ├── gpumat.hpp │ │ │ ├── interpolation.hpp │ │ │ ├── lut.hpp │ │ │ ├── mask.hpp │ │ │ ├── remap.hpp │ │ │ ├── resize.hpp │ │ │ ├── texture.hpp │ │ │ ├── traits.hpp │ │ │ ├── transform.hpp │ │ │ ├── warping.hpp │ │ │ └── zip.hpp │ │ ├── util │ │ │ ├── atomic.hpp │ │ │ ├── detail │ │ │ │ ├── tuple.hpp │ │ │ │ └── type_traits.hpp │ │ │ ├── limits.hpp │ │ │ ├── saturate_cast.hpp │ │ │ ├── simd_functions.hpp │ │ │ ├── tuple.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── vec_math.hpp │ │ │ └── vec_traits.hpp │ │ └── warp │ │ │ ├── detail │ │ │ ├── reduce.hpp │ │ │ └── reduce_key_val.hpp │ │ │ ├── reduce.hpp │ │ │ ├── scan.hpp │ │ │ ├── shuffle.hpp │ │ │ └── warp.hpp │ │ ├── cvconfig.h │ │ ├── datasets │ │ ├── ar_hmdb.hpp │ │ ├── ar_sports.hpp │ │ ├── dataset.hpp │ │ ├── fr_adience.hpp │ │ ├── fr_lfw.hpp │ │ ├── gr_chalearn.hpp │ │ ├── gr_skig.hpp │ │ ├── hpe_humaneva.hpp │ │ ├── hpe_parse.hpp │ │ ├── ir_affine.hpp │ │ ├── ir_robot.hpp │ │ ├── is_bsds.hpp │ │ ├── is_weizmann.hpp │ │ ├── msm_epfl.hpp │ │ ├── msm_middlebury.hpp │ │ ├── or_imagenet.hpp │ │ ├── or_mnist.hpp │ │ ├── or_pascal.hpp │ │ ├── or_sun.hpp │ │ ├── pd_caltech.hpp │ │ ├── pd_inria.hpp │ │ ├── slam_kitti.hpp │ │ ├── slam_tumindoor.hpp │ │ ├── sr_bsds.hpp │ │ ├── sr_div2k.hpp │ │ ├── sr_general100.hpp │ │ ├── tr_chars.hpp │ │ ├── tr_icdar.hpp │ │ ├── tr_svt.hpp │ │ ├── track_alov.hpp │ │ ├── track_vot.hpp │ │ └── util.hpp │ │ ├── dnn.hpp │ │ ├── dnn │ │ ├── all_layers.hpp │ │ ├── dict.hpp │ │ ├── dnn.hpp │ │ ├── dnn.inl.hpp │ │ ├── layer.details.hpp │ │ ├── layer.hpp │ │ ├── shape_utils.hpp │ │ ├── utils │ │ │ ├── debug_utils.hpp │ │ │ └── inference_engine.hpp │ │ └── version.hpp │ │ ├── dnn_superres.hpp │ │ ├── dpm.hpp │ │ ├── face.hpp │ │ ├── face │ │ ├── bif.hpp │ │ ├── face_alignment.hpp │ │ ├── facemark.hpp │ │ ├── facemarkAAM.hpp │ │ ├── facemarkLBF.hpp │ │ ├── facemark_train.hpp │ │ ├── facerec.hpp │ │ ├── mace.hpp │ │ └── predict_collector.hpp │ │ ├── features2d.hpp │ │ ├── features2d │ │ ├── features2d.hpp │ │ └── hal │ │ │ └── interface.h │ │ ├── flann.hpp │ │ ├── flann │ │ ├── all_indices.h │ │ ├── allocator.h │ │ ├── any.h │ │ ├── autotuned_index.h │ │ ├── composite_index.h │ │ ├── config.h │ │ ├── defines.h │ │ ├── dist.h │ │ ├── dummy.h │ │ ├── dynamic_bitset.h │ │ ├── flann.hpp │ │ ├── flann_base.hpp │ │ ├── general.h │ │ ├── ground_truth.h │ │ ├── hdf5.h │ │ ├── heap.h │ │ ├── hierarchical_clustering_index.h │ │ ├── index_testing.h │ │ ├── kdtree_index.h │ │ ├── kdtree_single_index.h │ │ ├── kmeans_index.h │ │ ├── linear_index.h │ │ ├── logger.h │ │ ├── lsh_index.h │ │ ├── lsh_table.h │ │ ├── matrix.h │ │ ├── miniflann.hpp │ │ ├── nn_index.h │ │ ├── object_factory.h │ │ ├── params.h │ │ ├── random.h │ │ ├── result_set.h │ │ ├── sampling.h │ │ ├── saving.h │ │ ├── simplex_downhill.h │ │ └── timer.h │ │ ├── fuzzy.hpp │ │ ├── fuzzy │ │ ├── fuzzy_F0_math.hpp │ │ ├── fuzzy_F1_math.hpp │ │ ├── fuzzy_image.hpp │ │ └── types.hpp │ │ ├── gapi.hpp │ │ ├── gapi │ │ ├── core.hpp │ │ ├── cpu │ │ │ ├── core.hpp │ │ │ ├── gcpukernel.hpp │ │ │ ├── imgproc.hpp │ │ │ ├── stereo.hpp │ │ │ └── video.hpp │ │ ├── fluid │ │ │ ├── core.hpp │ │ │ ├── gfluidbuffer.hpp │ │ │ ├── gfluidkernel.hpp │ │ │ └── imgproc.hpp │ │ ├── garg.hpp │ │ ├── garray.hpp │ │ ├── gasync_context.hpp │ │ ├── gcall.hpp │ │ ├── gcommon.hpp │ │ ├── gcompiled.hpp │ │ ├── gcompiled_async.hpp │ │ ├── gcompoundkernel.hpp │ │ ├── gcomputation.hpp │ │ ├── gcomputation_async.hpp │ │ ├── gframe.hpp │ │ ├── gkernel.hpp │ │ ├── gmat.hpp │ │ ├── gmetaarg.hpp │ │ ├── gopaque.hpp │ │ ├── gproto.hpp │ │ ├── gpu │ │ │ ├── core.hpp │ │ │ ├── ggpukernel.hpp │ │ │ └── imgproc.hpp │ │ ├── gscalar.hpp │ │ ├── gstreaming.hpp │ │ ├── gtransform.hpp │ │ ├── gtype_traits.hpp │ │ ├── gtyped.hpp │ │ ├── imgproc.hpp │ │ ├── infer.hpp │ │ ├── infer │ │ │ ├── bindings_ie.hpp │ │ │ ├── bindings_onnx.hpp │ │ │ ├── bindings_ov.hpp │ │ │ ├── ie.hpp │ │ │ ├── onnx.hpp │ │ │ ├── ov.hpp │ │ │ └── parsers.hpp │ │ ├── media.hpp │ │ ├── oak │ │ │ ├── infer.hpp │ │ │ └── oak.hpp │ │ ├── ocl │ │ │ ├── core.hpp │ │ │ ├── goclkernel.hpp │ │ │ └── imgproc.hpp │ │ ├── opencv_includes.hpp │ │ ├── operators.hpp │ │ ├── own │ │ │ ├── assert.hpp │ │ │ ├── convert.hpp │ │ │ ├── cvdefs.hpp │ │ │ ├── exports.hpp │ │ │ ├── mat.hpp │ │ │ ├── saturate.hpp │ │ │ ├── scalar.hpp │ │ │ └── types.hpp │ │ ├── plaidml │ │ │ ├── core.hpp │ │ │ ├── gplaidmlkernel.hpp │ │ │ └── plaidml.hpp │ │ ├── python │ │ │ └── python.hpp │ │ ├── render.hpp │ │ ├── render │ │ │ ├── render.hpp │ │ │ └── render_types.hpp │ │ ├── rmat.hpp │ │ ├── s11n.hpp │ │ ├── s11n │ │ │ └── base.hpp │ │ ├── stereo.hpp │ │ ├── streaming │ │ │ ├── cap.hpp │ │ │ ├── desync.hpp │ │ │ ├── format.hpp │ │ │ ├── gstreamer │ │ │ │ ├── gstreamerpipeline.hpp │ │ │ │ └── gstreamersource.hpp │ │ │ ├── meta.hpp │ │ │ ├── onevpl │ │ │ │ ├── accel_types.hpp │ │ │ │ ├── cfg_params.hpp │ │ │ │ ├── data_provider_interface.hpp │ │ │ │ ├── default.hpp │ │ │ │ ├── device_selector_interface.hpp │ │ │ │ └── source.hpp │ │ │ ├── source.hpp │ │ │ └── sync.hpp │ │ ├── util │ │ │ ├── any.hpp │ │ │ ├── compiler_hints.hpp │ │ │ ├── copy_through_move.hpp │ │ │ ├── optional.hpp │ │ │ ├── throw.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── util.hpp │ │ │ └── variant.hpp │ │ └── video.hpp │ │ ├── hfs.hpp │ │ ├── highgui.hpp │ │ ├── highgui │ │ ├── highgui.hpp │ │ └── highgui_c.h │ │ ├── img_hash.hpp │ │ ├── img_hash │ │ ├── average_hash.hpp │ │ ├── block_mean_hash.hpp │ │ ├── color_moment_hash.hpp │ │ ├── img_hash_base.hpp │ │ ├── marr_hildreth_hash.hpp │ │ ├── phash.hpp │ │ └── radial_variance_hash.hpp │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs │ │ ├── imgcodecs.hpp │ │ ├── imgcodecs_c.h │ │ ├── ios.h │ │ ├── legacy │ │ │ └── constants_c.h │ │ └── macosx.h │ │ ├── imgproc.hpp │ │ ├── imgproc │ │ ├── bindings.hpp │ │ ├── detail │ │ │ └── gcgraph.hpp │ │ ├── hal │ │ │ ├── hal.hpp │ │ │ └── interface.h │ │ ├── imgproc.hpp │ │ ├── imgproc_c.h │ │ ├── segmentation.hpp │ │ └── types_c.h │ │ ├── intensity_transform.hpp │ │ ├── line_descriptor.hpp │ │ ├── line_descriptor │ │ └── descriptor.hpp │ │ ├── mcc.hpp │ │ ├── mcc │ │ ├── ccm.hpp │ │ ├── checker_detector.hpp │ │ └── checker_model.hpp │ │ ├── ml.hpp │ │ ├── ml │ │ ├── ml.hpp │ │ └── ml.inl.hpp │ │ ├── objdetect.hpp │ │ ├── objdetect │ │ ├── aruco_board.hpp │ │ ├── aruco_detector.hpp │ │ ├── aruco_dictionary.hpp │ │ ├── barcode.hpp │ │ ├── charuco_detector.hpp │ │ ├── detection_based_tracker.hpp │ │ ├── face.hpp │ │ ├── graphical_code_detector.hpp │ │ └── objdetect.hpp │ │ ├── opencv.hpp │ │ ├── opencv_modules.hpp │ │ ├── optflow.hpp │ │ ├── optflow │ │ ├── motempl.hpp │ │ ├── pcaflow.hpp │ │ ├── rlofflow.hpp │ │ └── sparse_matching_gpc.hpp │ │ ├── phase_unwrapping.hpp │ │ ├── phase_unwrapping │ │ ├── histogramphaseunwrapping.hpp │ │ └── phase_unwrapping.hpp │ │ ├── photo.hpp │ │ ├── photo │ │ ├── cuda.hpp │ │ ├── legacy │ │ │ └── constants_c.h │ │ └── photo.hpp │ │ ├── plot.hpp │ │ ├── quality.hpp │ │ ├── quality │ │ ├── quality_utils.hpp │ │ ├── qualitybase.hpp │ │ ├── qualitybrisque.hpp │ │ ├── qualitygmsd.hpp │ │ ├── qualitymse.hpp │ │ ├── qualitypsnr.hpp │ │ └── qualityssim.hpp │ │ ├── rapid.hpp │ │ ├── reg │ │ ├── map.hpp │ │ ├── mapaffine.hpp │ │ ├── mapper.hpp │ │ ├── mappergradaffine.hpp │ │ ├── mappergradeuclid.hpp │ │ ├── mappergradproj.hpp │ │ ├── mappergradshift.hpp │ │ ├── mappergradsimilar.hpp │ │ ├── mapperpyramid.hpp │ │ ├── mapprojec.hpp │ │ └── mapshift.hpp │ │ ├── rgbd.hpp │ │ ├── rgbd │ │ ├── colored_kinfu.hpp │ │ ├── depth.hpp │ │ ├── detail │ │ │ └── pose_graph.hpp │ │ ├── dynafu.hpp │ │ ├── intrinsics.hpp │ │ ├── kinfu.hpp │ │ ├── large_kinfu.hpp │ │ ├── linemod.hpp │ │ └── volume.hpp │ │ ├── saliency.hpp │ │ ├── saliency │ │ ├── saliencyBaseClasses.hpp │ │ └── saliencySpecializedClasses.hpp │ │ ├── shape.hpp │ │ ├── shape │ │ ├── emdL1.hpp │ │ ├── hist_cost.hpp │ │ ├── shape.hpp │ │ ├── shape_distance.hpp │ │ └── shape_transformer.hpp │ │ ├── stereo.hpp │ │ ├── stereo │ │ ├── descriptor.hpp │ │ ├── quasi_dense_stereo.hpp │ │ └── stereo.hpp │ │ ├── stitching.hpp │ │ ├── stitching │ │ ├── detail │ │ │ ├── autocalib.hpp │ │ │ ├── blenders.hpp │ │ │ ├── camera.hpp │ │ │ ├── exposure_compensate.hpp │ │ │ ├── matchers.hpp │ │ │ ├── motion_estimators.hpp │ │ │ ├── seam_finders.hpp │ │ │ ├── timelapsers.hpp │ │ │ ├── util.hpp │ │ │ ├── util_inl.hpp │ │ │ ├── warpers.hpp │ │ │ └── warpers_inl.hpp │ │ └── warpers.hpp │ │ ├── structured_light.hpp │ │ ├── structured_light │ │ ├── graycodepattern.hpp │ │ ├── sinusoidalpattern.hpp │ │ └── structured_light.hpp │ │ ├── superres.hpp │ │ ├── superres │ │ └── optical_flow.hpp │ │ ├── surface_matching.hpp │ │ ├── surface_matching │ │ ├── icp.hpp │ │ ├── pose_3d.hpp │ │ ├── ppf_helpers.hpp │ │ ├── ppf_match_3d.hpp │ │ └── t_hash_int.hpp │ │ ├── text.hpp │ │ ├── text │ │ ├── erfilter.hpp │ │ ├── ocr.hpp │ │ ├── swt_text_detection.hpp │ │ └── textDetector.hpp │ │ ├── tracking.hpp │ │ ├── tracking │ │ ├── feature.hpp │ │ ├── kalman_filters.hpp │ │ ├── onlineBoosting.hpp │ │ ├── tldDataset.hpp │ │ ├── tracking.hpp │ │ ├── tracking_by_matching.hpp │ │ ├── tracking_internals.hpp │ │ └── tracking_legacy.hpp │ │ ├── video.hpp │ │ ├── video │ │ ├── background_segm.hpp │ │ ├── detail │ │ │ └── tracking.detail.hpp │ │ ├── legacy │ │ │ └── constants_c.h │ │ ├── tracking.hpp │ │ └── video.hpp │ │ ├── videoio.hpp │ │ ├── videoio │ │ ├── cap_ios.h │ │ ├── legacy │ │ │ └── constants_c.h │ │ ├── registry.hpp │ │ ├── videoio.hpp │ │ └── videoio_c.h │ │ ├── videostab.hpp │ │ ├── videostab │ │ ├── deblurring.hpp │ │ ├── fast_marching.hpp │ │ ├── fast_marching_inl.hpp │ │ ├── frame_source.hpp │ │ ├── global_motion.hpp │ │ ├── inpainting.hpp │ │ ├── log.hpp │ │ ├── motion_core.hpp │ │ ├── motion_stabilizing.hpp │ │ ├── optical_flow.hpp │ │ ├── outlier_rejection.hpp │ │ ├── ring_buffer.hpp │ │ ├── stabilizer.hpp │ │ └── wobble_suppression.hpp │ │ ├── wechat_qrcode.hpp │ │ ├── xfeatures2d.hpp │ │ ├── xfeatures2d │ │ ├── cuda.hpp │ │ └── nonfree.hpp │ │ ├── ximgproc.hpp │ │ ├── ximgproc │ │ ├── brightedges.hpp │ │ ├── color_match.hpp │ │ ├── deriche_filter.hpp │ │ ├── disparity_filter.hpp │ │ ├── edge_drawing.hpp │ │ ├── edge_filter.hpp │ │ ├── edgeboxes.hpp │ │ ├── edgepreserving_filter.hpp │ │ ├── estimated_covariance.hpp │ │ ├── fast_hough_transform.hpp │ │ ├── fast_line_detector.hpp │ │ ├── find_ellipses.hpp │ │ ├── fourier_descriptors.hpp │ │ ├── lsc.hpp │ │ ├── paillou_filter.hpp │ │ ├── peilin.hpp │ │ ├── radon_transform.hpp │ │ ├── ridgefilter.hpp │ │ ├── run_length_morphology.hpp │ │ ├── scansegment.hpp │ │ ├── seeds.hpp │ │ ├── segmentation.hpp │ │ ├── slic.hpp │ │ ├── sparse_match_interpolator.hpp │ │ ├── structured_edge_detection.hpp │ │ └── weighted_median_filter.hpp │ │ ├── xobjdetect.hpp │ │ ├── xphoto.hpp │ │ └── xphoto │ │ ├── bm3d_image_denoising.hpp │ │ ├── dct_image_denoising.hpp │ │ ├── inpainting.hpp │ │ ├── oilpainting.hpp │ │ ├── tonemap.hpp │ │ └── white_balance.hpp │ └── lib │ └── Win64 │ ├── opencv_aruco480.lib │ ├── opencv_bgsegm480.lib │ ├── opencv_bioinspired480.lib │ ├── opencv_calib3d480.lib │ ├── opencv_ccalib480.lib │ ├── opencv_core480.lib │ ├── opencv_cudaarithm480.lib │ ├── opencv_cudabgsegm480.lib │ ├── opencv_cudacodec480.lib │ ├── opencv_cudafeatures2d480.lib │ ├── opencv_cudafilters480.lib │ ├── opencv_cudaimgproc480.lib │ ├── opencv_cudalegacy480.lib │ ├── opencv_cudaobjdetect480.lib │ ├── opencv_cudaoptflow480.lib │ ├── opencv_cudastereo480.lib │ ├── opencv_cudawarping480.lib │ ├── opencv_cudev480.lib │ ├── opencv_datasets480.lib │ ├── opencv_dnn480.lib │ ├── opencv_dnn_objdetect480.lib │ ├── opencv_dnn_superres480.lib │ ├── opencv_dpm480.lib │ ├── opencv_face480.lib │ ├── opencv_features2d480.lib │ ├── opencv_flann480.lib │ ├── opencv_fuzzy480.lib │ ├── opencv_gapi480.lib │ ├── opencv_hfs480.lib │ ├── opencv_highgui480.lib │ ├── opencv_img_hash480.lib │ ├── opencv_imgcodecs480.lib │ ├── opencv_imgproc480.lib │ ├── opencv_intensity_transform480.lib │ ├── opencv_line_descriptor480.lib │ ├── opencv_mcc480.lib │ ├── opencv_ml480.lib │ ├── opencv_objdetect480.lib │ ├── opencv_optflow480.lib │ ├── opencv_phase_unwrapping480.lib │ ├── opencv_photo480.lib │ ├── opencv_plot480.lib │ ├── opencv_quality480.lib │ ├── opencv_rapid480.lib │ ├── opencv_reg480.lib │ ├── opencv_rgbd480.lib │ ├── opencv_saliency480.lib │ ├── opencv_shape480.lib │ ├── opencv_stereo480.lib │ ├── opencv_stitching480.lib │ ├── opencv_structured_light480.lib │ ├── opencv_superres480.lib │ ├── opencv_surface_matching480.lib │ ├── opencv_text480.lib │ ├── opencv_tracking480.lib │ ├── opencv_video480.lib │ ├── opencv_videoio480.lib │ ├── opencv_videostab480.lib │ ├── opencv_wechat_qrcode480.lib │ ├── opencv_xfeatures2d480.lib │ ├── opencv_ximgproc480.lib │ ├── opencv_xobjdetect480.lib │ └── opencv_xphoto480.lib ├── LICENSE ├── PluginBuilder.tox ├── README.md ├── SetSettings.toe ├── dev ├── deploy.py ├── dev.160.toe ├── dev.161.toe ├── dev.toe └── settings_template.ini ├── include ├── CHOP_CPlusPlusBase.h ├── CPlusPlus_Common.h ├── DAT_CPlusPlusBase.h ├── SOP_CPlusPlusBase.h └── TOP_CPlusPlusBase.h ├── source ├── CMakeBlocks.py ├── CMakePresets.json ├── PluginBuilderExt.py └── launch.vs.json └── templates ├── BasicCHOP ├── CMakelists.txt └── source │ ├── BasicCHOP.cpp │ └── BasicCHOP.h ├── BasicDAT └── source │ ├── BasicDAT.cpp │ └── BasicDAT.h ├── CHOPWithPythonClass └── source │ ├── CHOPWithPythonClass.cpp │ └── CHOPWithPythonClass.h ├── CPUMemoryTOP └── source │ ├── CPUMemoryTOP.cpp │ ├── CPUMemoryTOP.h │ ├── FrameQueue.cpp │ └── FrameQueue.h ├── CudaTOP └── source │ ├── CudaTOP.cpp │ ├── CudaTOP.h │ └── kernel.cu └── SimpleShapesSOP └── source ├── SimpleShapesSOP.cpp └── SimpleShapesSOP.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/clinic/_msi.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/clinic/_msi.c.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/clinic/_testconsole.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/clinic/_testconsole.c.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/clinic/msvcrtmodule.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/clinic/msvcrtmodule.c.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/clinic/winreg.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/clinic/winreg.c.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/clinic/winsound.c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/clinic/winsound.c.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/errmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/errmap.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/pyconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/pyconfig.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/PC/python_ver_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/PC/python_ver_rc.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/Python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/Python.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/README.rst -------------------------------------------------------------------------------- /3rdParty/Python/Include/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/abstract.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/bltinmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/bltinmodule.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/boolobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/boolobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/bytearrayobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/bytesobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/ceval.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/codecs.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/compile.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/complexobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/abstract.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/bytearrayobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/bytearrayobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/bytesobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/cellobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/cellobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/ceval.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/classobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/classobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/code.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/compile.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/complexobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/complexobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/context.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/descrobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/dictobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/fileobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/fileutils.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/floatobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/frameobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/funcobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/funcobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/genobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/import.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/initconfig.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/listobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/longintrepr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/longintrepr.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/longobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/methodobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/modsupport.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/object.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/objimpl.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/odictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/odictobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/picklebufobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/picklebufobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pthread_stubs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pthread_stubs.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pyctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pyctype.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pydebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pydebug.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pyerrors.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pyfpe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pyfpe.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pyframe.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pylifecycle.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pymem.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pystate.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pythonrun.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pythread.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/pytime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/pytime.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/setobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/sysmodule.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/traceback.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/tupleobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/unicodeobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/warnings.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/cpython/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/cpython/weakrefobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/datetime.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/descrobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/descrobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/dictobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/dictobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/dynamic_annotations.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/enumobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/enumobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/errcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/errcode.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/exports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/exports.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/fileobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/fileobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/fileutils.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/floatobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/frameobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/frameobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/genericaliasobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/genericaliasobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/import.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_abstract.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_accu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_accu.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_asdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_asdl.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_ast.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_ast_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_ast_state.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_atomic.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_atomic_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_atomic_funcs.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_bitutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_bitutils.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_bytes_methods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_bytes_methods.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_bytesobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_bytesobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_call.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_ceval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_ceval.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_code.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_compile.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_condvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_condvar.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_context.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_dict.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_dtoa.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_exceptions.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_fileutils.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_floatobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_floatobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_format.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_frame.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_function.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_gc.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_genobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_genobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_getopt.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_gil.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_global_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_global_objects.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_global_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_global_strings.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_hamt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_hamt.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_hashtable.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_import.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_import.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_initconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_initconfig.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_interp.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_list.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_long.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_long.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_moduleobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_namespace.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_object.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_opcode.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_parser.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pathconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pathconfig.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pyarena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pyarena.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pyerrors.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pyhash.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pylifecycle.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pymath.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pymem.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_pystate.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_runtime.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_runtime_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_runtime_init.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_signal.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_sliceobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_strhex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_strhex.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_structseq.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_symtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_symtable.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_sysmodule.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_traceback.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_tuple.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_typeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_typeobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_ucnhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_ucnhash.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_unicodeobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_unionobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_unionobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/internal/pycore_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/internal/pycore_warnings.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/intrcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/intrcheck.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/iterobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/iterobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/listobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/listobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/longobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/longobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/marshal.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/memoryobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/memoryobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/methodobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/methodobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/modsupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/modsupport.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/moduleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/moduleobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/object.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/objimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/objimpl.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/opcode.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/osdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/osdefs.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/osmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/osmodule.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/patchlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/patchlevel.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/py_curses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/py_curses.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pybuffer.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pycapsule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pycapsule.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pydtrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pydtrace.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pyerrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pyerrors.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pyexpat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pyexpat.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pyframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pyframe.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pyhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pyhash.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pylifecycle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pylifecycle.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pymacconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pymacconfig.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pymacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pymacro.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pymath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pymath.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pymem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pymem.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pyport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pyport.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pystate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pystate.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pystrcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pystrcmp.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pystrtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pystrtod.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pythonrun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pythonrun.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pythread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pythread.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/pytypedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/pytypedefs.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/rangeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/rangeobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/setobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/setobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/sliceobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/sliceobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/structmember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/structmember.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/structseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/structseq.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/sysmodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/sysmodule.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/token.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/traceback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/traceback.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/tracemalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/tracemalloc.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/tupleobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/tupleobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/typeslots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/typeslots.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/unicodeobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/unicodeobject.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/warnings.h -------------------------------------------------------------------------------- /3rdParty/Python/Include/weakrefobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/Include/weakrefobject.h -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_asyncio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_asyncio.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_asyncio_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_asyncio_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_bz2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_bz2.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_bz2_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_bz2_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_ctypes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_ctypes.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_ctypes_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_ctypes_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_ctypes_test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_ctypes_test.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_ctypes_test_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_ctypes_test_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_decimal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_decimal.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_decimal_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_decimal_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_elementtree.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_elementtree.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_elementtree_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_elementtree_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_hashlib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_hashlib.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_hashlib_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_hashlib_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_lzma.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_lzma.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_lzma_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_lzma_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_msi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_msi.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_msi_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_msi_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_multiprocessing.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_multiprocessing.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_multiprocessing_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_multiprocessing_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_overlapped.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_overlapped.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_overlapped_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_overlapped_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_queue.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_queue.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_queue_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_queue_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_socket.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_socket.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_socket_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_socket_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_sqlite3.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_sqlite3_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_sqlite3_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_ssl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_ssl.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_ssl_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_ssl_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testbuffer.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testbuffer.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testbuffer_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testbuffer_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testcapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testcapi.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testcapi_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testcapi_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testconsole.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testconsole.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testconsole_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testconsole_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testimportmultiple.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testimportmultiple.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testimportmultiple_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testimportmultiple_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testinternalcapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testinternalcapi.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testinternalcapi_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testinternalcapi_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testmultiphase.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testmultiphase.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_testmultiphase_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_testmultiphase_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_tkinter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_tkinter.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_tkinter_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_tkinter_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_uuid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_uuid.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_uuid_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_uuid_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_zoneinfo.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_zoneinfo.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/_zoneinfo_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/_zoneinfo_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/liblzma.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/liblzma.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/liblzma_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/liblzma_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/pyexpat.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/pyexpat.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/pyexpat_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/pyexpat_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/pyshellext.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/pyshellext.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/pyshellext_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/pyshellext_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/python3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/python3.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/python311.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/python311.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/python311_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/python311_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/python3_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/python3_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/select.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/select.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/select_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/select_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/sqlite3.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/sqlite3_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/sqlite3_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/unicodedata.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/unicodedata.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/unicodedata_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/unicodedata_d.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/winsound.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/winsound.lib -------------------------------------------------------------------------------- /3rdParty/Python/lib/x64/winsound_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/Python/lib/x64/winsound_d.lib -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/aruco.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/aruco.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/aruco/aruco_calib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/aruco/aruco_calib.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/aruco/charuco.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/aruco/charuco.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/bgsegm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/bgsegm.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/bioinspired.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/bioinspired.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/bioinspired/retina.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/bioinspired/retina.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/calib3d.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/calib3d/calib3d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/calib3d/calib3d.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/calib3d/calib3d_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/calib3d/calib3d_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ccalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ccalib.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ccalib/multicalib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ccalib/multicalib.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ccalib/omnidir.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ccalib/omnidir.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ccalib/randpattern.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ccalib/randpattern.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/async.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/base.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/bindings_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/bindings_utils.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/check.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/core_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/emulation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/emulation.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/funcattrib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/funcattrib.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/functional.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/transform.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/type_traits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/vec_math.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/vec_traits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda/warp_reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda/warp_reduce.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cv_cpu_dispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cv_cpu_dispatch.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/cvstd_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/cvstd_wrapper.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/dualquaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/dualquaternion.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_avx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_avx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_cpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_cpp.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_lasx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_lasx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_msa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_msa.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_neon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_neon.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_rvv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_rvv.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_sse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_sse.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_vsx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_vsx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/intrin_wasm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/intrin_wasm.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/hal/msa_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/hal/msa_macros.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/opencl/ocl_defs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/opencl/ocl_defs.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/quaternion.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/quaternion.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/quaternion.inl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/simd_intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/simd_intrinsics.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/types.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/types_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/utils/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/utils/filesystem.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/utils/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/utils/logger.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/utils/logtag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/utils/logtag.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/utils/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/utils/tls.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/version.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/core_detect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/core_detect.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudaarithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudaarithm.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudabgsegm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudabgsegm.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudacodec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudacodec.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudafeatures2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudafeatures2d.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudafilters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudafilters.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudaimgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudaimgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudalegacy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudalegacy.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudalegacy/NCV.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudalegacy/NCV.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudalegacy/NCVPyramid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudalegacy/NCVPyramid.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudaobjdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudaobjdetect.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudaoptflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudaoptflow.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudastereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudastereo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudawarping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudawarping.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/block/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/block/block.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/block/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/block/reduce.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/block/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/block/scan.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/common.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/binary_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/binary_op.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/color.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/deriv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/deriv.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/expr.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/reduction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/reduction.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/unary_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/unary_func.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/unary_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/unary_op.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/expr/warping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/expr/warping.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/copy.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/histogram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/histogram.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/integral.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/pyramids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/pyramids.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/reduce.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/transform.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/grid/transpose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/grid/transpose.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/constant.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/deriv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/deriv.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/glob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/glob.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/gpumat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/gpumat.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/lut.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/lut.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/mask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/mask.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/remap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/remap.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/resize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/resize.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/texture.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/traits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/transform.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/warping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/warping.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/ptr2d/zip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/ptr2d/zip.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/util/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/util/atomic.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/util/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/util/limits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/util/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/util/tuple.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/util/vec_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/util/vec_math.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/util/vec_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/util/vec_traits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/warp/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/warp/reduce.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/warp/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/warp/scan.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/warp/shuffle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/warp/shuffle.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cudev/warp/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cudev/warp/warp.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/cvconfig.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/ar_hmdb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/ar_hmdb.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/ar_sports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/ar_sports.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/dataset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/dataset.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/fr_adience.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/fr_adience.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/fr_lfw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/fr_lfw.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/gr_chalearn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/gr_chalearn.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/gr_skig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/gr_skig.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/hpe_humaneva.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/hpe_humaneva.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/hpe_parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/hpe_parse.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/ir_affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/ir_affine.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/ir_robot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/ir_robot.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/is_bsds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/is_bsds.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/is_weizmann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/is_weizmann.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/msm_epfl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/msm_epfl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/or_imagenet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/or_imagenet.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/or_mnist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/or_mnist.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/or_pascal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/or_pascal.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/or_sun.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/or_sun.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/pd_caltech.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/pd_caltech.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/pd_inria.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/pd_inria.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/slam_kitti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/slam_kitti.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/sr_bsds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/sr_bsds.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/sr_div2k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/sr_div2k.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/tr_chars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/tr_chars.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/tr_icdar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/tr_icdar.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/tr_svt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/tr_svt.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/track_alov.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/track_alov.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/track_vot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/track_vot.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/datasets/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/datasets/util.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/all_layers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/all_layers.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/dict.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/dnn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/dnn.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/dnn.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/dnn.inl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/layer.details.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/layer.details.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/layer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/layer.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/shape_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/shape_utils.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/utils/debug_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/utils/debug_utils.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn/version.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dnn_superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dnn_superres.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/dpm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/dpm.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/bif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/bif.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/face_alignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/face_alignment.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/facemark.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/facemark.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/facemarkAAM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/facemarkAAM.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/facemarkLBF.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/facemarkLBF.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/facemark_train.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/facemark_train.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/facerec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/facerec.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/face/mace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/face/mace.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/features2d.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/features2d/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/features2d/features2d.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/all_indices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/all_indices.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/allocator.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/any.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/autotuned_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/autotuned_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/composite_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/composite_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/config.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/defines.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/dist.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/dummy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/dummy.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/dynamic_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/dynamic_bitset.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/flann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/flann.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/flann_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/flann_base.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/general.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/general.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/ground_truth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/ground_truth.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/hdf5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/hdf5.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/heap.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/index_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/index_testing.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/kdtree_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/kdtree_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/kmeans_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/kmeans_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/linear_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/linear_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/logger.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/lsh_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/lsh_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/lsh_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/lsh_table.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/matrix.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/miniflann.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/miniflann.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/nn_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/nn_index.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/object_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/object_factory.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/params.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/random.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/result_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/result_set.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/sampling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/sampling.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/saving.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/saving.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/simplex_downhill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/simplex_downhill.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/flann/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/flann/timer.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/fuzzy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/fuzzy.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/fuzzy/fuzzy_F0_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/fuzzy/fuzzy_F0_math.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/fuzzy/fuzzy_F1_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/fuzzy/fuzzy_F1_math.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/fuzzy/fuzzy_image.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/fuzzy/fuzzy_image.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/fuzzy/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/fuzzy/types.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/cpu/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/cpu/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/cpu/gcpukernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/cpu/gcpukernel.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/cpu/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/cpu/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/cpu/stereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/cpu/stereo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/cpu/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/cpu/video.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/fluid/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/fluid/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/fluid/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/fluid/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/garg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/garg.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/garray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/garray.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gasync_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gasync_context.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gcall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gcall.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gcommon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gcommon.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gcompiled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gcompiled.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gcompiled_async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gcompiled_async.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gcompoundkernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gcompoundkernel.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gcomputation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gcomputation.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gframe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gframe.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gkernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gkernel.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gmat.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gmetaarg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gmetaarg.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gopaque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gopaque.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gproto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gproto.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gpu/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gpu/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gpu/ggpukernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gpu/ggpukernel.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gpu/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gpu/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gscalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gscalar.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gstreaming.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gstreaming.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gtransform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gtransform.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gtype_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gtype_traits.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/gtyped.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/gtyped.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/infer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/infer.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/infer/ie.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/infer/ie.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/infer/onnx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/infer/onnx.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/infer/ov.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/infer/ov.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/infer/parsers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/infer/parsers.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/media.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/media.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/oak/infer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/oak/infer.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/oak/oak.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/oak/oak.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/ocl/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/ocl/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/ocl/goclkernel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/ocl/goclkernel.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/ocl/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/ocl/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/opencv_includes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/opencv_includes.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/operators.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/assert.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/convert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/convert.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/cvdefs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/cvdefs.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/exports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/exports.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/mat.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/saturate.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/scalar.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/own/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/own/types.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/plaidml/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/plaidml/core.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/plaidml/plaidml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/plaidml/plaidml.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/python/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/python/python.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/render.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/render/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/render/render.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/rmat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/rmat.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/s11n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/s11n.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/s11n/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/s11n/base.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/stereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/stereo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/streaming/cap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/streaming/cap.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/streaming/desync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/streaming/desync.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/streaming/format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/streaming/format.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/streaming/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/streaming/meta.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/streaming/source.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/streaming/source.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/streaming/sync.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/streaming/sync.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/util/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/util/any.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/util/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/util/optional.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/util/throw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/util/throw.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/util/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/util/util.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/util/variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/util/variant.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/gapi/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/gapi/video.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/hfs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/hfs.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/highgui.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/highgui/highgui_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/highgui/highgui_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/img_hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/img_hash.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/img_hash/phash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/img_hash/phash.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgcodecs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgcodecs.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgcodecs/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgcodecs/ios.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgcodecs/macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgcodecs/macosx.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgproc/bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgproc/bindings.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/line_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/line_descriptor.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/mcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/mcc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/mcc/ccm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/mcc/ccm.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/mcc/checker_model.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/mcc/checker_model.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ml.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ml/ml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ml/ml.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ml/ml.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ml/ml.inl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/objdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/objdetect.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/objdetect/barcode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/objdetect/barcode.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/objdetect/face.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/objdetect/face.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/opencv.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/optflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/optflow.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/optflow/motempl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/optflow/motempl.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/optflow/pcaflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/optflow/pcaflow.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/optflow/rlofflow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/optflow/rlofflow.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/phase_unwrapping.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/phase_unwrapping.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/photo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/plot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/plot.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/quality.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/quality.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/quality/qualitymse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/quality/qualitymse.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rapid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rapid.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/map.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/mapaffine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/mapaffine.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/mapper.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/mappergradproj.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/mappergradproj.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/mapperpyramid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/mapperpyramid.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/mapprojec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/mapprojec.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/reg/mapshift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/reg/mapshift.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/colored_kinfu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/colored_kinfu.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/depth.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/depth.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/dynafu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/dynafu.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/intrinsics.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/kinfu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/kinfu.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/large_kinfu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/large_kinfu.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/linemod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/linemod.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/rgbd/volume.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/rgbd/volume.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/saliency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/saliency.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/shape.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/shape/emdL1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/shape/emdL1.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/shape/hist_cost.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/shape/hist_cost.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/shape/shape.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/shape/shape.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/stereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/stereo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/stereo/descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/stereo/descriptor.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/stereo/stereo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/stereo/stereo.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/stitching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/stitching.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/stitching/warpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/stitching/warpers.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/structured_light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/structured_light.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/superres.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/superres.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/surface_matching.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/surface_matching.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/text.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/text.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/text/erfilter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/text/erfilter.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/text/ocr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/text/ocr.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/text/textDetector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/text/textDetector.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/tracking.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/tracking/feature.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/tracking/feature.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/tracking/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/tracking/tracking.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/video.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/video/video.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videoio.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videoio/cap_ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videoio/cap_ios.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videoio/registry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videoio/registry.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videoio/videoio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videoio/videoio.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videoio/videoio_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videoio/videoio_c.h -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videostab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videostab.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/videostab/log.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/videostab/log.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/wechat_qrcode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/wechat_qrcode.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xfeatures2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xfeatures2d.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xfeatures2d/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xfeatures2d/cuda.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ximgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ximgproc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ximgproc/edgeboxes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ximgproc/edgeboxes.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ximgproc/lsc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ximgproc/lsc.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ximgproc/peilin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ximgproc/peilin.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ximgproc/seeds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ximgproc/seeds.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/ximgproc/slic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/ximgproc/slic.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xobjdetect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xobjdetect.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xphoto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xphoto.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xphoto/inpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xphoto/inpainting.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xphoto/oilpainting.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xphoto/oilpainting.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/include/opencv2/xphoto/tonemap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/include/opencv2/xphoto/tonemap.hpp -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_aruco480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_aruco480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_bgsegm480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_bgsegm480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_bioinspired480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_bioinspired480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_calib3d480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_calib3d480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_ccalib480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_ccalib480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_core480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_core480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudaarithm480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudaarithm480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudabgsegm480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudabgsegm480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudacodec480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudacodec480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudafeatures2d480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudafeatures2d480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudafilters480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudafilters480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudaimgproc480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudaimgproc480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudalegacy480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudalegacy480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudaobjdetect480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudaobjdetect480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudaoptflow480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudaoptflow480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudastereo480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudastereo480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudawarping480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudawarping480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_cudev480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_cudev480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_datasets480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_datasets480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_dnn480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_dnn480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_dnn_objdetect480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_dnn_objdetect480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_dnn_superres480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_dnn_superres480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_dpm480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_dpm480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_face480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_face480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_features2d480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_features2d480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_flann480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_flann480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_fuzzy480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_fuzzy480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_gapi480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_gapi480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_hfs480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_hfs480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_highgui480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_highgui480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_img_hash480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_img_hash480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_imgcodecs480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_imgcodecs480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_imgproc480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_imgproc480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_mcc480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_mcc480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_ml480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_ml480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_objdetect480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_objdetect480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_optflow480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_optflow480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_photo480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_photo480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_plot480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_plot480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_quality480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_quality480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_rapid480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_rapid480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_reg480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_reg480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_rgbd480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_rgbd480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_saliency480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_saliency480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_shape480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_shape480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_stereo480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_stereo480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_stitching480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_stitching480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_superres480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_superres480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_text480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_text480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_tracking480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_tracking480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_video480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_video480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_videoio480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_videoio480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_videostab480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_videostab480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_wechat_qrcode480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_wechat_qrcode480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_xfeatures2d480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_xfeatures2d480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_ximgproc480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_ximgproc480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_xobjdetect480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_xobjdetect480.lib -------------------------------------------------------------------------------- /3rdParty/opencv/lib/Win64/opencv_xphoto480.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/3rdParty/opencv/lib/Win64/opencv_xphoto480.lib -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /PluginBuilder.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/PluginBuilder.tox -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/README.md -------------------------------------------------------------------------------- /SetSettings.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/SetSettings.toe -------------------------------------------------------------------------------- /dev/deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/dev/deploy.py -------------------------------------------------------------------------------- /dev/dev.160.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/dev/dev.160.toe -------------------------------------------------------------------------------- /dev/dev.161.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/dev/dev.161.toe -------------------------------------------------------------------------------- /dev/dev.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/dev/dev.toe -------------------------------------------------------------------------------- /dev/settings_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/dev/settings_template.ini -------------------------------------------------------------------------------- /include/CHOP_CPlusPlusBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/include/CHOP_CPlusPlusBase.h -------------------------------------------------------------------------------- /include/CPlusPlus_Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/include/CPlusPlus_Common.h -------------------------------------------------------------------------------- /include/DAT_CPlusPlusBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/include/DAT_CPlusPlusBase.h -------------------------------------------------------------------------------- /include/SOP_CPlusPlusBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/include/SOP_CPlusPlusBase.h -------------------------------------------------------------------------------- /include/TOP_CPlusPlusBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/include/TOP_CPlusPlusBase.h -------------------------------------------------------------------------------- /source/CMakeBlocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/source/CMakeBlocks.py -------------------------------------------------------------------------------- /source/CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/source/CMakePresets.json -------------------------------------------------------------------------------- /source/PluginBuilderExt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/source/PluginBuilderExt.py -------------------------------------------------------------------------------- /source/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/source/launch.vs.json -------------------------------------------------------------------------------- /templates/BasicCHOP/CMakelists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/BasicCHOP/CMakelists.txt -------------------------------------------------------------------------------- /templates/BasicCHOP/source/BasicCHOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/BasicCHOP/source/BasicCHOP.cpp -------------------------------------------------------------------------------- /templates/BasicCHOP/source/BasicCHOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/BasicCHOP/source/BasicCHOP.h -------------------------------------------------------------------------------- /templates/BasicDAT/source/BasicDAT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/BasicDAT/source/BasicDAT.cpp -------------------------------------------------------------------------------- /templates/BasicDAT/source/BasicDAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/BasicDAT/source/BasicDAT.h -------------------------------------------------------------------------------- /templates/CPUMemoryTOP/source/CPUMemoryTOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CPUMemoryTOP/source/CPUMemoryTOP.cpp -------------------------------------------------------------------------------- /templates/CPUMemoryTOP/source/CPUMemoryTOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CPUMemoryTOP/source/CPUMemoryTOP.h -------------------------------------------------------------------------------- /templates/CPUMemoryTOP/source/FrameQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CPUMemoryTOP/source/FrameQueue.cpp -------------------------------------------------------------------------------- /templates/CPUMemoryTOP/source/FrameQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CPUMemoryTOP/source/FrameQueue.h -------------------------------------------------------------------------------- /templates/CudaTOP/source/CudaTOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CudaTOP/source/CudaTOP.cpp -------------------------------------------------------------------------------- /templates/CudaTOP/source/CudaTOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CudaTOP/source/CudaTOP.h -------------------------------------------------------------------------------- /templates/CudaTOP/source/kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/CudaTOP/source/kernel.cu -------------------------------------------------------------------------------- /templates/SimpleShapesSOP/source/SimpleShapesSOP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/SimpleShapesSOP/source/SimpleShapesSOP.cpp -------------------------------------------------------------------------------- /templates/SimpleShapesSOP/source/SimpleShapesSOP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntentDev/PluginBuilder/HEAD/templates/SimpleShapesSOP/source/SimpleShapesSOP.h --------------------------------------------------------------------------------