首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

QT笔记 3 摄像头操作 opencv3.3库

音视频 9.71MB 13 需要积分: 1
立即下载

资源介绍:

埃斯23
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library // // Copyright (C) 2000-2008, Intel Corporation, all rights reserved. // Copyright (C) 2009, Willow Garage Inc., all rights reserved. // Copyright (C) 2013, OpenCV Foundation, all rights reserved. // Third party copyrights are property of their respective owners. // // Redistribution and use in source and binary forms, with or without modification, // are permitted provided that the following conditions are met: // // * Redistribution's of source code must retain the above copyright notice, // this list of conditions and the following disclaimer. // // * Redistribution's in binary form must reproduce the above copyright notice, // this list of conditions and the following disclaimer in the documentation // and/or other materials provided with the distribution. // // * The name of the copyright holders may not be used to endorse or promote products // derived from this software without specific prior written permission. // // This software is provided by the copyright holders and contributors "as is" and // any express or implied warranties, including, but not limited to, the implied // warranties of merchantability and fitness for a particular purpose are disclaimed. // In no event shall the Intel Corporation or contributors be liable for any direct, // indirect, incidental, special, exemplary, or consequential damages // (including, but not limited to, procurement of substitute goods or services; // loss of use, data, or profits; or business interruption) however caused // and on any theory of liability, whether in contract, strict liability, // or tort (including negligence or otherwise) arising in any way out of // the use of this software, even if advised of the possibility of such damage. // //M*/ #ifndef OPENCV_CORE_C_H #define OPENCV_CORE_C_H #include "opencv2/core/types_c.h" #ifdef __cplusplus # ifdef _MSC_VER /* disable warning C4190: 'function' has C-linkage specified, but returns UDT 'typename' which is incompatible with C It is OK to disable it because we only extend few plain structures with C++ construrtors for simpler interoperability with C++ API of the library */ # pragma warning(disable:4190) # elif defined __clang__ && __clang_major__ >= 3 # pragma GCC diagnostic ignored "-Wreturn-type-c-linkage" # endif #endif #ifdef __cplusplus extern "C" { #endif /** @addtogroup core_c @{ */ /****************************************************************************************\ * Array allocation, deallocation, initialization and access to elements * \****************************************************************************************/ /** `malloc` wrapper. If there is no enough memory, the function (as well as other OpenCV functions that call cvAlloc) raises an error. */ CVAPI(void*) cvAlloc( size_t size ); /** `free` wrapper. Here and further all the memory releasing functions (that all call cvFree) take double pointer in order to to clear pointer to the data after releasing it. Passing pointer to NULL pointer is Ok: nothing happens in this case */ CVAPI(void) cvFree_( void* ptr ); #define cvFree(ptr) (cvFree_(*(ptr)), *(ptr)=0) /** @brief Creates an image header but does not allocate the image data. @param size Image width and height @param depth Image depth (see cvCreateImage ) @param channels Number of channels (see cvCreateImage ) */ CVAPI(IplImage*) cvCreateImageHeader( CvSize size, int depth, int channels ); /** @brief Initializes an image header that was previously allocated. The returned IplImage\* points to the initialized header. @param image Image header to initialize @param size Image width and height @param depth Image depth (see cvCreateImage ) @param channels Number of channels (see cvCreateImage ) @param origin Top-left IPL_ORIGIN_TL or bottom-left IPL_ORIGIN_BL @param align Alignment for image rows, typically 4 or 8 bytes */ CVAPI(IplImage*) cvInitImageHeader( IplImage* image, CvSize size, int depth, int channels, int origin CV_DEFAULT(0), int align CV_DEFAULT(4)); /** @brief Creates an image header and allocates the image data. This function call is equivalent to the following code: @code header = cvCreateImageHeader(size, depth, channels); cvCreateData(header); @endcode @param size Image width and height @param depth Bit depth of image elements. See IplImage for valid depths. @param channels Number of channels per pixel. See IplImage for details. This function only creates images with interleaved channels. */ CVAPI(IplImage*) cvCreateImage( CvSize size, int depth, int channels ); /** @brief Deallocates an image header. This call is an analogue of : @code if(image ) { iplDeallocate(*image, IPL_IMAGE_HEADER | IPL_IMAGE_ROI); *image = 0; } @endcode but it does not use IPL functions by default (see the CV_TURN_ON_IPL_COMPATIBILITY macro). @param image Double pointer to the image header */ CVAPI(void) cvReleaseImageHeader( IplImage** image ); /** @brief Deallocates the image header and the image data. This call is a shortened form of : @code if(*image ) { cvReleaseData(*image); cvReleaseImageHeader(image); } @endcode @param image Double pointer to the image header */ CVAPI(void) cvReleaseImage( IplImage** image ); /** Creates a copy of IPL image (widthStep may differ) */ CVAPI(IplImage*) cvCloneImage( const IplImage* image ); /** @brief Sets the channel of interest in an IplImage. If the ROI is set to NULL and the coi is *not* 0, the ROI is allocated. Most OpenCV functions do *not* support the COI setting, so to process an individual image/matrix channel one may copy (via cvCopy or cvSplit) the channel to a separate image/matrix, process it and then copy the result back (via cvCopy or cvMerge) if needed. @param image A pointer to the image header @param coi The channel of interest. 0 - all channels are selected, 1 - first channel is selected, etc. Note that the channel indices become 1-based. */ CVAPI(void) cvSetImageCOI( IplImage* image, int coi ); /** @brief Returns the index of the channel of interest. Returns the channel of interest of in an IplImage. Returned values correspond to the coi in cvSetImageCOI. @param image A pointer to the image header */ CVAPI(int) cvGetImageCOI( const IplImage* image ); /** @brief Sets an image Region Of Interest (ROI) for a given rectangle. If the original image ROI was NULL and the rect is not the whole image, the ROI structure is allocated. Most OpenCV functions support the use of ROI and treat the image rectangle as a separate image. For example, all of the pixel coordinates are counted from the top-left (or bottom-left) corner of the ROI, not the original image. @param image A pointer to the image header @param rect The ROI rectangle */ CVAPI(void) cvSetImageROI( IplImage* image, CvRect rect ); /** @brief Resets the image ROI to include the entire image and releases the ROI structure. This produces a similar result to the following, but in addition it releases the ROI structure. : @code cvSetImageROI(image, cvRect(0, 0, image->width, image->height )); cvSetImageCOI(image, 0); @endcode @param image A pointer to the image header */ CVAPI(void) cvResetImageROI( IplImage* image ); /** @brief Returns the image ROI. If there is no ROI set, cvRect(0,0,image-\>width,image-\>height) is returned. @param image A pointer to the image header */ C

