Eric Wiener
Eric Wiener
Unfortunately, that just rotates the XYZ coordinates but doesn't display the points correctly. The file is XYZIR point clouds (XYZ, intensity, ring # from the Velodyne). Is this supported or...
Thank you! Here's the badly displayed pcd file. I uploaded it as a zip of the single file since GitHub doesn't support uploading .pcd files. [1561043068.656119000.pcd.zip](https://github.com/Hitachi-Automotive-And-Industry-Lab/semantic-segmentation-editor/files/5455388/1561043068.656119000.pcd.zip)
Hi @dmandrioli. Did you have a chance to look at the PCD file? In case it helps, here is the header of a file that correctly displayed for me: ```...
@dmandrioli got it - no worries. I really appreciate any help. I agree about it looking like the 3d coordinate system. I'm going to try to see if converting the...
@michaelkoelewijn thanks for making a fork. Your version works great.
To remove a listener use (from the README): ``` Proximity.removeListener(this._proximityListener); ``` You could also do ``` NativeModules.RNProximity.proximityEnabled(false); ```
Pre-iOS 14, the way to check clipboard content was to look at the data in it, so this is why you get the notification you pasted from the clipboard. The...
> > Pre-iOS 14, the way to check clipboard content was to look at the data in it, so this is why you get the notification you pasted from the...
React Native 0.62 removed propTypes. You need to remove the line: ``` itemTextStyle: Text.propTypes.style, ```
Try removing any occurrence of `Text.propTypes.style`. I was using this library in an old component that wasn't in production anymore, so I just removed the library.