类 Animation
- java.lang.Object
-
- org.opencv.imgcodecs.Animation
-
public class Animation extends java.lang.Object
表示包含多个帧的动画。Animation
结构体旨在存储和管理动画序列的数据,例如来自动画格式(例如 GIF、AVIF、APNG、WebP)的动画序列。它支持循环、背景颜色设置、帧计时和帧存储。
-
-
字段摘要
字段 修饰符和类型 字段 描述 protected long
nativeObj
-
构造器摘要
构造器 修饰符 构造器 描述 protected
Animation(long addr)
-
方法摘要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 描述 static Animation
__fromPtr__(long addr)
protected void
finalize()
Scalar
get_bgcolor()
MatOfInt
get_durations()
java.util.List<Mat>
get_frames()
int
get_loop_count()
long
getNativeObjAddr()
void
set_bgcolor(Scalar bgcolor)
void
set_durations(MatOfInt durations)
void
set_frames(java.util.List<Mat> frames)
void
set_loop_count(int loop_count)
-
-
-
方法详情
-
getNativeObjAddr
public long getNativeObjAddr()
-
__fromPtr__
public static Animation __fromPtr__(long addr)
-
get_loop_count
public int get_loop_count()
-
set_loop_count
public void set_loop_count(int loop_count)
-
get_bgcolor
public Scalar get_bgcolor()
-
set_bgcolor
public void set_bgcolor(Scalar bgcolor)
-
get_durations
public MatOfInt get_durations()
-
set_durations
public void set_durations(MatOfInt durations)
-
get_frames
public java.util.List<Mat> get_frames()
-
set_frames
public void set_frames(java.util.List<Mat> frames)
-
finalize
protected void finalize() throws java.lang.Throwable
- 覆盖
finalize
在类java.lang.Object
中- 抛出
java.lang.Throwable
-
-