Abstract
In recent years, with the development of technologies such as computer vision, machine learning, and deep learning, as well as the popularity of large-scale data collection devices, 3D point cloud processing has become increasingly important. 3D point cloud processing can be widely used in fields such as object recognition, robot navigation, building information modeling (BIM), and urban planning. With more and more 3D point cloud data acquired, it has become a challenge for present 3D point cloud processing models to accurately and efficiently process this data. To improve the accuracy of point cloud classification and segmentation tasks, this study proposes an improved point cloud classification and segmentation model based on neighborhood aware information fusion. The model includes a Fusion Neighbor Information Feature Enhancement (FNIFE) module, which connects points in the local neighborhood and obtains the features of the current point through the feature relationships between the points in the neighborhood. By enhancing the feature expression of the point, it reduces the feature loss caused by the feature extraction operation and improves the accuracy of point cloud classification. Additionally, the model includes a Reverse Transmission of Point Features (RToPF) module, in which interpolation parameters are adjusted to ensure that the enhanced feature information can be effectively transmitted, thereby improving the accuracy and computing speed of the model. Finally, to further improve classification accuracy further, a module containing the X-Conv operator is utilized in the model to replace the max-pooling in the original network and reduce the feature loss generated during feature extraction. Comparative experiments are conducted on ModelNet40, ShapeNet, S3DIS datasets and ScanNet datasets. The experimental results show that the overall accuracy of proposed model reaches 92.4%. The average accuracy reaches 90.2% in the point cloud classification task, and the average intersection ratio reaches 84.5% in the point cloud segmentation task, achieving superior performance in classification and segmentation tasks compared with the state-of-the-art models.
Introduction
Deep learning techniques have made significant progress in image recognition tasks, such as image classification and semantic segmentation (Caron et al., 2024; Roy et al., 2023). Recently, in addition to 2D image recognition, there is an increasing interest in 3D image recognition for applications in autonomous driving (Li et al., 2023), augmented reality (Fang et al., 2023), and robotics (Bahl et al., 2023), in which LiDAR and RGB-D cameras are used as 3D sensors. The large-scale high-resolution 3D data obtained from such sensors present new challenges for deep learning techniques to accomplish image recognition tasks. For example, 1. Irregularity and disorder of point clouds 2. Difficulty in shape and structure recognition 3. Complexity of large-scale data points.
The task of classification and segmentation of 3D point clouds has been extensively studied in recent years. A 3D point cloud is a collection of unordered points in space, which is different from the sequential nature of pixels in 2D images. Therefore, traditional deep learning-based methods cannot be directly applied to 3D point clouds. To apply deep learning to 3D point cloud data, the data must be preprocessed, such as constructing a 2D projection of the point cloud data using a traditional convolutional neural network (Xiao et al., 2023) or voxelizing using a 3D volumetric neural network (Zhang et al., 2022). However, these methods lead to the loss of original information and are subject to certain limitations (Kermarrec et al., 2022; Ren et al., 2023; Zhao et al., 2023). In 2017, Qi et al. proposed PointNet (Qi et al., 2017a) model based on deep learning and PointNet++ (Qi et al., 2017b) that can be directly used to process 3D point cloud data. These methods greatly improve the accuracy and speed of point cloud processing.
However, existing point cloud feature extraction methods (such as PointNet++) mainly divide local areas by sampling and ignore the internal details of the area by feature summation, which may lead to performance degradation at the scene boundary. To solve this problem, this study proposes a new model that makes full use of the feature information of local areas to enhance the feature expression of point clouds. The model first extracts point cloud features through a neural network and further refines the local features to improve the recognition accuracy of semantic segmentation and classification tasks. In addition, in order to reduce the disorder, aggregation effect and information loss caused by maximum pooling during feature propagation, we optimize the feature propagation and extraction methods to maximize the utilization of feature information and improve classification and segmentation accuracy.
To validate whether the utilization of neighborhood information can improve the accuracy of point cloud classification and segmentation, PointNet++ network is selected as the basis for improvement. The reason for this is that it is a classic network in point cloud processing, and its network structure is relatively simple, making it easy to modify and insert new modules. Actually, many networks have been developed based on PointNet++ and its predecessor PointNet, such as PointCNN (Li et al., 2018): PointCNN is an improvement of PointNet, which introduces convolution operations to process point cloud data. Unlike traditional convolutions on regular grids, PointCNN performs convolution by defining a local neighborhood structure, thereby more effectively capturing local features and improving classification and segmentation performance. PointWeb (Zhao et al., 2019) introduces graph neural networks (GNNs) based on PointNet, representing point clouds as graph structures where points are nodes and edges represent relationships between points. GNNs are used to learn and aggregate features to more effectively capture global context information. KPConv (Thomas et al., 2019) introduces adaptive kernel points based on PointNet to implement convolution operations. Its convolution kernel can adjust the size and shape according to the distribution of point clouds to adapt to point cloud data of different shapes and densities. PointSIFT (Jiang et al., 2018) introduces the Scale Invariant Feature Transform (SIFT) based on PointNet and extends it to point cloud data. Its multi-scale feature learning and aggregation mechanism enables it to process point clouds of different scales and rotation transformations. PointRNN (Fan & Yang, 2019) is an improvement on recurrent neural networks (RNNs) in point cloud processing. It treats point clouds as sequences of points and uses RNNs to model temporal dependencies, thereby extracting spatiotemporal features and improving the performance of classification and segmentation tasks. PointCapsNet (Sun et al., 2021) is a capsule network optimized for point cloud data that can capture spatial relationships and pose information. Compared with traditional convolutional networks, PointCapsNet uses the characteristics of capsule networks for feature extraction and pose estimation, thereby improving point cloud classification and segmentation performance.
Existing improvement methods do not consider the mutual influence of point features in the neighborhood. Based on PointNet++, this paper adds a feature enhancement module that fuses neighborhood information after point cloud sampling and grouping, improves the accuracy of point cloud recognition by enhancing the feature information between point clouds in the local area, and adjusts the interpolation parameters used in the reverse migration process of point features to ensure the effective migration of point features. PointNet++ uses max pooling for feature aggregation, but the maximum value screening leads to information loss, which may cause large errors in point cloud classification and segmentation tasks. To this end, this study introduces the X-Conv operator (Li et al., 2018) to expand the convolution with a regular grid to alleviate the information loss caused by disordered points, feature aggregation and max pooling. This model is tested on ModelNet40 (Wu et al., 2015), ShapeNet (Chang et al., 2015), S3DIS (Armeni et al., 2016) and ScanNet (Dai et al., 2017) datasets. Experiments show that its performance is better than existing methods and verifies the effectiveness of domain information in point cloud tasks. The main contributions of this study are as follows:
Propose a feature enhancement module that integrates neighborhood information, and utilizes the interaction of point cloud features in local areas to enhance the point feature representation capability. Optimize interpolation parameters during feature backpropagation to ensure the effective transmission of rich feature information and improve the semantic segmentation performance of the network. Improve and apply the X-Conv operator to replace the maximum pooling, reduce feature loss, achieve efficient feature aggregation, and enhance point cloud recognition capabilities.
The remainder of the paper is organized as follows: Section II of this paper presents the progress of work related to the field of point cloud classification and segmentation. The proposed network model is described in detail in Section III, and comparative experiments and analysis are performed in Section IV. Finally, the conclusion is provided in Section V.
Point Cloud Processing Methods Based on Traditional Techniques
For point cloud data with 3D coordinates, a simple representation method is to voxelize the data within a 3D grid structure (Zhang et al., 2022). However, as most voxels are empty, the point cloud representation is inefficient. OctNet can be used to alleviate the problem of the sparsity of voxel data (Riegler et al., 2017). However, this method may incur high memory usage due to the deep neural networks used. In addition, as voxels are discrete representations of space, this method still requires a high-resolution grid to maintain a certain feature representation capability, which consumes a large amount of memory (Lu & Rasmussen, 2012).
Another common 3D representation method is the multi-view implementation (Xiao et al., 2023), whereby point data are projected to various specific image planes in 3D space to form 2D images (Li et al., 2020). In this way, point cloud data can be processed with conventional 2D convolutions. However, this method ignores the inherent geometric relationship among the 3D points and the choice of the image plane seriously affects the results. Additionally, any regions that are occluded cannot be processed.
Point Cloud Processing Based on Deep Learning
Neighborhood feature pooling is a common deep learning method in point cloud processing. It reduces computational complexity by aggregating neighborhood features to the center point (Shu et al., 2022). Qi et al. (2017b) proposed PointNet to directly process point cloud data and introduced the T-Net spatial transformer network to align point clouds to optimize classification and segmentation. However, PointNet only extracts global features and ignores local features. To this end, Qi et al. (2017b) introduced PointNet++ to compensate for this defect by dividing local regions, but still did not consider the relationship between points. Jiang et al. (2018) designed the PointSIFT module to extract local features through multi-directional encoding to form a multi-scale representation, improve the 3D shape modeling capability, and enhance the performance of the PointNet series of models. Li et al. (2018) proposed PointCNN to reorder point clouds through X-Conv operations to make them suitable for traditional convolution. The PointWeb proposed by Zhao et al. (2019) uses the adaptive feature adjustment (AFA) module to dynamically optimize the features of each point according to its local area, further improving the feature expression capability.
Inspired by the performance of graph convolution in 2D image processing, Wang et al. (2019b) proposed DGCNN to extract local information by calculating the edge features between points and their neighborhoods. However, DGCNN has difficulty in recognizing sparse point clouds, which affects its effectiveness. Inspired by the attention mechanism, Wen et al. (2024) proposed a point cloud semantic segmentation network using local feature fusion and multi-layer attention mechanism, which improved the segmentation accuracy by utilizing the local geometric features and contextual information of the point cloud. Wang et al. (2019a) proposed Graph Attention Convolution, which captures the structural features of point clouds through adaptive convolution kernels to avoid feature pollution. In response to the influence of point cloud noise, Guo et al. proposed Point Cloud Transformer, which performs well in point cloud classification and segmentation tasks (Guo et al., 2021). Zhao et al. further applied Transformer networks to point cloud processing and built a high-performance model that surpassed traditional methods based on graph networks and sparse convolutions (Zhao et al., 2021). In recent years, in order to solve the problem of attention localization in point cloud classification and segmentation, Jing et al. proposed a graph-based attention-guided network AGNet (Jing et al., 2022) to extract local features through topological structure. Gao et al. designed a spatial deep attention network SDANet (Gao et al., 2022), which embeds a local deep attention mechanism in the MLP layer to learn neighborhood geometric relationships and capture local structures in combination with global features. Tang et al. (2022) proposed a segmentation method for scene boundaries, and evaluated the segmentation performance by creating boundary indicators and boundary learning (CBL). However, this method focuses too much on boundaries and ignores the internal features of point clouds, which needs to be improved (Tang et al., 2022)
Proposed Model
The proposed model is based on the PointNet++ architecture, which is a hierarchical network composed of multiple abstract layers. The improvement of proposed model mainly focuses on the set abstraction layer. Firstly, after sampling and grouping, a new X-conv module based on the existing X-conv (Li et al., 2018) is constructed. This module is used to train the X-transform matrix, which is then multiplied with the features extracted by the MLP to obtain the transformed feature matrix. Secondly, the FNIFE module is added to the X-conv module to enhance the feature relationships between points in the local neighborhood. The FNIFE module modifies the feature values of points while keeping their dimensions unchanged. Lastly, since the convolution operation is primarily used for feature aggregation, it is added to the FNIFE module to progressively integrate neighborhood information for feature aggregation. To improve the performance of the network model without increasing memory usage, the X-conv module is only used in the first set abstraction layer. The overall network framework for point cloud recognition tasks is shown in Figure 1.
Feature Enhancement Module Fusing Neighborhood Information
This section describes how to extract local point cloud features more effectively. The focus is mainly on the interaction between points in each local neighborhood, aiming to enhance the contextual information among all point pairs within the local region to improve feature expression. For a given 3D point cloud, the centroid is selected by sampling points from the farthest points. Then, a ball query (or k-nearest neighbors) is used to find the neighboring points around each centroid. For the local neighborhood containing k points, F is used to represent the point feature set, i.e.,
As shown in Figure 2(a), other methods, such as PointNet++, utilize local context information, but only using max pooling may not be able to aggregate the information in the local area well. However, our proposed method focuses on features. For aggregation, we focus on the interactions between points in each local neighborhood. By obtaining the contextual information between all point pairs, the representation ability is improved, as shown in Figure 2(b).
The schematic diagram of the FNIFE module is shown in Figure 3. In a given region with a feature set

