Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 1.46 KB

texture-removed-grayscale-image-unit-v3.0.20.md

File metadata and controls

53 lines (43 loc) · 1.46 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex
default-layout
DSTextureRemovedGrayscaleImageUnit - Dynamsoft Core Module iOS Edition API Reference
The class DSTextureRemovedGrayscaleImageUnit of Dynamsoft Core Module represents a unit that contains a texture-removed grayscale image. It is derived from the DSIntermediateResultUnit class.
texture-removed grayscale image, unit, objective-c, swift
true
true
true

DSTextureRemovedGrayscaleImageUnit

The DSTextureRemovedGrayscaleImageUnit class represents a unit that contains a texture-removed grayscale image. It is derived from the DSIntermediateResultUnit class.

Definition

Assembly: DynamsoftCore.framework

>- Objective-C >- Swift > >1. ```objc @interface DSTextureRemovedGrayscaleImageUnit: DSIntermediateResultUnit ``` 2. ```swift class TextureRemovedGrayscaleImageUnit : IntermediateResultUnit ```

Attributes

Attributes Type Description
imageData DSImageData * A DSImageData object as the image data of the texture-removed grayscale image.

imageData

A DSImageData object as the image data of the texture-removed grayscale image.

>- Objective-C >- Swift > >1. ```objc @property (nonatomic, strong, nullable) DSImageData *imageData; ``` 2. ```swift var imageData: ImageData? { get set } ```