资源文件列表:

opencv3.3.zip 大约有258个文件
  1. opencv3.3/include/
  2. opencv3.3/include/opencv/
  3. opencv3.3/include/opencv/cv.h 3.08KB
  4. opencv3.3/include/opencv/cv.hpp 2.59KB
  5. opencv3.3/include/opencv/cvaux.h 2.46KB
  6. opencv3.3/include/opencv/cvaux.hpp 2.32KB
  7. opencv3.3/include/opencv/cvwimage.h 2.13KB
  8. opencv3.3/include/opencv/cxcore.h 2.37KB
  9. opencv3.3/include/opencv/cxcore.hpp 2.39KB
  10. opencv3.3/include/opencv/cxeigen.hpp 2.2KB
  11. opencv3.3/include/opencv/cxmisc.h 129B
  12. opencv3.3/include/opencv/highgui.h 2.17KB
  13. opencv3.3/include/opencv/ml.h 2.09KB
  14. opencv3.3/include/opencv2/
  15. opencv3.3/include/opencv2/calib3d.hpp 124.94KB
  16. opencv3.3/include/opencv2/calib3d/
  17. opencv3.3/include/opencv2/calib3d/calib3d.hpp 2.31KB
  18. opencv3.3/include/opencv2/calib3d/calib3d_c.h 19.67KB
  19. opencv3.3/include/opencv2/core.hpp 144.46KB
  20. opencv3.3/include/opencv2/core/
  21. opencv3.3/include/opencv2/core/affine.hpp 15.04KB
  22. opencv3.3/include/opencv2/core/base.hpp 27.36KB
  23. opencv3.3/include/opencv2/core/bufferpool.hpp 845B
  24. opencv3.3/include/opencv2/core/core.hpp 2.31KB
  25. opencv3.3/include/opencv2/core/core_c.h 128.15KB
  26. opencv3.3/include/opencv2/core/cuda.hpp 29.7KB
  27. opencv3.3/include/opencv2/core/cuda.inl.hpp 13.59KB
  28. opencv3.3/include/opencv2/core/cuda/
  29. opencv3.3/include/opencv2/core/cuda/block.hpp 8.13KB
  30. opencv3.3/include/opencv2/core/cuda/border_interpolate.hpp 24.18KB
  31. opencv3.3/include/opencv2/core/cuda/color.hpp 15.15KB
  32. opencv3.3/include/opencv2/core/cuda/common.hpp 3.72KB
  33. opencv3.3/include/opencv2/core/cuda/datamov_utils.hpp 4.61KB
  34. opencv3.3/include/opencv2/core/cuda/detail/
  35. opencv3.3/include/opencv2/core/cuda/detail/color_detail.hpp 217.31KB
  36. opencv3.3/include/opencv2/core/cuda/detail/reduce.hpp 15.04KB
  37. opencv3.3/include/opencv2/core/cuda/detail/reduce_key_val.hpp 22.78KB
  38. opencv3.3/include/opencv2/core/cuda/detail/transform_detail.hpp 17.41KB
  39. opencv3.3/include/opencv2/core/cuda/detail/type_traits_detail.hpp 8.4KB
  40. opencv3.3/include/opencv2/core/cuda/detail/vec_distance_detail.hpp 5.1KB
  41. opencv3.3/include/opencv2/core/cuda/dynamic_smem.hpp 3.17KB
  42. opencv3.3/include/opencv2/core/cuda/emulation.hpp 9.79KB
  43. opencv3.3/include/opencv2/core/cuda/filters.hpp 9.56KB
  44. opencv3.3/include/opencv2/core/cuda/funcattrib.hpp 3.16KB
  45. opencv3.3/include/opencv2/core/cuda/functional.hpp 31.4KB
  46. opencv3.3/include/opencv2/core/cuda/limits.hpp 4.72KB
  47. opencv3.3/include/opencv2/core/cuda/reduce.hpp 11.56KB
  48. opencv3.3/include/opencv2/core/cuda/saturate_cast.hpp 9.94KB
  49. opencv3.3/include/opencv2/core/cuda/scan.hpp 8.77KB
  50. opencv3.3/include/opencv2/core/cuda/simd_functions.hpp 30.36KB
  51. opencv3.3/include/opencv2/core/cuda/transform.hpp 3.28KB
  52. opencv3.3/include/opencv2/core/cuda/type_traits.hpp 4.42KB
  53. opencv3.3/include/opencv2/core/cuda/utility.hpp 7.8KB
  54. opencv3.3/include/opencv2/core/cuda/vec_distance.hpp 7.68KB
  55. opencv3.3/include/opencv2/core/cuda/vec_math.hpp 49.4KB
  56. opencv3.3/include/opencv2/core/cuda/vec_traits.hpp 13.01KB
  57. opencv3.3/include/opencv2/core/cuda/warp.hpp 5.04KB
  58. opencv3.3/include/opencv2/core/cuda/warp_reduce.hpp 3.01KB
  59. opencv3.3/include/opencv2/core/cuda/warp_shuffle.hpp 5.16KB
  60. opencv3.3/include/opencv2/core/cuda_stream_accessor.hpp 3.17KB
  61. opencv3.3/include/opencv2/core/cuda_types.hpp 5.09KB
  62. opencv3.3/include/opencv2/core/cv_cpu_dispatch.h 4.87KB
  63. opencv3.3/include/opencv2/core/cv_cpu_helper.h 9.59KB
  64. opencv3.3/include/opencv2/core/cvdef.h 13.42KB
  65. opencv3.3/include/opencv2/core/cvstd.hpp 30.85KB
  66. opencv3.3/include/opencv2/core/cvstd.inl.hpp 7.4KB
  67. opencv3.3/include/opencv2/core/directx.hpp 7.08KB
  68. opencv3.3/include/opencv2/core/eigen.hpp 9.11KB
  69. opencv3.3/include/opencv2/core/fast_math.hpp 8.2KB
  70. opencv3.3/include/opencv2/core/hal/
  71. opencv3.3/include/opencv2/core/hal/hal.hpp 19.13KB
  72. opencv3.3/include/opencv2/core/hal/interface.h 4.33KB
  73. opencv3.3/include/opencv2/core/hal/intrin.hpp 13.04KB
  74. opencv3.3/include/opencv2/core/hal/intrin_cpp.hpp 54.42KB
  75. opencv3.3/include/opencv2/core/hal/intrin_neon.hpp 45.52KB
  76. opencv3.3/include/opencv2/core/hal/intrin_sse.hpp 72.02KB
  77. opencv3.3/include/opencv2/core/ippasync.hpp 7.3KB
  78. opencv3.3/include/opencv2/core/mat.hpp 149.74KB
  79. opencv3.3/include/opencv2/core/mat.inl.hpp 95.7KB
  80. opencv3.3/include/opencv2/core/matx.hpp 44.4KB
  81. opencv3.3/include/opencv2/core/neon_utils.hpp 4.29KB
  82. opencv3.3/include/opencv2/core/ocl.hpp 26.77KB
  83. opencv3.3/include/opencv2/core/ocl_genbase.hpp 2.45KB
  84. opencv3.3/include/opencv2/core/opengl.hpp 23.4KB
  85. opencv3.3/include/opencv2/core/operations.hpp 18.21KB
  86. opencv3.3/include/opencv2/core/optim.hpp 15.49KB
  87. opencv3.3/include/opencv2/core/ovx.hpp 731B
  88. opencv3.3/include/opencv2/core/persistence.hpp 48KB
  89. opencv3.3/include/opencv2/core/ptr.inl.hpp 9.38KB
  90. opencv3.3/include/opencv2/core/saturate.hpp 9.12KB
  91. opencv3.3/include/opencv2/core/softfloat.hpp 10.55KB
  92. opencv3.3/include/opencv2/core/sse_utils.hpp 41.2KB
  93. opencv3.3/include/opencv2/core/traits.hpp 9.74KB
  94. opencv3.3/include/opencv2/core/types.hpp 63.97KB
  95. opencv3.3/include/opencv2/core/types_c.h 59.6KB
  96. opencv3.3/include/opencv2/core/utility.hpp 37.21KB
  97. opencv3.3/include/opencv2/core/utils/
  98. opencv3.3/include/opencv2/core/utils/logger.hpp 3.53KB
  99. opencv3.3/include/opencv2/core/utils/trace.hpp 9.05KB
  100. opencv3.3/include/opencv2/core/va_intel.hpp 2.74KB
  101. opencv3.3/include/opencv2/core/version.hpp 2.96KB
  102. opencv3.3/include/opencv2/core/wimage.hpp 19.71KB
  103. opencv3.3/include/opencv2/cvconfig.h 5.26KB
  104. opencv3.3/include/opencv2/dnn.hpp 2.85KB
  105. opencv3.3/include/opencv2/dnn/
  106. opencv3.3/include/opencv2/dnn/all_layers.hpp 15.97KB
  107. opencv3.3/include/opencv2/dnn/dict.hpp 5.72KB
  108. opencv3.3/include/opencv2/dnn/dnn.hpp 32.69KB
  109. opencv3.3/include/opencv2/dnn/dnn.inl.hpp 8.86KB
  110. opencv3.3/include/opencv2/dnn/layer.details.hpp 2.78KB
  111. opencv3.3/include/opencv2/dnn/layer.hpp 3.2KB
  112. opencv3.3/include/opencv2/dnn/shape_utils.hpp 5.5KB
  113. opencv3.3/include/opencv2/features2d.hpp 59.62KB
  114. opencv3.3/include/opencv2/features2d/
  115. opencv3.3/include/opencv2/features2d/features2d.hpp 2.32KB
  116. opencv3.3/include/opencv2/flann.hpp 22.26KB
  117. opencv3.3/include/opencv2/flann/
  118. opencv3.3/include/opencv2/flann/all_indices.h 5.82KB
  119. opencv3.3/include/opencv2/flann/allocator.h 5.94KB
  120. opencv3.3/include/opencv2/flann/any.h 8.25KB
  121. opencv3.3/include/opencv2/flann/autotuned_index.h 20.4KB
  122. opencv3.3/include/opencv2/flann/composite_index.h 5.85KB
  123. opencv3.3/include/opencv2/flann/config.h 1.75KB
  124. opencv3.3/include/opencv2/flann/defines.h 4.29KB
  125. opencv3.3/include/opencv2/flann/dist.h 26.88KB
  126. opencv3.3/include/opencv2/flann/dummy.h 234B
  127. opencv3.3/include/opencv2/flann/dynamic_bitset.h 4.46KB
  128. opencv3.3/include/opencv2/flann/flann.hpp 2.31KB
  129. opencv3.3/include/opencv2/flann/flann_base.hpp 8.69KB
  130. opencv3.3/include/opencv2/flann/general.h 1.99KB
  131. opencv3.3/include/opencv2/flann/ground_truth.h 3.23KB
  132. opencv3.3/include/opencv2/flann/hdf5.h 7.13KB
  133. opencv3.3/include/opencv2/flann/heap.h 4.01KB
  134. opencv3.3/include/opencv2/flann/hierarchical_clustering_index.h 25.42KB
  135. opencv3.3/include/opencv2/flann/index_testing.h 10.56KB
  136. opencv3.3/include/opencv2/flann/kdtree_index.h 19.31KB
  137. opencv3.3/include/opencv2/flann/kdtree_single_index.h 19.73KB
  138. opencv3.3/include/opencv2/flann/kmeans_index.h 36.05KB
  139. opencv3.3/include/opencv2/flann/linear_index.h 3.61KB
  140. opencv3.3/include/opencv2/flann/logger.h 3.74KB
  141. opencv3.3/include/opencv2/flann/lsh_index.h 15.19KB
  142. opencv3.3/include/opencv2/flann/lsh_table.h 18.07KB
  143. opencv3.3/include/opencv2/flann/matrix.h 3.21KB
  144. opencv3.3/include/opencv2/flann/miniflann.hpp 5.75KB
  145. opencv3.3/include/opencv2/flann/nn_index.h 5.91KB
  146. opencv3.3/include/opencv2/flann/object_factory.h 2.83KB
  147. opencv3.3/include/opencv2/flann/params.h 3.2KB
  148. opencv3.3/include/opencv2/flann/random.h 4.03KB
  149. opencv3.3/include/opencv2/flann/result_set.h 14.66KB
  150. opencv3.3/include/opencv2/flann/sampling.h 2.78KB
  151. opencv3.3/include/opencv2/flann/saving.h 5.64KB
  152. opencv3.3/include/opencv2/flann/simplex_downhill.h 5.61KB
  153. opencv3.3/include/opencv2/flann/timer.h 2.47KB
  154. opencv3.3/include/opencv2/highgui.hpp 34.97KB
  155. opencv3.3/include/opencv2/highgui/
  156. opencv3.3/include/opencv2/highgui/highgui.hpp 2.31KB
  157. opencv3.3/include/opencv2/highgui/highgui_c.h 10.39KB
  158. opencv3.3/include/opencv2/imgcodecs.hpp 15.07KB
  159. opencv3.3/include/opencv2/imgcodecs/
  160. opencv3.3/include/opencv2/imgcodecs/imgcodecs.hpp 2.32KB
  161. opencv3.3/include/opencv2/imgcodecs/imgcodecs_c.h 5.24KB
  162. opencv3.3/include/opencv2/imgcodecs/ios.h 2.45KB
  163. opencv3.3/include/opencv2/imgproc.hpp 220.93KB
  164. opencv3.3/include/opencv2/imgproc/
  165. opencv3.3/include/opencv2/imgproc/detail/
  166. opencv3.3/include/opencv2/imgproc/detail/distortion_model.hpp 5.28KB
  167. opencv3.3/include/opencv2/imgproc/hal/
  168. opencv3.3/include/opencv2/imgproc/hal/hal.hpp 10.6KB
  169. opencv3.3/include/opencv2/imgproc/hal/interface.h 481B
  170. opencv3.3/include/opencv2/imgproc/imgproc.hpp 2.31KB
  171. opencv3.3/include/opencv2/imgproc/imgproc_c.h 51.32KB
  172. opencv3.3/include/opencv2/imgproc/types_c.h 17.08KB
  173. opencv3.3/include/opencv2/ml.hpp 85.54KB
  174. opencv3.3/include/opencv2/ml/
  175. opencv3.3/include/opencv2/ml/ml.hpp 2.31KB
  176. opencv3.3/include/opencv2/objdetect.hpp 23KB
  177. opencv3.3/include/opencv2/objdetect/
  178. opencv3.3/include/opencv2/objdetect/detection_based_tracker.hpp 7.5KB
  179. opencv3.3/include/opencv2/objdetect/objdetect.hpp 2.32KB
  180. opencv3.3/include/opencv2/objdetect/objdetect_c.h 5.87KB
  181. opencv3.3/include/opencv2/opencv.hpp 4.34KB
  182. opencv3.3/include/opencv2/opencv_modules.hpp 838B
  183. opencv3.3/include/opencv2/photo.hpp 37.78KB
  184. opencv3.3/include/opencv2/photo/
  185. opencv3.3/include/opencv2/photo/cuda.hpp 6.17KB
  186. opencv3.3/include/opencv2/photo/photo.hpp 2.31KB
  187. opencv3.3/include/opencv2/photo/photo_c.h 2.63KB
  188. opencv3.3/include/opencv2/shape.hpp 2.4KB
  189. opencv3.3/include/opencv2/shape/
  190. opencv3.3/include/opencv2/shape/emdL1.hpp 3.16KB
  191. opencv3.3/include/opencv2/shape/hist_cost.hpp 4.03KB
  192. opencv3.3/include/opencv2/shape/shape.hpp 2.31KB
  193. opencv3.3/include/opencv2/shape/shape_distance.hpp 10.36KB
  194. opencv3.3/include/opencv2/shape/shape_transformer.hpp 5.29KB
  195. opencv3.3/include/opencv2/stitching.hpp 12.82KB
  196. opencv3.3/include/opencv2/stitching/
  197. opencv3.3/include/opencv2/stitching/detail/
  198. opencv3.3/include/opencv2/stitching/detail/autocalib.hpp 3.53KB
  199. opencv3.3/include/opencv2/stitching/detail/blenders.hpp 5.94KB
  200. opencv3.3/include/opencv2/stitching/detail/camera.hpp 2.85KB
  201. opencv3.3/include/opencv2/stitching/detail/exposure_compensate.hpp 5.19KB
  202. opencv3.3/include/opencv2/stitching/detail/matchers.hpp 12.37KB
  203. opencv3.3/include/opencv2/stitching/detail/motion_estimators.hpp 12.18KB
  204. opencv3.3/include/opencv2/stitching/detail/seam_finders.hpp 9.5KB
  205. opencv3.3/include/opencv2/stitching/detail/timelapsers.hpp 3.08KB
  206. opencv3.3/include/opencv2/stitching/detail/util.hpp 4.29KB
  207. opencv3.3/include/opencv2/stitching/detail/util_inl.hpp 3.84KB
  208. opencv3.3/include/opencv2/stitching/detail/warpers.hpp 19.37KB
  209. opencv3.3/include/opencv2/stitching/detail/warpers_inl.hpp 21.27KB
  210. opencv3.3/include/opencv2/stitching/warpers.hpp 5.85KB
  211. opencv3.3/include/opencv2/superres.hpp 8.07KB
  212. opencv3.3/include/opencv2/superres/
  213. opencv3.3/include/opencv2/superres/optical_flow.hpp 8.7KB
  214. opencv3.3/include/opencv2/video.hpp 2.57KB
  215. opencv3.3/include/opencv2/video/
  216. opencv3.3/include/opencv2/video/background_segm.hpp 13.39KB
  217. opencv3.3/include/opencv2/video/tracking.hpp 30.67KB
  218. opencv3.3/include/opencv2/video/tracking_c.h 11.21KB
  219. opencv3.3/include/opencv2/video/video.hpp 2.31KB
  220. opencv3.3/include/opencv2/videoio.hpp 52.34KB
  221. opencv3.3/include/opencv2/videoio/
  222. opencv3.3/include/opencv2/videoio/cap_ios.h 4.73KB
  223. opencv3.3/include/opencv2/videoio/videoio.hpp 2.31KB
  224. opencv3.3/include/opencv2/videoio/videoio_c.h 35.84KB
  225. opencv3.3/include/opencv2/videostab.hpp 3.59KB
  226. opencv3.3/include/opencv2/videostab/
  227. opencv3.3/include/opencv2/videostab/deblurring.hpp 3.83KB
  228. opencv3.3/include/opencv2/videostab/fast_marching.hpp 4.05KB
  229. opencv3.3/include/opencv2/videostab/fast_marching_inl.hpp 5.33KB
  230. opencv3.3/include/opencv2/videostab/frame_source.hpp 2.94KB
  231. opencv3.3/include/opencv2/videostab/global_motion.hpp 10.47KB
  232. opencv3.3/include/opencv2/videostab/inpainting.hpp 7.04KB
  233. opencv3.3/include/opencv2/videostab/log.hpp 2.65KB
  234. opencv3.3/include/opencv2/videostab/motion_core.hpp 4.47KB
  235. opencv3.3/include/opencv2/videostab/motion_stabilizing.hpp 5.6KB
  236. opencv3.3/include/opencv2/videostab/optical_flow.hpp 5KB
  237. opencv3.3/include/opencv2/videostab/outlier_rejection.hpp 3.4KB
  238. opencv3.3/include/opencv2/videostab/ring_buffer.hpp 2.71KB
  239. opencv3.3/include/opencv2/videostab/stabilizer.hpp 6.74KB
  240. opencv3.3/include/opencv2/videostab/wobble_suppression.hpp 4.75KB
  241. opencv3.3/lib/
  242. opencv3.3/lib/libopencv_calib3d330.dll 2.07MB
  243. opencv3.3/lib/libopencv_core330.dll 4.43MB
  244. opencv3.3/lib/libopencv_dnn330.dll 5.36MB
  245. opencv3.3/lib/libopencv_features2d330.dll 1.36MB
  246. opencv3.3/lib/libopencv_flann330.dll 877.85KB
  247. opencv3.3/lib/libopencv_highgui330.dll 744.26KB
  248. opencv3.3/lib/libopencv_imgcodecs330.dll 3.61MB
  249. opencv3.3/lib/libopencv_imgproc330.dll 4.74MB
  250. opencv3.3/lib/libopencv_ml330.dll 1.18MB
  251. opencv3.3/lib/libopencv_objdetect330.dll 883.9KB
  252. opencv3.3/lib/libopencv_photo330.dll 1.27MB
  253. opencv3.3/lib/libopencv_shape330.dll 547.95KB
  254. opencv3.3/lib/libopencv_stitching330.dll 1.34MB
  255. opencv3.3/lib/libopencv_superres330.dll 566.36KB
  256. opencv3.3/lib/libopencv_video330.dll 797.46KB
  257. opencv3.3/lib/libopencv_videoio330.dll 649.41KB
  258. opencv3.3/lib/libopencv_videostab330.dll 834.19KB
