光对准相关工作

1
2
3
4
However, reliable optical data transmission in harsh marine environments encounters interference from waves and currents, as it requires strict link alignment. The problems of beam misalignment and pointing errors have been addressed by several research efforts. Luo et al \cite{mss-node-uav} proposed a beam pointing adjustment algorithm based on a soft actor-critic approach to mitigate the effect of waves on system performance.
Shin et al. \cite{shin-ioagent-2023} proposed a two-stage DRL algorithm for controlling data transmission, where beam divergence angle and transmission power are jointly optimized to maintain seamless connectivity between ocean surface vehicles and underwater sensors. Weng et al. \cite{Weng2024AUV} proposed a reinforcement learning‐based alignment method to control the AUV to establish an optical link and maintain alignment utilizing multiple sensors in conjunction with particle filters. However, the former are controlling the beam to be vertically upward or horizontally aligned, and do not take into account more flexible pointing relationships.
Shin et al. \cite{shin-bobd-2024} proposed a two-step two-agent deep reinforcement learning algorithm that enables an underwater sensor installed on the seabed to sequentially determine the beam orientation (BO) and beam divergence (BD) angles for transmitting its sensing data to an USV that may irregularly shake above the sea level. Although it uses BO and BD to improve the reliability of communication, the two agents are adjusted in two steps still face the problem of dynamic changes in the environment when the actual control is deployed.

scenario

插入图片的方法

在完成了、发布文章后,如果我们想在文章中插入图片,该怎么做呢?
在使用网上的方法上传图片之后,我仍然遇到“图片无法显示”的问题,查阅官方文档并自己实践后,终于解决了,现将几种插入图片方法的步骤整理如下。

方法一:全局资源文件夹
即,将所有文章的资源统一用一个全局资源文件夹管理。
此方法的优点是比较简便,并且当多篇文章需要引用同一资源时,也比较方便。缺点是当文章很多时,各个文章的图片都在同一文件夹,不便管理。

具体方法:
在hexo文件夹下的source目录下,新建一个文件夹叫images(名字随意),将要插入的图片放在该文件夹中。
md文档内,使用图片的格式,圆括号内的链接地址写(/images/name.jpeg)。
这里的 / 指的是根目录,对于hexo,资源文件的根目录就是source。

例如,在md文档中写:图片
同时将“20.jpeg”这个图片文件放在hexo文件夹/source/images下,则图片可以上传到博客。