Overall Network Framework.

Feature Extraction Network Diagram: (A) PointNet++ (B) FDIFE Module in our Method. The Yellow Dots Represent the Features of Integrated Regional Information, and the Red Dots are the Features of Integrated Regional Information.

Schematic Diagram of FNIFE Module.
Here,
Thus, the enhanced feature
PointNet++ uses a multilayer perceptron (MLP) and max-pooling to obtain representative features. However, this process does not consider the mutual connection of feature information between points in the local neighborhood.
Adjust the Interpolation Parameters
In the semantic segmentation task, it is necessary to obtain the point features of all original points. Therefore, a combination of interpolation and skip connections is used to achieve reverse transfer of features. As shown in Figure 4, in the feature propagation layer, point features are propagated from point

Semantic Segmentation Network.
The feature aggregation method used in PointNet++ is max-pooling, which selects the maximum value of each dimension feature as the final global feature output. This leads to a high degree of information loss, which has negative effects on point cloud classification and segmentation tasks. Therefore, other methods should replace max-pooling to reduce the loss of information during the feature aggregation stage. Obviously, convolution is the best choice. For data that can be represented in regular domains, such as images, the convolution operator can extract features very efficiently, which is the key to the success of CNNs in various tasks. However, for irregular and disordered point clouds, it is difficult to use the convolution operator directly to take advantage of the spatial correlation of local point cloud data, resulting in incorrect convolution results.
Therefore, the issue of the irregularity and disorder of the point cloud should be addressed at first. The X-Conv module can effectively solve this issue. The X-Conv module consists of two parts: X-Conv and convolution operation. Among them, the X-Conv is similar to the spatial transformation network (STN) (Jaderberg et al., 2015). A multilayer perceptron for K input points coordinates
X-Conv is similar to regular convolution in that it only acts on a local area. For a point p in F, the set of points in the neighborhood of p is denoted as N. Thus, the input of each X-Conv to p is
Experiments and Results
In this section, after the datasets and experiment environments are described, the results of point cloud classification, component semantic segmentation, and scene semantic segmentation are provided. Then, to demonstrate the effect of the FNIFE module proposed in this study, T-SNE (Maaten & Hinton, 2008) (implemented using MATLAB) visualization is performed on the input and output features. After the impact of each module on network performance is analyzed, the model stability test is performed.
Datasets and Experiment Environments
To verify the effectiveness of the model proposed in this study, experiments are conducted on four widely used datasets, including ModelNet40 dataset (Wu et al., 2015) for shape classification experiment, ShapeNet dataset (Chang et al., 2015) for part segmentation experiment, S3DIS dataset (Armeni et al., 2016) and ScanNet dataset (Dai et al., 2017) for scene semantic segmentation experiment.
ModelNet40 dataset contains 12311 computer-assisted-design (CAD) models (mainly man-made) in 40 categories, in which 9843 models are used for training and 2468 models used for testing (Wu et al., 2015).
ShapeNet dataset contains 1200 shapes in 50 categories. Each category contains 24 shapes, most of which are organic with various poses, such as horses and cats (Chang et al., 2015). The training set contains 864 samples and the test set contains 336 samples. Five-fold cross-validation is used to achieve the segmentation accuracy.
S3DIS contains 6 different types of large-scale indoor scenes, distributed in three buildings, with 13 semantic categories (Armeni et al., 2016). The dataset only includes 3D point cloud data. Each point cloud contains XYZ coordinate information and RGB color information, as well as the category of each point. The experiment divides each room of the S3DIS dataset into grids with different sizes, randomly collects 4096 sample points in each grid, and traverses the entire room in steps of 0.5 m.
ScanNet dataset contains 1513 room scans reconstructed from RGB-D frames. The dataset is divided into 1201 scenarios for training and 312 scenarios for validation (Dai et al., 2017).
The experiments are performed using TensorFlow 1.4.0 with GTX 1080Ti.
Point Cloud Classification
Classification experiments are performed on point cloud data in ModelNet40 dataset. The results given by the proposed model are compared with the results of the state-of-the-art (SOTA) models (Table 1).
Classification Results on ModelNet40 Dataset.
Classification Results on ModelNet40 Dataset.
MA represents mean per-class accuracy, which is the ratio of the number of correct classifications to the number of objects in a class (Qi et al., 2017a). OA denotes the overall accuracy, which is the ratio of the number of overall correct classifications to that of overall objects (Qi et al., 2017a).
In Table 1, the best-performing results are in bold, and the second-best results are underlined (the same notes for Tables 2, and 3). It can be observed from the experimental results that proposed model has achieved the best results in MA, and the overall accuracy of the proposed method is only 0.1% behind the first place, which is basically the same as MRFGAT in overall performance. The experimental results show that compared with PointNet++, proposed model achieves a 1.7% improvement for OA, which proves that the FNIFE module proposed in this paper is effective in improving the feature extraction capability.
Component Segmentation Experimental Results on ShapeNet Dataset.
Performance Comparison Under the Entire S3DIS Dataset.
The component semantic segmentation performance of the proposed model is evaluated under the assumption that the category labels of each shape are known. The task of component semantic segmentation is to predict the part labels of each point. The normal vector of each point is used to describe the underlying shape. IoU (Intersection over Union) is used as an evaluation metric, and the average of IoU for all part categories is calculated (Qi et al., 2017b). A comparison between the proposed model and the SOA models is presented in Table 2.
The results in Table 2 show that the proposed model achieves the second-best mean IoU (mIoU) (Qi et al., 2017b) of all categories, with the highest performance in 7 of the 16 categories of the entire dataset. Figure 5 shows the visualization results. It can be observed that the various components of each category are clearly segmented, which demonstrates that proposed model is effective in component semantic segmentation.

Visualization of Part Segmentation results.
Six models are first trained using a six-fold cross-validation approach for six different large indoor scenes in S3DIS dataset, and then predictive segmentation is performed on each test set. Based on the semantic segmentation results for each region, the mIoU is computed for 13 semantic categories over the whole dataset. The results are shown in Table 3. The results show that the model proposed in this study outperforms other SOA models in terms of OA and leads the second place by 0.7%. It ranks the second in mIoU, behind PointSIFT. The results show that proposed model can effectively improve the accuracy of point cloud segmentation.
The results in Table 3 shows that the model proposed in this study outperforms other SOA models in terms of OA and leads the second place by 0.7%. It ranks the second in mIoU, behind PointSIFT. The results show that proposed model can effectively improve the accuracy of point cloud segmentation.
As shown in Figure 6, four samples from the segmentation experiment are selected for analysis. For categories with clear boundaries, such as floors, tables, walls, and chairs, the segmentation results given by the proposed model are not much different from the real segmentation results. For categories with similar features, such as whiteboards, windows, and walls, proposed model can roughly segment the object boundaries.

Visualization of Point Cloud Scene Segmentation Results.
In addition, we also conducted scene semantic segmentation experiments on the ScanNet dataset to verify the effectiveness of our proposed model. Figure 7 shows the comparison results of our proposed model with PointNet and PointNet++ models. The accuracy of our proposed models is superior to the other two models, with a 0.5% lead over the PointNet++algorithm and a 9.9% higher accuracy than the PointNet algorithm. The visualization results of the experiment are shown in Figure 8. The segmentation results output by our proposed model are not significantly different from the label segmentation results, which can effectively improve the accuracy of point cloud segmentation.

