使用贝叶斯优化对遥感影像目标进行精确定位
柴栋,许夙晖,罗畅,鲁彦辰

Object Accurate Localization of Remote Sensing Image based on Bayesian Optimization
Dong Chai,Suhui Xu,Chang Luo,Yanchen Lu

算法2基于高斯过程贝叶斯优化的边框微调算法

输入:图像初步检测结果B={bbs1,?????????????????????bbs2,????????????????????,?????????????????????bbsNUM},i=j=0,初始化参数θ,最大优化次数numstep。????????????????????

输出:最终???????????????????B={bbs1,?????????????????????bbs2,????????????????????,?????????????????????bbsNUM}

1. forbbsiinB

2. ??X*=searchbbsi

3. ??f=?

4. ??for x in X*

5. ????y=SvmScore(x)

6. ????fy

7. ??end for

8. ??D={X*,???????????????????f}

9. ??θ=gp.?????????????????????fit(D)

10. ??ymax???????????????????=max(f)

11. ??for j in numstep

12. ????x?max=argmax(A(ymax,?????????????????????θ,???????????????????D))

13. ????X*x?max

14. ????f?max=SvmScore(x?max)

15. ???????????????????????ff?max

16. ????D={X*,???????????????????f}

17. ????θ=gp.?????????????????????fit(D)

18. ????if f?max>ymax

19. ??????ymax=f?max

20. ??????xmax=x?max

21. ????end if

22. ??bbsi=xmax

23. ??end for

24. end for