Closed josch closed 7 years ago
there seems to be some incompatibility with your graphics card on your computer (view-points is used for 3D visualisation only)
1) which linux version are you using? (run: cat /proc/version)
1) which Qt version do you use? (run: run qmake --version)
2) does qt3d demo work on your machine? (look for qt3d/bin/teapot and run it; you should see a 3D model of a teapot)
3) if you can see teapot in the previous example; try to run the following command; you should see 8 large points arranged as vertices of a cube (from what you report most likely it won't work):
( echo 0,0,0 ; echo 0,0,1 ; echo 0,1,0 ; echo 0,1,1 ; echo 1,0,0 ; echo 1,0,1 ; echo 1,1,0 ; echo 1,1,1 ) | view-points --weight=10
tell me what you see
I couldn't find the teapot demo so instead I made a screenshot of the wireframe and basicshapes-cpp examples from the examples directory (source code here):
When I try your view-points invocation then I see nothing but blackness.
view-points does not support Qt5.7 yet (work in progress due to a massive breaking change in Qt).
If you are keen to have view-points working, you would need to install Qt4 (your should be able to have multiple Qt installations). Then you would need to get and build from source Qt3D. Then, rebuild snark.
The detailed step-by-step instructions (it's not that hard) are here: https://github.com/acfr/snark/wiki/Snark-for-dummies,-on-ubuntu-debian#Installation
Ooooh! Maybe there should be a cmake check or something about that? If view-points does not support Qt5.7, then I'd expect it not to build if the onl Qt version on the system is 5.7.
Thanks!
I know; we have been working on it; it is such a massive change in qt that we have been a bit overwhelmed by it. If you still keen, please try to build with Qt4 and Qt3d
Alright, this issue can be closed then from my side unless you want to keep it open to track the Qt5.7 status with view-points.
Incidentally, if your ultimate goal is to use the change detection algorithm, you can also easily do it without viewpoints and use an alternate viewer of your choice... It'd be a shame though because viewpoints is extremely useful for streams.
On 25 Jan 2017, at 6:25 pm, josch notifications@github.com<mailto:notifications@github.com> wrote:
Alright, this issue can be closed then from my side unless you want to keep it open to track the Qt5.7 status with view-points.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHubhttps://github.com/acfr/snark/issues/118#issuecomment-275037530, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ACmwoAkZuyTfwwCLgWIlVGE8eK74Ev9Gks5rVvjigaJpZM4LsZ4f.
Qt5.* support is a big fat item on our todo list; we won't forget, but it will take a while
Hi,
I tred to run the examples from http://www.acfr.usyd.edu.au/papers/icra13-underwood-changedetection.shtml but I only get a window that is completely black apart from the text "centre of rotation: 0 0 0" in the lower right corner. On the terminal I see:
Maybe the terminal output hints to the reason why I don't see anything with
view-points
?Or maybe I'm seeing something but it's just black points in front of a black background? ;)
Or maybe my invocation is wrong. I already had to figure out that I have to add
--no-stdin
to theview-points
invocation which is not part of the call made bydetect-change.sh
(can that script be updated to work with the latest view-points?).