Performance Comparison on the ScanNet Dataset.

Visualization of Scene Semantic Segmentation Results in ScanNet Dataset.
The feature interpolation method is used in the feature reverse transfer module of semantic segmentation. The size of the interpolation parameter k will affect the final segmentation result. Therefore, in order to determine the most suitable k value, we conducted a detailed comparative experiment and obtained the performance of the network model in semantic segmentation under different k values. The experimental results are shown in Table 4. It can be seen that when k = 5, the performance is better than when k = 3 in the original text. In addition, it can be found that the larger the value of k, the better. When k = 7, the mIoU value is reduced. Therefore, k = 5 is selected as the interpolation parameter value in the experiment.
Experimental Results Table for Different Values of k (unit: %).
Experimental Results Table for Different Values of k (unit: %).
To understand the function of the feature enhancement module that integrates neighborhood information more intuitively, the input and output features of T-SNE are visualized. Ten categories of data in S3DIS dataset are selected. For each category, 100 points are randomly selected from the entire region, and the feature distribution is plotted. These features are visualized in Figure 9 regardless of whether they have been processed by the feature enhancement module or not. From left to right, this figure shows the input feature distribution map, the baseline output feature distribution map for the framework without the FNIFE module, and the output feature distribution map for the framework with the FNIFE module.

