-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can Not Display #1
Comments
Hi! Seems like the window might still be opened on the second monitor by default so if you just have one monitor, it won't show up. As soon as you ctrl+s save progressive_pointcloud.js, it should be moved to the main monitor, though. You might then have to select it again from the taskbar to make sure it's also on top. These are the relevant lines in progressive_pointcloud.js that move the window to the main monitor:
As for the "too slow" messages, did you already load a point cloud or does it display that message even without any point cloud loaded? What GPU do you have? |
The first couple of "too slow" during start up are okay, but if that happens every frame there is likely something wrong somewhere. Can't really debug this over github. I can, however, take a look at your las file and see if it works for me. The whole application is a prototype that was implemented only with our own data in mind, so the loader may not be capable of loading any kind of las file. If you can send me the file or a link to mschuetz@potree.org I will take a look at it. Might take a couple of days, though. A potential issue that comes to mind are las files that store coordinates in non-euclidean coordinates, e.g. in lat/long/elevation. Coordinates must be XYZ. Edit: Did you also press "ctrl+s" with "progressive_pointcloud.js" open, and did the console show that it's doing some work? You'll have to press ctrl+s at runtime, because progressive_pointcloud.js is not executed automatically. Only start.js is. |
We're currently not checking whether 1 or 2 bytes of the red, green and blue channels are used. If everything is black, it might be because Skye assumes colors are stored in 2 bytes in the LAS, and it then divides color values by 256 to reduce them to one byte. If colors are only stored in 1 byte, they'll all end up being 0 after that divsion. You can try to remove the devision by 256 here: |
@m-schuetz that worked for this case, thanks! I also can't load .bin files generated with the las2bin.js tool, but that's not important right now. Thank you for your help! |
I'm a novice and interesting for your excellent work.But there are some puzzles when I tried to run the code following the introduction.First,I compiled the Skye.sln and there are some errors,which had been solved since I change "std::experimental::filesystem" to "std::filesystem"(I think that's because my VS version is latest).Then I opened the workspace with VSCode and pressed 'ctrl+shift+b'.Though it's had been building,nothing displayed except for some warnings on terminal as shots below:
There was a icon on bottom but no windows display:
Then I change the load in 'progressive_pointcloud.js' as 'To do things',but the problems still existed.
I wonder did I miss some points or do something wrong?
Appreciate for your reply.
The text was updated successfully, but these errors were encountered: