关于一篇icsp的论文

今年暑假那会投了一篇icsp的会议论文,是我的水文,也有实验室同学帮我修改,由于暑假生病后基本上就是实验室的同志帮我修改后就交了。真的非常感谢他哇。论文讲的关于利用MSER和GMM联合求解星空图像中的星点质心,这片论文也与我的毕业项目相关吧。

论文的代码在www.github.com/NanYoMy上,MSER是从vl_feat上直接修改的,看他的MSER代码有点问题,在建立MSER树的时候,关于树的高度的问题,我在github上给他的pull request。

hi sir:
when i debug the mser.c. i found the value of "n_hgt" and "hgt" is not always correct. then i found the code in "mser.c":
vl_mser_pix nr_val = 0 ;
vl_uint nr_idx = 0 ;
int hgt = r [ r_idx] .height ;
int n_hgt = r [nr_idx] .height ;
r_idx = climb(r, idx) ;
nr_idx = climb(r, n_idx) ;

it means that the "n_hgt" is always the height of r[0]. because the "nr_idx" is "0" when the computer runs the code "int n_hgt = r [nr_idx] .height ;".!!.
so i modify it like this:
vl_mser_pix nr_val = 0 ;
vl_uint nr_idx = 0 ;
r_idx = climb(r, idx) ;
nr_idx = climb(r, n_idx) ;
int hgt = r [ r_idx] .height ;
int n_hgt = r [nr_idx] .height ;

it works correctly in my project. and thanks to the vl_feat, my project is success now!!!!


论文里面还有些杂乱的matlab代码,有兴趣email我


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值