登录
首页 » Special Effects » 罗布赫斯C实现SIFT使用OpenCV。

罗布赫斯C实现SIFT使用OpenCV。

于 2022-06-28 发布 文件大小:557.61 kB
0 243
下载积分: 2 下载次数: 2

代码说明:

Rob Hess C implementation of SIFT that uses OpenCV. It allows for pretty detailed parameter tweaking (e.g. histogram size, DoG thresholds, etc.) If you need flexibility, this is pretty good. -Rob Hess C implementation of SIFT that uses OpenCV. It allows for pretty detailed parameter tweaking (eg histogram size, DoG thresholds, etc.) If you need flexibility, this is pretty good.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Contrast stretching good c++ Procedures, in the hope that the U.S. image there t...
    对比拉伸好的c++程序,希望对美国那边的图像处理有帮助
    2022-11-29 14:40:03下载
    积分:1
  • 图形学中的基本画图算法的实现,可能会有点小问题,请自己校正...
    图形学中的基本画图算法的实现,可能会有点小问题,请自己校正-graphics, the basic algorithm for drawing the realization may be some minor problems, its own calibration
    2022-02-01 13:40:26下载
    积分:1
  • tiff格式详细分析级VC++基本处理介绍,学习使用
    tiff格式详细分析级VC++基本处理介绍,学习使用-tiff format, detailed analysis of the basic processing stage VC++ introduction and learning to use
    2022-03-03 08:24:22下载
    积分:1
  • 该压缩包里包括了一幅图像的位平面解,即一幅灰度图像可以分成八个位平面。利用它可以转化到彩取色图像中去,很有用处的。...
    该压缩包里包括了一幅图像的位平面解,即一幅灰度图像可以分成八个位平面。利用它可以转化到彩取色图像中去,很有用处的。-The bag includes a compressed image bit-plane solution, that is, a gray image can be divided into eight bit-plane. Use it can be transformed into the color check color images, and useful.
    2022-06-28 03:58:23下载
    积分:1
  • 一个描述计算几何的相当不错的程序,写的挺好,对于初学者大有好处...
    一个描述计算几何的相当不错的程序,写的挺好,对于初学者大有好处-a geometric description of the calculation procedure is quite good, very well written, is good for beginners
    2022-02-25 20:41:52下载
    积分:1
  • 视频目标跟踪算法,具有抗遮挡、抗旋转、目标记忆等功能
    视频目标跟踪算法,具有抗遮挡、抗旋转、目标记忆等功能 -Video target tracking algorithm, with anti-block, anti-rotation, the target memory and other functions
    2023-03-30 17:55:04下载
    积分:1
  • The source image format converter for conversion of images in different formats,...
    图像格式转换的源码,用于图像不同格式的转换,如转换公式为Gray(i,j)=0.11*R(i,j)+0.59*G(i,j)+0.3*B(i,j),其中Gray(i,j)为转换后的黑白图像在(i,j)点处的灰度值,其中绿色所占的比重最大,所以转换时可以直接使用G值。 -The source image format converter for conversion of images in different formats, such as the conversion formula for the Gray (i, j) = 0.11* R (i, j)+ 0.59* G (i, j)+ 0.3* B ( i, j), which Gray (i, j) for the converted black and white images in the (i, j) point of the gray value, of which the largest share in the green, so conversion can be directly used when the G value.
    2022-06-15 12:56:21下载
    积分:1
  • 系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分...
    系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分隔符,如果在命令的参数中间出现符号“/”,则用“/”表示。我们将“”定义为转义符。 现在,行编辑器具有如下编辑命令: 行插入:i #/串   在指定行号(>0)插入一个新行,新行的内容就是命令中给出的“串”。若插入的行超过了已有的行数,则在最后一行的后面插入一个新行。 文本替换:c 被替换串/替换串   将整个文本中全部[被替换串]替换为[替换串]。 行删除:d #   其中#为指定的行号 行合并:f #1/#2/#3...   将行号为 #2 和 #3...的行连接到行号为 #1 的行的后面,取消原来的 #2 行和#3等,合并后#2行和#3等原来的内容不存在了,被后面的行抵补替代。若指定行号超出正文的范围,则放弃操作。 输入: 这段文本用[Text]......[/Text]的形式描述,之后是一串操作命令如: [Text] 1 222 33 44 2 333 45 d b g 3 3 444 56 333 54 [/Text] c 333/zhang d 1 -系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分隔符,如果在命令的参数中间出现符号“/”,则用“/”表示。我们将“”定义为转义符。 现在,行编辑器具有如下编辑命令: 行插入:i#/串   在指定行号(>0)插入一个新行,新行的内容就是命令中给出的“串”。若插入的行超过了已有的行数,则在最后一行的后面插入一个新行。 文本替换:c 被替换串/替换串   将整个文本中全部[被替换串]替换为[替换串]。 行删除:d#   其中#为指定的行号 行合并:f#1/#2/#3...   将行号为#2 和#3...的行连接到行号为#1 的行的后面,取消原来的#2 行和#3等,合并后#2行和#3等原来的内容不存在了,被后面的行抵补替代。若指定行号超出正文的范围,则放弃操作。 输入: 这段文本用[Text]......
    2022-03-03 09:48:33下载
    积分:1
  • Snake game using C Graphics
    Snake game using C Graphics
    2022-03-11 22:23:29下载
    积分:1
  • Level set method of image processing fast marching method, narrow
    水平集图像处理方法中fast marching方法,窄带方法及level set方法的JAVA代码-Level set method of image processing fast marching method, narrow-band method and level set methods JAVA code
    2022-03-29 07:14:30下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载