oh brilliant,
Didn't notice that krpanomaps was open source, thanks !
Posts by jeromebg
-
-
ok course, that's what I tried but it didn't work, a typo...
When using pantospot and tweening zoom at the same time then tweening works only when pantospot is finished so it's a bit "brutal".
Could we have a zoomtospot(name,zoom) action ? -
Hi,
With Krpanomap is it possible to tween the zoom level ?
I see we can setzoom, zoomin but only one level but didn't found a way to tween the zoom level to a specific value ?
Thank you -
If I set capture='false' on the hotspot, the ondoubleclick event is triggered when I click on the hotspot. However, if I set capture='true', it is not triggered."
Already reported here :
ThreadTrigger ondoubleclick event
When layer is clicked, if capture is set to false, even a single click will be considered a double-click. I think it's logical not to trigger the ondoubleclick event.zhitongjiaNovember 25, 2024 at 1:37 PM -
The hotspot design you are showing is not possible with callout plugin, krpano or panotour version.
-
HI, maybe I didn't understood how it should work, if I set the bgbordermode to inside then the edge of the hotspot doesn't seems to be center ?
Barebone -
Thanks for your reply, thought I misunderstood the doc as it was not working in my tests, happy to see it's a typo.
Must say this new reactive API is so convenient, thank you for that ! -
Hi,
Not sure to fully understand the relink feature.
From what I understand if a attribute use link in a style then it will only work if the linked var is defined in the style, not in the hotspot or layer that has this style (not sure to be clear...)
Thought that relink was for that but it doesn't work.
Let's say I have a hotspot with a width defined and I want to link the height in the style linked to it's width
<hotspot style="hs_style" width="200"/>
<style name="hs_style" height="link:width:width *2"/>
it there a way to make it work ?
Klaus could you post some example with relink ?
Many thanks -
I sent the same images to luma AI to see how good it is.
It's not bad, free and just grag n drop, but result is not as good as PostShot one. -
This is not implemented.
I will soon rewrite this plugin from scratch with the new reactive API. -
3000 in the high Res
300 in the low res
-
Convert your .ply file to .splat, it will reduce the file by 9
-
I tried many workflows, 360 videos, 360 photos, phone videos...
The training models don't support well distorted images, so exported rectilinear views from the 360's.
The best result I had was shooting with my Nikon D850 and a 14mm lens.
I shot all around the kitchen at 1m from the walls and opposite, also in the diagonal.
Also up and down for each location, but didn't shot at different heights because I just wanted a walkthrough view, but can't set the viewer to always keep the same elevation for now...
The
DGS software used is PostShot and the player/editor is Story Splat.
Will make more test in different environments in the next weeks, if you need some data to test just ask ;) -
HI,
I've been playing with Gaussian Splatting the past 2 weeks and the results, even if far from perfect is really promissing.
The player I used is based on BabylonJS and the guy who coded it added a nice web editor to add waypoints, hotspots, colliders...
All this is still early Beta but it quite exciting.
Can't wait that Klaus adds 3DGS support to our favorite player !
High res : https://www.360images.fr/gsplats/kitchen_demo.html
Low res (for bad connection and old GPU) : https://www.360images.fr/gsplats/kitchen_demo_low_res.html -
Thanks Klaus,
works perfect now : https://www.360images.fr/callout/ramirox3 you can download the update from the plugin page : https://krpano.com/plugins/userplugins/callouthotspots/#top
-
Thanks Klaus , works great but I need to resize the callouts when language has changed, is there a onlanguagechanged event ?
-
Yes it's not an ideal solution, callouts are rebuilt.
This code will display the callouts with the updated translation.
But for a reason I don't get yet if the first hotspot of the scene is a callout hotspot then this one will only be displayed after moving the pano ... if it's the case just add a empty hotspot : <hotspot/> -
Hi,
I could update the plugin with the new linking system, but then it won't work with previous versions of krpano.
You can use the translate system but you'll have to recall the onloaded event of the callout hotspots.Code
Display More<hotspot name="hs1" ath="0" atv="0" style="callout" title="link:translate('hs1_title')" content="link:translate('hs1_content')"/> <layer name="french" style="language_but" html="FR" x="20" onclick="set(language,fr);update_callouts()"/> <layer name="english" style="language_but" html="EN" x="60" onclick="set(language,en);update_callouts()"/> <action name="update_callouts"> for(set(i,0), i LT hotspot.count, inc(i), if(hotspot[get(i)].style == 'callout', callwith(hotspot[get(i)],onloaded)) ); </action> <style name="language_but" type="text" padding="10" bgroundedge="50" keep="true" align="bottomright" y="20"/> <languages name="en" displayname="English" hs1_content="The default style can be customized in the default settings." hs1_title="English title" /> <languages name="fr" displayname="Français" hs1_content="Le style par défault peut être défini dans les pamarmètres par défaut." hs1_title="Titre français" />
-
Yes saw that, great !
But what is wrong with my code ? -