Skip to content

Commit

Permalink
Fix the value of RS2_OPTION_FILTER_MAGNITUDE option for PointCloud pr…
Browse files Browse the repository at this point in the history
…ocessing block.
  • Loading branch information
mengyui committed Jun 20, 2020
1 parent b057c2d commit 98565e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ MonoBehaviour:
enabled: 1
TextureStream: 1
TextureFormat: 1
_occlusionRemoval: 0
_occlusionRemoval: 1
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ MonoBehaviour:
enabled: 1
TextureStream: 2
TextureFormat: 5
_occlusionRemoval: 0
_occlusionRemoval: 1
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ MonoBehaviour:
enabled: 1
TextureStream: 1
TextureFormat: 5
_occlusionRemoval: 0
_occlusionRemoval: 1
--- !u!114 &114947088938950326
MonoBehaviour:
m_ObjectHideFlags: 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ public class RsPointCloud : RsProcessingBlock
{
public enum OcclusionRemoval
{
Off = 0,
Heuristic = 1,
Exhaustive = 2
Off = 1,
On = 2
}

public Stream TextureStream = Stream.Color;
Expand Down

0 comments on commit 98565e2

Please sign in to comment.