-
Notifications
You must be signed in to change notification settings - Fork 11
Description
Hello Support Team,
When I export an image using my code, the resulting online-view image appears slightly tilted. However, when I export the same image using the official Insta360 app (from the Play Store), the image looks perfectly straight.
My code for exporting the image:
ExportImageParamsBuilder builder = new ExportImageParamsBuilder()
.setExportMode(ExportUtils.ExportMode.PANORAMA)
.setStabType(StabType.INS_STAB_FULL_DIRECTIONAL)
.setOffsetType(OffsetType.ORIGINAL)
.setPitch(0f)
.setYaw(0f)
.setTargetPath(targetPath);
I also tested using different values for StabType and OffsetType, but the output is still tilted.
I would like to understand the root cause:
Why is the exported image tilted, even though the same file exported from the Insta360 app is straight?
The only scenario where the image exports correctly is when the Insta360 camera is physically placed perfectly upright during capture. Otherwise, the exported image ends up tilted.
I have already spent a week trying to resolve this issue.
Thanks.