类 TSRPass

java.lang.Object
com.tencent.mps.tie.api.TSRPass

public class TSRPass extends Object
TSRPass is a class responsible for performing super-resolution rendering on input images. The class creates a TSRPass object and provides methods for initialization, rendering, and releasing resources.

Note:

  • All methods of TSRPass must be called within the same GLThread.
  • The render method should not be called before the init method, and it should not be called after the deInit method.

Usage:

  1. Create a TSRPass object using the constructor.
  2. (In glThread) Initialize the TSRPass object by calling the init(int, int, float) method.
  3. (In glThread) Perform super-resolution rendering on an input opengl texture by calling the render(int) method.
  4. Release resources when the TSRPass object is no longer needed by calling the deInit() method.

Example:

 // Create a TSRPass object using the constructor.
 TSRPass tsrPass = new TSRPass();

 // The code below must be executed in glThread.
 //----------------------GL Thread---------------------//
 // Init TSRPass
 tsrPass.init(inputWidth, inputHeight, srRatio);

 // If the type of inputTexture is TextureOES, you must transform it to Texture2D.
 int outputTextureId = tsrPass.render(inputTextureId);

 // Release resources when the TSRPass object is no longer needed.
 tsrPass.deInit();
 //----------------------GL Thread---------------------//

 
  • 嵌套类概要

    嵌套类
    修饰符和类型
    说明
    static enum 
    The TSRAlgorithmType enum value representing the algorithm running mode to be used.
  • 构造器概要

    构造器
    构造器
    说明
    Creates a TSRPass object for super-resolution.
  • 方法概要

    修饰符和类型
    方法
    说明
    void
    Releases the resources.
    boolean
    init(int inputWidth, int inputHeight, float srRatio)
    Init TSRPass object for super-resolution.
    int
    render(int textureId)
    Performs the super-resolution rendering operation on the input image.
    int
    render(int textureId, float[] transformMatrix)
    Performs the super-resolution rendering operation on the input image with a specified transform matrix.
    void
    setParameters(float brightness, float saturation, float contrast, float sharpness)
    Set the parameters of the rendering operator.

    从类继承的方法 java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 构造器详细资料

    • TSRPass

      public TSRPass(TSRPass.TSRAlgorithmType algorithmType)
      Creates a TSRPass object for super-resolution.

      This method must be executed after TSRSdk.init(long, int, TSRSdk.TSRSdkLicenseVerifyResultCallback, TSRLogger), TSRPass.TSRAlgorithmType

      参数:
      algorithmType - The TSRAlgorithmType enum value representing the algorithm running mode to be used. It can be either STANDARD (fast mode) or PROFESSIONAL (quality mode). STANDARD mode prioritizes better performance in terms of speed, possibly sacrificing some result accuracy. PROFESSIONAL mode prioritizes result accuracy, even if the running speed is slower.
  • 方法详细资料

    • init

      public boolean init(int inputWidth, int inputHeight, float srRatio)
      Init TSRPass object for super-resolution. This method must be called in the GLThread.
      参数:
      inputWidth - The width of the input image
      inputHeight - The height of the input image
      srRatio - The magnification factor for super-resolution.
      返回:
      true if the initialization is successful, false if the opengl es version is lower than 3.1
    • setParameters

      public void setParameters(float brightness, float saturation, float contrast, float sharpness)
      Set the parameters of the rendering operator. It needs to take effect after init(int, int, float) is called.
      参数:
      brightness - The brightness level to apply. Valid values are between 0 and 100, with a default value of 50.
      saturation - The saturation level to apply. Valid values are between 0 and 100, with a default value of 50.
      contrast - The contrast level to apply. Valid values are between 0 and 100, with a default value of 50.
      sharpness - The sharpness factor to apply Valid values are between 0 and 100, with a default value of 0.
    • render

      public int render(int textureId)
      Performs the super-resolution rendering operation on the input image. This method must be performed in the GLThread.
      This method applies the super-resolution rendering process to the input image, improving its quality. The processed image is rendered onto a texture within the TSRPass object. And the return is the texture's id.
      NOTE:
      • The type of the texture corresponding to the textureId you pass in must be texture2D.
      • The format of the input OpenGL texture must be GL_RGBA.
      • The format of the output textureId is also GL_RGBA.

      参数:
      textureId - The OpenGL textureId of the input image that needs to be processed for super-resolution. The corresponding texture is a texture2D texture with GL_RGBA format.
      返回:
      The textureId of the texture2D after super-resolution rendering, which is stored inside the TSRPass object. The format of the output texture is GL_RGBA. The size of the output texture is (inputWidth * srRatio, inputHeight * srRatio).
    • render

      public int render(int textureId, float[] transformMatrix)
      Performs the super-resolution rendering operation on the input image with a specified transform matrix. This method must be performed in the GLThread.

      This method applies the super-resolution rendering process to the input image, improving its quality, and uses the given transform matrix to manipulate the image during the rendering process. The processed image is rendered onto a texture within the TSRPass object. And the return is the texture's id.

      NOTE:

      • The type of the texture corresponding to the textureId you pass in must be texture2D.
      • The format of the input OpenGL texture must be GL_RGBA.
      • The format of the output textureId is also GL_RGBA.

      参数:
      textureId - The OpenGL textureId of the input image that needs to be processed for super-resolution. The corresponding texture is a texture2D texture with GL_RGBA format.
      transformMatrix - A float array representing the transform matrix to be applied to the input image during the rendering process. The matrix should be in column-major order and of size 16.
      返回:
      The textureId of the texture2D after super-resolution rendering and applying the transform matrix, which is stored inside the TSRPass object. The format of the output texture is GL_RGBA. The size of the output texture is (inputWidth * srRatio, inputHeight * srRatio).
    • deInit

      public void deInit()
      Releases the resources.
      This method should be called when the TSRPass object is no longer needed, to free up the memory and other resources.