Thank you for your detailed review. We hope our following responses can address your concerns.
---
**Q1. The computational cost of Extension of $\Delta$.**
The extension of $\Delta$ does not introduce significant computational overhead. The dimensions of the discrete SSM parameters $(\overline{A},\overline{B})$ remain unchanged before and after extending $\Delta$. Therefore, the extension of $\Delta$ only affects the parameter generation without altering SSM processing. This is clarified in line 287 of the manuscript and Algorithm 1 in the Appendix.
To further clarify the computational overhead of the proposed ISSM, we provide the FLOPs for both parameter generation and SSM processing. As shown in the following table, under the same model structure, the computational overhead of ISSM is only slightly higher than that of Selective SSM. Both Selective SSM and ISSM adopt the multi-head structure of Mamba2 with 32 heads, where the number of scene points is 1024, the number of state points is 256, and the feature dimension is 256.
| Method | Parameter Generation (M) | SSM Processing (M) | Total (M) |
| :-----------: | :----------------------: | :----------------: | :-------: |
| Selective SSM | 285.21 | 224.26 | 509.47 |
| ISSM(Ours) | 303.04 | 224.26 | 527.30 |
---
**Q2. The motivation and design of the Spatial Correlation module.**
The proposed ISSM needs to address a complex state update challenge: how to select appropriate scene points for updating state points. To tackle this, we develop the Spatial Correlation module, which leverages the relative positional relationships between scene and state points to select suitable scene points for state updates. Similar to VDETR, we employ vertex relative position encoding to determine the relationships between scene and state points. Unlike VDETR, which injects positional information into the attention map, we use it for generating SSM parameters $(B,C,\Delta)$. Additionally, we design a delay kernel for $\Delta$ to dynamically adjust the update magnitude of state points based on their distance from scene points.
---
**Q3. Explain the importance of each component in the method section.**
Thank you for your suggestion. We provide more illustrations about the inter-state attention module, the Hilbert serialization and the bidirectional scanning mechanism.
**For the inter-state attention module**, we focus on modeling feature interactions among state points. In 3D object detection, objects in a scene often exhibit strong correlations. For example, tables and chairs commonly appear together, while beds and toilets rarely coexist in the same room. To capture such relationships, we employ a standard self-attention mechanism for state points, enabling them to leverage scene semantics and enhance detection accuracy.
**For the serialization strategy**, we generate six different serialized results for the point cloud by reordering the x, y, and z axes of the Hilbert curve, aiming for comprehensive observation of the point cloud. Compared to PTv3 [R1], which only swaps the x and y axes, our serialization results are more diverse. Additionally, unlike Serialized Attention in PTv3, the sequential feature modeling in SSM is more sensitive to changes in the serialization method. Thus, we apply distinct serialization orders across decoder layers without the Shuffle Order strategy used in PTv3.
**For the bidirectional scanning mechanism**, we aim to model bidirectional point-to-point relationships in a single pass. We follow Vision Mamba [R2] and introduce the bidirectional scanning mechanism into our ISSM. Unlike the original Mamba, our ISSM uses scene points as system inputs and state points as system states. In the backward ISSM, we reverse the order of scene points while keeping the state points unchanged.
---
**Q4. The meaning of "Param." in Table 5.**
In Table 5, the results in "Param." represent the total parameters of our DEST-base model. We clarify this in the revised manuscript to avoid any ambiguity.
---
**Q5. Typos.**
We thoroughly revised the manuscript to correct typos and improve any unclear expressions.
---
[R1] Wu, Xiaoyang, et al. "Point Transformer V3: Simpler Faster Stronger." Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition. 2024.
[R2] Zhu, Lianghui, et al. "Vision mamba: Efficient visual representation learning with bidirectional state space model." *arXiv preprint arXiv:2401.09417* (2024).