当前位置:网站首页>Improvement of pointnet++
Improvement of pointnet++
2022-07-05 05:18:00 【Master Ma】
1、PATs: Point Attention Transformers
The paper :Modeling Point Clouds with Self-Attention and Gumbel Subset Sampling
2019CVPR, Shanghai Jiaotong University MoE Laboratory and Huawei Noah's Ark Laboratory
This paper mainly improves PointNet++ Medium FPS Part of , Make the selected point more able to deal with outer points , take down sampling The selected point is attention score On the big point . A vivid comparison is shown below :
Next, I will introduce the two modules proposed in this paper .
GSA:Group Shuffle Attention
This part is mainly about self attention mechanism .
This article uses Scaled Dot-Product attention( The blog above also mentioned ), Concrete GSA See the formula in the paper for details (7)(8) and (11).
For point x, The corresponding eigenvector is y, adopt y=GSA(f) Transformation of , A new eigenvector of points is obtained y. stay GSA In the process , Reference resources (7) and (8), Still in use f Internal information , And MLP In fact, the effect is the same , Is to calculate new features .
GSS:Gumbel Subset Sampling
Mainly is to Pointnet++ Medium FPS Use instead Gumbel Softmax Calculate the importance of each point , Then choose according to this probability down sampling The point of .
Network structure
From the perspective of network structure ,GSA The Internet is similar to Pointnet++ Medium MLP,GSS amount to FPS.
Moments
The paper :Momenet: Flavor the Moments in Learning to Classify Shapes
The method proposed in this article is simple , Basically, it is to increase the input of the network . Input the network by the coordinates of the points (x,y,z) Add to (x,y,z,x2,y2,z2,xy, xz, yz). The basic network is as follows :
2nd Order-Layer
You can see from the details 2nd Order-Layer In fact, with Pointnet++ Very similar , Nothing more than artificial construction 2nd Order Characteristics of .
Concrete Spatial-Trans We also added 2nd Order-Layer.
The final effect proves , stay ModelNet40 On the dataset , The effect is very good .
reference :https://blog.csdn.net/wqwqqwqw1231/article/details/104183984
边栏推荐
- 服务熔断 Hystrix
- Fragment addition failed error lookup
- To be continued] [UE4 notes] L4 object editing
- Generate filled text and pictures
- Basic knowledge points of dictionary
- UE fantasy engine, project structure
- Stm32cubemx (8): RTC and RTC wake-up interrupt
- Bubble sort summary
- 2022/7/1 learning summary
- [depth first search] 695 Maximum area of the island
猜你喜欢
用 Jmeter 工具做个小型压力测试
[to be continued] [UE4 notes] L3 import resources and project migration
Ue4/ue5 illusory engine, material chapter, texture, compression and memory compression and memory
【论文笔记】Multi-Goal Reinforcement Learning: Challenging Robotics Environments and Request for Research
Bucket sort
Binary search basis
Fragment addition failed error lookup
小程序直播+電商,想做新零售電商就用它吧!
Quick sort summary
UE4/UE5 虚幻引擎,材质篇(三),不同距离的材质优化
随机推荐
Romance of programmers on Valentine's Day
Animation
[转]MySQL操作实战(三):表联结
[trans]: spécification osgi
Programmers' experience of delivering takeout
Collapse of adjacent vertical outer margins
Merge sort
[merge array] 88 merge two ordered arrays
嵌入式数据库开发编程(六)——C API
PMP candidates, please check the precautions for PMP examination in July
YOLOv5添加注意力机制
Common database statements in unity
Shell Sort
Download and use of font icons
Bubble sort summary
Lua GBK and UTF8 turn to each other
[binary search] 69 Square root of X
Lua wechat avatar URL
2022 / 7 / 1 Résumé de l'étude
LeetCode之單詞搜索(回溯法求解)