Feature Visualization.
Compared with the baseline network, which uses the MLP to independently process local area features, the FNIFE module can be used to generate a more compact and representative feature representation. The points of different categories are accurately identified. The visualization results show that the FNIFE module enhances the recognition ability of proposed model.
To demonstrate the impacts of the FNIFE module, RToPF module, and X-Conv module on the overall model performance, separate tests on each module are conducted. Tables 5, Tables 6, Tables 7 presents the results for the three representative datasets under the same configuration (Shape classification of ModelNet40 does not involve feature reverse transfer module, so the results of RToPF isn’t presented in Table 5).
Ablation Experiment Results on ModelNet40.
Ablation Experiment Results on ModelNet40.
Ablation Experiment Results on ShapeNet.
Ablation Experiment Results on S3DIS.
Regardless of whether the task is shape classification, component semantic segmentation, or scene semantic segmentation, the addition of each module improves the model performance. Particularly, FNIFE module plays an important role in feature extraction, greatly improving the model's extraction performance. The X-Conv module and the RToPF module make relatively small improvements to the overall network performance.
This section examines the performance stability of the proposed model. By gradually reducing the density of the input point cloud, different output results are obtained to verify the impact of missing points on the performance of the proposed model. Compared with PointNet++ and PointNet, its performance is observed to decline. Different numbers of samples from the ModelNet40 dataset, including 1024, 512, 256 and 128 input samples, are used in the experiment. The experimental results are shown in Figure 10(a). As the number of input samples decreases, the accuracy of the three models decreases. When the input samples are reduced to half of the original, the accuracy of PointNet++ and our algorithm model decreases less. When the number of input samples is reduced to 1/4 of the original, the decrease in accuracy is roughly linear. With only 128 input samples, the performance of PointNet decreases significantly, while the accuracy of the proposed model remains high at 88.72%. As the number of samples decreases, the performance difference between the proposed model and PointNet++ or PointNet gradually increases. Overall, the proposed model achieves better performance at all sampling densities. This shows that the proposed model is robust to the number of input samples. This is because the proposed model fully considers the neighborhood information of the point and enhances the local feature information. In addition, we also verify the impact of noisy data on the model performance. Specifically, Gaussian noise is added to each point independently to test the stability of the model, as shown in Figure 10(b). The proposed model still performs well under the influence of noisy data.