0评论
提交 加载更多评论
其他资源 0ac5c1c4ef21779ba88c42809768efb9.zip
0ac5c1c4ef21779ba88c42809768efb9.zip
.gitignore全局配置与忽略匹配规则详解
资源介绍: 本次分享的资源为一篇关于Git的博客文章,主题为【.gitignore全局配置与忽略匹配规则详解】。该文章旨在帮助读者更好地理解和使用Git中的.gitignore文件,以便在版本控制中更有效地管理项目文件。 文章分为以下几个部分: 设置全局配置:详细介绍如何设置全局的.gitignore配置,使得在不同项目中可以统一应用相同的忽略规则。 Git常用忽略规则匹配语法:深入解析Git中常用的忽略规则匹配语法,如通配符、目录排除等,帮助读者灵活地定制忽略规则。 Git忽略规则优先级:阐述不同来源(如全局、局部)的忽略规则之间的优先级关系,以及如何在实际项目中合理调整这些规则。 .gitignore规则不生效:分析.gitignore规则可能不生效的原因,并提供相应的解决方案。 该文章提供了md版和pdf版两种格式,方便读者在不同场景下阅读。无论是初学者还是有一定经验的开发者,都能从中获得关于Git忽略规则的实用知识。
chromedriver-linux64-127.0.6533.72
chromedriver-linux64-127.0.6533.72
simpleBlePeripheral-Task - LED.zip
simpleBlePeripheral_Task - LED 西西菜鸟
20240726091738.zip
20240726091738.zip
高度可配置化的企业管理系统!企业内部可免费使用!零代码/低代码快速搭建企业中台、CRM客户关系管理、WMS库存管理
开始使用 REBUILD 非常简单,无需配置复杂的运行环境,零依赖快速部署! 1. 使用已发布版本 生产环境强烈推荐使用此方式 !!! 首先 下载 安装包,我们同时提供 standalone 与 boot 两种安装包。standalone 为集成安装包(推荐),boot 为 SpringBoot 的 jar 包,两种安装包在功能上没有区别。 下载后解压(集成安装包),通过 start-rebuild.bat 或 start-rebuild.sh 启动,然后打开浏览器输入 http://localhost:18080/ 开始体验。 2. 通过源码编译 注意 !!! 生产环境请使用 master 分支(默认分支),其他分支为开发分支,功能存在不确定性! # 拉取 git clone --depth=1 https://github.com/getrebuild/rebuild.git # 编译 mvn package # 运行 java -jar target/rebuild.jar 运行后打开浏览器输入 http://localhost:18080/ 开始体验。
tongrds-mc-2.2.1.4 tongrds-node-2.2.1.4
东方通tongRDS aarch64
Template工程模板.zip
Template工程模板.zip