Search results
Search results 1-20 of 976.
You could set the "jump to room" for each scene Source code 1 2 3 4 5 6 7 8 9 10 11 <scene name="scene_1" jumpto="scene_4"...></scene> <scene name="scene_2" jumpto="scene_4"...></scene> <scene name="scene_3" jumpto="scene_4"...></scene> <scene name="scene_4" jumpto="scene_6"...></scene> <scene name="scene_5" jumpto="scene_6"...></scene> ... <layer name="button-jump-to-next-room" .. onclick="loadscene(get(scene[get(xml.scene)].jumpto))" />
You should start with one layer and play with the different settings. https://360images.fr/barebone_layers/
Updated with offset="0.05" and it's better indeed ! Yes, spikes are due to the training data based on Matterport3D which has no depth ground truth on the top and bottom area, but I guess this could be solved easily.
Well, Krpano 1.16.7 is a bit old ;) Just update your Krpano player to latest version.
Would be great if we could have access to the Indoor level picker for indoor floorplan in Google Maps ;) Or maybe it's already possible with the gmAPI ?
A great, thx Klaus ! Any release date ?
The bar background color is applied to the layer skin_control_bar_bg. Set it to alpha 0 (skin_settings.design_bgalpha="0") and also it's shadow (skin_settings.design_bgshadow="0 4 10 0x000000 0.0"). Embed the layer skin_btn_prev and skin_btn_next in a layer to set a background color and shape. Embed all the other buttons in another layer for the same reason. And voila !
I've been playing with BiFuse to auto generate depthmap from 360 panos. Results are not so great, but hey it's full auto ! Maybe it could work alright only for 3D transitions for spaces without too much furnitures. https://360images.fr/barebone_auto_depthmap/
Hi, If I tween the width or height of a text hotspot to 0 I have this message in the browser console : WebGL: INVALID_VALUE: texImage2D: no canvas This appears in Chrome and Edge, not in Firefox. Barebone : https://360images.fr/barebone_tween0/
onautosized works for text layers with alpha="0" or visible="false" so we can get it's dimension even if not displayed, but this doesn't work for text hotspots (or I missed something). Would be great to be able to get text hotspots size even when not displayed ;) THX !
Same use, different maths ;) https://www.360images.fr/barebone_getdistance_3d_tuur/ By the way your example seems to be false, if you pan around then d value is changing.
Thanx Tuur, but the formula I mentioned works perfectly ;) https://www.360images.fr/barebone_getdistance_3d/ Source code 1 2 3 4 5 6 7 <action name="get_3d_distance" scope="local"> calc(x,caller.tx - view.tx); calc(y,caller.ty - view.ty); calc(z,caller.tz - view.tz); calc(d,sqrt(x*x + y*y + z*z)); ... </action>
Must be stupid, sorry ;) Trying to switch to Sublime because of this great markup feature, followed the instructions and selected the user theme, but I still have 3 colors and nothing specific to krpano ? What am I missing ? Thx ! Edit : sorry for my stupid question... - Go to View -> Syntax -> Krpano Markup Language, or click on language name in bottom right corner of editor window
var a = x2 - x1; var b = y2 - y1; var c = z2 - z1; var d= Math.sqrt(a * a + b * b + c * c); should work to get distance between 2 3D hotspots.
Hi , Is there a similar getlooktodistance action for 3D positioned hotspots (tx,ty,tz) ? Thanx !
Thanx for the info, gonna try that ASAP !
Quoted from "Tuur" Why not put it in feature requests? Because I don't think this can be done by only one guy, even if Klaus is a genius ;) An interesting article on Cortex AI : https://www.spar3d.com/news/hardware/mat…omputer-vision/
Searching solutions to build depthmap virtual tours I tried Everpano (still Beta and no updates) Blender (Much better but really time consuming when trying spaces with furnitures) and saw solution like Leica BLK360 (too expensive)... I never liked Matterport business model, but gave a try with a simple Insta360 OneX camera and a free account and must say I've been quite impressed with their Cortex AI feature to automatically build a 3D space from a few 360 panorama : https://matterport.com/ja/no...
https://krpano.com/forum/wbb/index.php?p…rlang#post44674