Model Stability Test.
Table 8 summarizes the comparison of PointNet, PointNet++ and the proposed model in terms of time and space cost. The proposed model is improved based on PointNet++. Its model is smaller than the PointNet algorithm and larger than the PointNet++ algorithm. The forward transmission time is the longest. This is due to the addition of the relevant modules in this article, which increases the number of model parameters and complexity. However, in comparative experiments on three data sets, our method is better than these two models (ModelNet40 data set:Our 92.4, PointNet++ 90.7, PointNet 89.2 ; ShapeNet dataset:Our84.5,PointNet++ 81.9, PointNet 80.4; S3DIS dataset: Our 89.42, PointNet++ 84.38, PointNet 78.62) This is enough to prove that the improvement method we proposed based on PointNet++ is reasonable and effective in gaining benefits. In addition, although our method sacrifices a certain amount of computational efficiency, it gains better feature expression ability and classification and segmentation accuracy.
Comparative Analysis of Time and Spatial Complexity of Multiple Models.
Comparative Analysis of Time and Spatial Complexity of Multiple Models.
In order to improve the performance of point cloud classification and segmentation tasks, this paper proposes a point cloud classification and segmentation model based on neighborhood aware information fusion to reduce feature loss and improve recognition performance. The model consists of three core modules: feature enhancement module, which enriches feature expression by building associations between neighborhood points; RToPF module, which optimizes feature transmission and improves information retention; X-Conv convolution operator, which reduces feature loss and improves network recognition performance. Ablation experiments verify the contribution of these modules to model performance. Comparative tests on four benchmark datasets show that the proposed model exhibits higher classification and segmentation accuracy.
However, from the perspective of the model's evaluation values, there is still a lot of room for improvement. Future research work can be deepened from the following aspects. 1. Continue to explore more effective functional relationships to improve the feature extraction of fusion domain information; 2. Related modules need lightweight design; 3. Explore a variety of optimization strategies, such as model pruning, quantization, and efficient reasoning frameworks to reduce computational overhead; 4. Explore the introduction of attention mechanisms or Transformers to achieve more efficient feature extraction. Ultimately, the performance of the model in more complex 3D scenes will be further improved.
Footnotes
Acknowledgments
This work was partially supported by the National Natural Science Foundation of China (Nos. 61871258). The authors thank the editors and anonymous reviewers for their helpful comments and suggestions.
Funding
The authors disclosed receipt of the following financial support for the research, authorship, and/or publication of this article: This work was supported by the the National Natural Science Foundation of China, (grant number 61871258).
Conflicting Interests
The authors declared no potential conflicts of interest with respect to the research, authorship, and/or publication of this article.
