Stormworks: Build and Rescue

Stormworks: Build and Rescue

评价数不足
FCR1M1
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
更新日期
136.005 KB
2022 年 2 月 6 日 上午 8:28
2022 年 3 月 2 日 上午 3:29
3 项改动说明 ( 查看 )

订阅以下载
FCR1M1

描述
This FCR_ outputs ELI2. Please use it by connecting it to a VLS that supports ELI2.
This FCR_ can detect targets farther than FCR1, but it is not very accurate.

Method of operation
・ Move the camera with WASD.
・ When you find a goal, a circle will be displayed.
・ When the circle is displayed, press the Auto aim button and continue to capture the target.
・ Wait until "LOCKED!" Is displayed.

Contents of ELI2
Numeric composite
① Target x coordinate [m] (Inferior accuracy to ELI1)
② Target y coordinate [m] (Inferior accuracy to ELI1)
③ Target altitude [m] (Inferior accuracy to ELI1)
④ Target x speed [m / tick] (Inferior accuracy to ELI1)
⑤ Target y speed [m / tick] (Inferior accuracy to ELI1)
⑥ Target vertical speed [m / tick] (Inferior accuracy to ELI1)
Logical composite
① True if you capture the target

You can remodel it.
You may distribute it secondarily (if you modify it).
You can incorporate it.
You can make a video.
You don't have to get permission.

(I used Google Translate.)
4 条留言
猫好き  [作者] 2022 年 2 月 8 日 上午 10:41 
ありがとうございます!カルマンフィルターについて調べてみようと思います。

Thank you! I will investigate the kalman filter.

(I used Google Translate.)
thatcoolcat1 2022 年 2 月 7 日 下午 3:22 
you said that this isn't very accurate with range, maybe adding a kalman filter can help.

you can do this by using this function in lua

--kalman filter
data = coef * data + ( 1 - coef ) * oldData
oldData = data

--coef = 1 is no filter
--start with coef = 0.1 and make it bigger if too smooth, lower it when it shakes.
猫好き  [作者] 2022 年 2 月 7 日 上午 2:22 
そうです。カメラがロールしてしまうと計算がうまくできないので、カメラを水平に保ち続けるようにしています。(見やすさのためも少しあります)

that's right. If the camera rolls, the calculation will not work, so I try to keep the camera horizontal. (There is a little for ease of viewing)

(I used Google Translate.)
repikj 2022 年 2 月 6 日 上午 11:27 
Hi, it's me again. Perfect work 4th time in a row! Been playing with your controllers last two weeks and nothing can beat them! Just one question:

Radar mount roll and pitch is needed for fully functional targeting, or this feature is for camera roll compensation only?

Once again thank you for your work!