12,047 questions
-1
votes
0
answers
45
views
Can't rotate a video file with metadata in Flutter [closed]
I need to be able to rotate a video in Flutter without re-encoding it.
In Flutter I’m using the ffmpeg_kit_flutter_new 4.1.0 plugin, and for the rotation I’m trying the following command:
ffmpeg -i ...
0
votes
0
answers
27
views
Why am I seeing chaotic jumps when extracting ZYX Euler angles near ±90° pitch?
I’m working on a real-time orientation extraction system (ZYX Euler angles) from my omega7 device, and I’m trying to understand why yaw/roll behave chaotically when pitch approaches ±90°, or when I ...
3
votes
1
answer
2k
views
Is it possible to rotate whole echarts Instance in Apache ECharts?
I'm new to echarts so please forgive me if this is stupid newbie request. I'm trying to rotate whole chart just like in this example of Vega Edge Bundling Example. On the right corner there is a tool ...
-2
votes
2
answers
88
views
Image rotation causing misplacement
I've stripped this issue down to an image on a ZStack. The image should be in the lower left corner of the ZStack. When the .rotation for the image is modified, the location changes as if the ...
0
votes
1
answer
49
views
Rotate Pelvis to face the camera UE5.6
I am in the process of making an active ragdoll character in ue5.6. I have gotten the ragdoll walking, grabbing, hanging, jumping, and all sorts of fun stuff. But I am currently stuck on how to make ...
1
vote
2
answers
3k
views
How do you rotate a bitmap an arbitrary number of degrees?
I have a bitmap:
Bitmap UnitImageBMP
And I need to rotate it an arbitrary number of degrees. How do I do this? The RotateFlip method will only rotate in increments of 90 degrees.
1
vote
1
answer
862
views
How to get the text rotation angle with PDFBOX
I have a job to remove a watermark in a PDF. I find some text watermark show in PDF with some angle. So I can judge whether the text is a possible watermark or not by the angle of text. Now I have a ...
6
votes
2
answers
9k
views
css text rotate - text only , not parent element
on this page: https://www.bcidaho.com/mammography/
if you click "find a screening center" a table of information comes up...
how can i rotate the text in the last 5 cells?
obviously cross browser ...
1
vote
2
answers
6k
views
Split quaternion into axis rotations
I have a quaternion representing the orientantion of an object (yellow box and sphere). I would like to know if it is possible to split that quaternion into other quaternions that give us the rotation ...
0
votes
1
answer
37
views
How to get face/head direction/rotation from BVH files - Axis Studio?
I'm trying to get the direction/rotation of the head or the direction/rotation of the face from the neck.
I'm working whit a BHV file exported from Axis Studio:
Body: Axis Studio
Euler Order: XYZ
...
1
vote
0
answers
63
views
Euler angles continuity ZYX (Yaw Pitch Roll) when pitch crosses ±90
I’m using a Force Dimension Omega.7. From its 3×3 rotation matrix
𝑅
, I extract ZYX Euler angles (Yaw–Pitch–Roll) as:
double yaw= std::atan2(R\[1\]\[0\], R\[0\]\[0\]); // Z
double pitch = std::...
1
vote
0
answers
289
views
Drag, resize and rotate with mouse
I need to be able to resize, rotate, and move an image. I have managed to find the code below that works but I need to either have a rotation point on the image where I can use it to rotate it with ...
605
votes
16
answers
476k
views
Rotating videos with FFmpeg [closed]
I have been trying to figure out how to rotate videos with FFmpeg. I am working with iPhone videos taken in portrait mode. I know how to determine the current degrees of rotation using MediaInfo (...
0
votes
0
answers
65
views
Gyro stabilization tilts sideways on slanted ramps (Unreal C++ custom movement component)
I’m building a custom movement system for my project (kind of a physics-driven movement framework).
Everything works great, except for one annoying issue with GYRO STABILIZATION.
Video showcase of the ...
0
votes
2
answers
98
views
Problem with offset when rotating text on an image (Pillow)
main.py
from PIL import Image, ImageDraw, ImageFont
base_img = Image.new("RGBA", (100, 100), (0, 255, 0))
txt = 'Sample <del color=red>text<del>'
rotate = 120
font = ImageFont....